language/english/enano.json
author Dan
Sun, 28 Oct 2007 17:46:54 -0400
changeset 211 753dabeca1ee
parent 210 2b283402e4e4
child 212 30b857a6b811
permissions -rw-r--r--
Completely localized admin tree menu and page toolbar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
205
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
     1
/*
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
     2
 * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
     3
 * Version 1.1.1
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
     4
 * Copyright (C) 2006-2007 Dan Fuhry
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
     5
 *
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
     6
 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
     7
 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
     8
 *
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    10
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    11
 */
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    12
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    13
// This is the main language file for Enano. Feel free to use it as a base for your own translations.
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    14
// All text in this file before the first left curly brace and all text after the last curly brace will
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    15
// be trimmed. So you can use a limited amount of Javascript in this so that the language can be imported
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    16
// via Javascript as well.
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    17
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    18
var enano_lang = {
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    19
  categories: [
211
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    20
    'adm', 'meta', 'user', 'page', 'comment', 'onpage', 'etc'
205
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    21
  ],
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    22
  strings: {
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    23
    meta: {
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    24
      meta: 'Language category strings',
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    25
      user: 'Login, logout, and authentication',
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    26
      page: 'Page creation and control',
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    27
      comment: 'Comment display',
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    28
      onpage: 'On-page controls',
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    29
      plural: 's'
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    30
    },
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    31
    user: {
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    32
      login_message_short: 'Please enter your username and password to log in.',
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    33
      login_message_short_elev: 'Please re-enter your login details',
209
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    34
      login_body: 'Logging in enables you to use your preferences and access member information. If you don\'t have a username and password here, you can <a href="%reg_link%">create an account</a>.',
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    35
      login_body_elev: 'You are requesting that a sensitive operation be performed. To continue, please re-enter your password to confirm your identity.',
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    36
      login_field_username: 'Username',
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    37
      login_field_password: 'Password',
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    38
      login_forgotpass_blurb: 'Forgot your password? <a href="%forgotpass_link%">No problem.</a>',
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    39
      login_createaccount_blurb: 'Maybe you need to <a href="%reg_link%">create an account</a>.',
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    40
      login_field_captcha: 'Code in image',
210
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    41
      login_nocrypt_title: 'Important note regarding cryptography:',
209
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    42
      login_nocrypt_body: 'Some countries do not allow the import or use of cryptographic technology. If you live in one of the countries listed below, you should <a href="%nocrypt_link%">log in without using encryption</a>.',
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    43
      login_nocrypt_countrylist: 'This restriction applies to the following countries: Belarus, China, India, Israel, Kazakhstan, Mongolia, Pakistan, Russia, Saudi Arabia, Singapore, Tunisia, Venezuela, and Vietnam.',
210
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    44
      login_usecrypt_title: 'Encryption is currently turned off.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    45
      login_usecrypt_body: 'If you are not in one of the countries listed below, you should <a href="%usecrypt_link%">enable encryption</a> to secure the logon process.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    46
      login_usecrypt_countrylist: 'The cryptography restriction applies to the following countries: Belarus, China, India, Israel, Kazakhstan, Mongolia, Pakistan, Russia, Saudi Arabia, Singapore, Tunisia, Venezuela, and Vietnam.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    47
      login_success_title: 'Login successful',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    48
      login_success_body: 'You have successfully logged into the %config.site_name% site as "%username%". Redirecting to %redir_target%...',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    49
      
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    50
      login_ajax_fetching_key: 'Fetching an encryption key...',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    51
      login_ajax_prompt_title: 'Please enter your username and password to continue.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    52
      login_ajax_prompt_title_elev: 'You are requesting a sensitive operation.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    53
      login_ajax_prompt_body_elev: 'Please re-enter your login details, to verify your identity.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    54
      login_ajax_link_fullform: 'Trouble logging in? Try the <a href="%link_full_form%">full login form</a>.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    55
      login_ajax_link_forgotpass: 'Did you <a href="%forgotpass_link%">forget your password</a>?',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    56
      login_ajax_loggingin: 'Logging in...',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    57
      
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    58
      err_key_not_found: 'Enano couldn\'t look up the encryption key used to encrypt your password. This most often happens if a cache rotation occurred during your login attempt, or if you refreshed the login page.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    59
      err_key_wrong_length: 'The encryption key was the wrong length.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    60
      err_too_big_for_britches: 'You are trying to authenticate at a level that your user account does not permit.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    61
      err_invalid_credentials: 'You have entered an invalid username or password. Please enter your login details again.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    62
      err_invalid_credentials_lockout: ' You have used up %fails% out of %config.lockout_threshold% login attempts. After you have used up all %config.lockout_threshold% login attempts, you will be locked out from logging in for %config.lockout_duration% minutes.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    63
      err_invalid_credentials_lockout_captcha: ' You have used up %lockout_fails% out of %config.lockout_threshold% login attempts. After you have used up all %config.lockout_threshold% login attempts, you will have to enter a visual confirmation code while logging in, effective for %config.lockout_duration% minutes.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    64
      err_backend_fail: 'You entered the right credentials and everything was validated, but for some reason Enano couldn\'t register your session. This is an internal problem with the site and you are encouraged to contact site administration.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    65
      err_locked_out: 'You have used up all %config.lockout_threshold% allowed login attempts. Please wait %time_rem% minute%plural% before attempting to log in again%captcha_blurb%.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    66
      err_locked_out_captcha_blurb: ', or enter the visual confirmation code shown above in the appropriate box',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    67
      
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    68
      logout_success_title: 'Logged out',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    69
      logout_success_body: 'You have been successfully logged out, and all cookies have been cleared. You will now be transferred to the main page.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    70
      logout_confirm_title: 'Are you sure you want to log out?',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    71
      logout_confirm_body: 'If you log out, you will no longer be able to access your user preferences, your private messages, or certain areas of this site until you log in again.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    72
      logout_confirm_title_elev: 'Are you sure you want to de-authenticate?',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    73
      logout_confirm_body_elev: 'If you de-authenticate, you will no longer be able to use the administration panel until you re-authenticate again. You may do so at any time using the Administration button on the sidebar.',
211
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    74
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    75
      keepalive_info_title: 'About the keep-alive feature',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    76
      keepalive_info_body: 'Keep-alive is a new Enano feature that keeps your administrative session from timing out while you are using the administration panel. This feature can be useful if you are editing a large page or doing something in the administration interface that will take longer than 15 minutes.<br /><br />For security reasons, Enano mandates that high-privilege logins last only 15 minutes, with the time being reset each time a page is loaded (or, more specifically, each time the session API is started). The consequence of this is that if you are performing an action in the administration panel that takes more than 15 minutes, your session may be terminated. The keep-alive feature attempts to relieve this by sending a "ping" to the server every 10 minutes.<br /><br />Please note that keep-alive state is determined by a cookie. Thus, if you log out and then back in as a different administrator, keep-alive will use the same setting that was used when you were logged in as the first administrative user. In the same way, if you log into the administration panel under your account from another computer, keep-alive will be set to "off".<br /><br /><b>For more information:</b><br /><a href="http://docs.enanocms.org/Help:Appendix_B" onclick="window.open(this.href); return false;">Overview of Enano\'s security model</a>',
205
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    77
    },
211
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    78
    onpage: {
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    79
      lbl_pagetools: 'Page tools',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    80
      lbl_page_article: 'article',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    81
      lbl_page_admin: 'administration page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    82
      lbl_page_system: 'system message',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    83
      lbl_page_file: 'uploaded file',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    84
      lbl_page_help: 'documentation page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    85
      lbl_page_user: 'user page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    86
      lbl_page_special: 'special page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    87
      lbl_page_template: 'template',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    88
      lbl_page_project: 'project page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    89
      lbl_page_category: 'category',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    90
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    91
      btn_discussion: 'discussion (%num_comments%)',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    92
      btn_discussion_unapp: 'discussion (%num_comments% total, %num_unapp% unapp.)',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    93
      btn_edit: 'edit this page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    94
      btn_viewsource: 'view source',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    95
      btn_history: 'history',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    96
      btn_moreoptions: 'more options',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    97
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    98
      btn_rename: 'rename',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    99
      btn_printable: 'view printable version',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   100
      btn_votedelete: 'vote to delete this page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   101
      btn_votedelete_reset: 'reset deletion votes',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   102
      lbl_wikimode: 'page wiki mode:',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   103
      btn_wikimode_on: 'on',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   104
      btn_wikimode_off: 'off',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   105
      btn_wikimode_global: 'global',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   106
      lbl_protect: 'protection:',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   107
      btn_protect_on: 'on',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   108
      btn_protect_off: 'off',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   109
      btn_protect_semi: 'semi',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   110
      btn_clearlogs: 'clear page logs',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   111
      btn_deletepage: 'delete this page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   112
      btn_deletepage_votes: ' (<b>%num_votes%</b> vote%plural%)',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   113
      lbl_password: 'page password:',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   114
      btn_password_set: 'set',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   115
      btn_acl: 'manage page access',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   116
      btn_admin: 'administrative options',
205
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   117
    },
209
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
   118
    comment: {
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
   119
    },
211
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   120
    adm: {
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   121
      cat_general: 'General',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   122
      cat_content: 'Content',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   123
      cat_appearance: 'Appearance',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   124
      cat_users: 'Users',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   125
      cat_security: 'Security',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   126
      cat_plugins: 'Plugin configuration',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   127
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   128
      page_general_config: 'General configuration',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   129
      page_file_uploads: 'File uploads',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   130
      page_file_types: 'Allowed file types',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   131
      page_plugins: 'Manage plugins',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   132
      page_db_backup: 'Backup database',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   133
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   134
      page_manager: 'Manage pages',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   135
      page_editor: 'Edit page content',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   136
      page_pg_groups: 'Manage page groups',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   137
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   138
      page_themes: 'Manage themes',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   139
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   140
      page_users: 'Manage users',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   141
      page_user_groups: 'Edit user groups',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   142
      page_coppa: 'COPPA support',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   143
      page_mass_email: 'Mass e-mail',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   144
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   145
      page_security_log: 'Security log',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   146
      page_ban_control: 'Ban control',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   147
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   148
      btn_home: 'Administration panel home',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   149
      btn_logout: 'Log out of admin panel',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   150
      btn_keepalive_off: 'Turn on keep-alive',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   151
      btn_keepalive_on: 'Turn off keep-alive',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   152
      btn_keepalive_about: 'About keep-alive',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   153
      btn_keepalive_loading: 'Loading keep-alive button...'
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   154
    },
209
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
   155
    admhome: {
205
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   156
    },
210
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
   157
    etc: {
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
   158
      redirect_title: 'Redirecting...',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
   159
      redirect_body: 'Please wait while you are redirected.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
   160
      redirect_timeout: 'If you are not redirected within %timeout% seconds, please <a href="%redirect_url%">click here</a>.',
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
   161
    },
205
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   162
  }
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   163
};
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   164
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   165
// All done! :-)
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   166