mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-20 15:52:24 +02:00
94 lines
3.6 KiB
PHP
94 lines
3.6 KiB
PHP
<?php
|
||
// Copyright (C) 2010-2023 Combodo SARL
|
||
//
|
||
// This file is part of iTop.
|
||
//
|
||
// iTop is free software; you can redistribute it and/or modify
|
||
// it under the terms of the GNU Affero General Public License as published by
|
||
// the Free Software Foundation, either version 3 of the License, or
|
||
// (at your option) any later version.
|
||
//
|
||
// iTop is distributed in the hope that it will be useful,
|
||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
// GNU Affero General Public License for more details.
|
||
//
|
||
// You should have received a copy of the GNU Affero General Public License
|
||
// along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||
/**
|
||
* Localized data
|
||
*
|
||
* @author Izzet Sirin <izzet.sirin@htr.com.tr>
|
||
* @copyright Copyright (C) 2010-2023 Combodo SARL
|
||
* @license http://opensource.org/licenses/AGPL-3.0
|
||
*/
|
||
// Dictionnay conventions
|
||
// Class:<class_name>
|
||
// Class:<class_name>+
|
||
// Class:<class_name>/Attribute:<attribute_code>
|
||
// Class:<class_name>/Attribute:<attribute_code>+
|
||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||
//////////////////////////////////////////////////////////////////////
|
||
// Classes in 'bizmodel'
|
||
//////////////////////////////////////////////////////////////////////
|
||
//
|
||
// Dictionnay conventions
|
||
// Class:<class_name>
|
||
// Class:<class_name>+
|
||
// Class:<class_name>/Attribute:<attribute_code>
|
||
// Class:<class_name>/Attribute:<attribute_code>+
|
||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||
//
|
||
// Class: FAQ
|
||
//
|
||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||
'Class:FAQ' => 'SSS',
|
||
'Class:FAQ+' => 'Sıkça Sorulan Sorular',
|
||
'Class:FAQ/Attribute:title' => 'Başlık',
|
||
'Class:FAQ/Attribute:title+' => '~~',
|
||
'Class:FAQ/Attribute:summary' => 'Özet',
|
||
'Class:FAQ/Attribute:summary+' => '~~',
|
||
'Class:FAQ/Attribute:description' => 'Açıklama',
|
||
'Class:FAQ/Attribute:description+' => '~~',
|
||
'Class:FAQ/Attribute:category_id' => 'Kategori',
|
||
'Class:FAQ/Attribute:category_id+' => '~~',
|
||
'Class:FAQ/Attribute:category_name' => 'Kategori Adı',
|
||
'Class:FAQ/Attribute:category_name+' => '~~',
|
||
'Class:FAQ/Attribute:error_code' => 'Hata Kodu',
|
||
'Class:FAQ/Attribute:error_code+' => '~~',
|
||
'Class:FAQ/Attribute:key_words' => 'Anahtar Kelimeler',
|
||
'Class:FAQ/Attribute:key_words+' => '~~',
|
||
'Class:FAQ/Attribute:domains' => 'Domains~~',
|
||
));
|
||
|
||
//
|
||
// Class: FAQCategory
|
||
//
|
||
|
||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||
'Class:FAQCategory' => 'SSS Kategori',
|
||
'Class:FAQCategory+' => 'SSS için kategori',
|
||
'Class:FAQCategory/Attribute:name' => 'İsim',
|
||
'Class:FAQCategory/Attribute:name+' => '~~',
|
||
'Class:FAQCategory/Attribute:faq_list' => 'SSS',
|
||
'Class:FAQCategory/Attribute:faq_list+' => 'Bu kategoriyle ilgili tüm sık sorulan sorular',
|
||
));
|
||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||
'Menu:ProblemManagement' => 'Problem yönetimi',
|
||
'Menu:ProblemManagement+' => 'Problem yönetimi',
|
||
'Menu:Problem:Shortcuts' => 'Kısayollar',
|
||
'Menu:FAQCategory' => 'SSS kategorileri',
|
||
'Menu:FAQCategory+' => 'Tüm SSS kategorileri',
|
||
'Menu:FAQ' => 'SSS',
|
||
'Menu:FAQ+' => 'Tüm SSS',
|
||
'Brick:Portal:FAQ:Menu' => 'SSS',
|
||
'Brick:Portal:FAQ:Title' => 'Sıkça Sorulan Sorular',
|
||
'Brick:Portal:FAQ:Title+' => '<p>In a hurry?</p><p>Check out the list of most common questions and (maybe) find the expected answer right away.</p>~~',
|
||
));
|