1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6
7// Note for translators about translation of text ending with punctuation
8//
9// The current list of concerned punctuation can be found in 'lib/init/tra.php'
10// On 2009-03-02, it is: (':', '!', ';', '.', ',', '?')
11// For clarity, we explain here only for colons: ':' but it is the same for the rest
12//
13// Short version: it is not a problem that string "Login:" has no translation. Only "Login" needs to be translated.
14//
15// Technical justification:
16// If a string ending with colon needs translating (like "{tr}Login:{/tr}")
17// then Tiki tries to translate 'Login' and ':' separately.
18// This allows to have only one translation for "{tr}Login{/tr}" and "{tr}Login:{/tr}"
19// and it still allows to translate ":" as " :" for languages that
20// need it (like French)
21// Note: the difference is invisible but " :" has an UTF-8 non-breaking-space, not a regular space, but the UTF-8 equivalent of the HTML &nbsp;.
22// This allows correctly displaying emails and JavaScript messages, not only web pages as would happen with &nbsp;.
23
24$lang = array(
25// "Bytecode Cache" => "Bytecode Cache",
26// "Using <strong>%0</strong>.These stats affect all PHP applications running on the server" => "Using <strong>%0</strong>.These stats affect all PHP applications running on the server",
27// "Configuration setting <em>xcache.admin.enable_auth</em> prevents from accessing statistics. This will also prevent the cache from being cleared when clearing template cache" => "Configuration setting <em>xcache.admin.enable_auth</em> prevents from accessing statistics. This will also prevent the cache from being cleared when clearing template cache",
28// "Used" => "Used",
29// "Available" => "Available",
30// "Memory" => "Memory",
31"Hit" => "ضربه(hit)",
32// "Miss" => "Miss",
33// "Cache Hits" => "Cache Hits",
34// "Few hits recorded. Statistics may not be representative" => "Few hits recorded. Statistics may not be representative",
35// "Low hit ratio. %0 may be misconfigured and not used" => "Low hit ratio. %0 may be misconfigured and not used",
36// "Bytecode cache is not used. Using a bytecode cache (APC, XCache) is highly recommended for production environments" => "Bytecode cache is not used. Using a bytecode cache (APC, XCache) is highly recommended for production environments",
37// "Errors" => "Errors",
38"Errors:" => "خطاها:",
39"Created" => "ايجاد شده در:",
40// "%0 enabled" => "%0 enabled",
41// "%0 disabled" => "%0 disabled",
42"Features" => "خصيصه‌ها",
43"Enable/disable Tiki features here, but configure them elsewhere" => "خصيصه‌هاي ويكي را در اين محل فعال/غيرفعال كنيد، اما آن‌ها را جاهاي ديگر پيكربندي نماييد.",
44"General" => "عمومي",
45"General preferences and settings" => "تنظيمات  عمومي",
46// "Login" => "Login",
47"User registration, login and authentication" => "ثبت‌نام كاربران، ورود و تصديق هويت",
48"Wiki" => "ويكي",
49"Wiki settings" => "تنظيمات ويكي",
50// "Help on \$admintitle Config" => "Help on \$admintitle Config",
51// "Congratulations!\n\nYour server can send emails.\n\n" => "Congratulations!\n\nYour server can send emails.\n\n",
52);
53