diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 14:58:52 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 14:58:52 -0300 |
commit | 323fdcc59e467e6437aad244c475ed0184c7a020 (patch) | |
tree | 0dc86b7aeb394ee6d1c3c9106362dea16c982cde /mod/translation_editor/languages/en.php | |
parent | 8d66daa258a58b65c3658b38e99382732c88e017 (diff) | |
parent | 2d9b20157957a55bd83875775085ed31c9062577 (diff) | |
download | elgg-323fdcc59e467e6437aad244c475ed0184c7a020.tar.gz elgg-323fdcc59e467e6437aad244c475ed0184c7a020.tar.bz2 |
Merge commit '2d9b20157957a55bd83875775085ed31c9062577' as 'mod/translation_editor'
Diffstat (limited to 'mod/translation_editor/languages/en.php')
-rw-r--r-- | mod/translation_editor/languages/en.php | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/mod/translation_editor/languages/en.php b/mod/translation_editor/languages/en.php new file mode 100644 index 000000000..8b358411b --- /dev/null +++ b/mod/translation_editor/languages/en.php @@ -0,0 +1,83 @@ +<?php + + $english = array( + //'translation_editor' => "Translation Editor", + + // global + 'translation_editor:language' => "Language", + 'translation_editor:disabled' => "Disable", + + // menu + 'translation_editor:menu:title' => "Translation Editor", + + // views + // language selector + 'translation_editor:language_selector:title' => "Select the language you wish to edit", + 'translation_editor:language_selector:add_language' => "Add a new language", + 'translation_editor:language_selector:remove_language:confirm' => "Are you sure you wish to remove this language? You can always add it again!", + 'translation_editor:language_selector:site_language' => "Site language", + + // plugins list + 'translation_editor:plugin_list:title' => "Select a component to translate", + 'translation_editor:plugin_list:plugin' => "Plugin name", + 'translation_editor:plugin_list:total' => "Total keys", + 'translation_editor:plugin_list:exists' => "Translated", + 'translation_editor:plugin_list:custom' => "Custom", + 'translation_editor:plugin_list:percentage' => "Percentage complete", + + 'translation_editor:plugin_list:merge' => "Merge to PHP language file", + 'translation_editor:plugin_list:delete' => "Delete translation", + 'translation_editor:plugin_list:delete:confirm' => "Are you sure you wish to delete the translation? This cannot be undone!", + + // search + 'translation_editor:search' => "Search results", + 'translation_editor:forms:search:default' => "Find a translation", + 'translation_editor:search_results:no_results' => "No translation found", + + // custom key + 'translation_editor:custom_keys:title' => "Add a custom language key", + 'translation_editor:custom_keys:key' => "Key", + 'translation_editor:custom_keys:translation' => "Translation", + 'translation_editor:custom_keys:translation_info' => "New keys will always be created as an English translation. After creation you can translate it to other languages.", + + 'translation_editor:plugin_edit:title' => "Edit the translations for plugin:", + 'translation_editor:plugin_edit:show' => "show", + 'translation_editor:plugin_edit:show:missing' => "missing", + 'translation_editor:plugin_edit:show:equal' => "equal", + 'translation_editor:plugin_edit:show:all' => "all", + 'translation_editor:plugin_edit:show:custom' => "custom", + 'translation_editor:plugin_edit:show:params' => "missing params", + + // actions + 'translation_editor:action:translate:error:input' => "Incorrect input provided to add a translation", + 'translation_editor:action:translate:no_changed_values' => "No translations needed to be added", + 'translation_editor:action:translate:error:write' => "Error while writing the translations", + 'translation_editor:action:translate:error:not_authorized' => "You are not authorized to translate", + 'translation_editor:action:translate:success' => "Translations saved successfully", + + 'translation_editor:action:make_translation_editor' => "Make Translator", + 'translation_editor:action:make_translation_editor:success' => "Succesfully made a translator", + 'translation_editor:action:make_translation_editor:error' => "Error while making the user a translator", + 'translation_editor:action:unmake_translation_editor' => "UnMake Translator", + 'translation_editor:action:unmake_translation_editor:success' => "Succesfully removed translator", + 'translation_editor:action:unmake_translation_editor:error' => "Error while removing the translator role", + + 'translation_editor:action:delete:error:input' => "Incorrect input to delete translation", + 'translation_editor:action:delete:error:delete' => "Error while deleting translation", + 'translation_editor:action:delete:success' => "Translation successfully deleted", + + 'translation_editor:action:add_language:success' => "Language successfully added", + 'translation_editor:action:delete_language:success' => "Language successfully removed", + + 'translation_editor:action:add_custom_key:success' => "Custom key successfully added", + 'translation_editor:action:add_custom_key:file_error' => "Error when saving the custom key to the file", + 'translation_editor:action:add_custom_key:exists' => "Can't add this key as it already exists. Enter a unique key.", + 'translation_editor:action:add_custom_key:invalid_chars' => "Key contains invalid characters. Only a-z, 0-9, colon or underscore are allowed.", + 'translation_editor:action:add_custom_key:key_numeric' => "Key can not contain only numbers", + 'translation_editor:action:add_custom_key:missing_input' => "Invalid input. Please enter a key and a default (English) translation.", + + // settings + 'translation_editor:settings:everybody_translate' => "Everybody translate", + ); + + add_translation("en", $english); |