language/english/enano.json
author Dan
Mon, 29 Oct 2007 11:17:55 -0400
changeset 215 94db56b8124f
parent 214 a6ed8b6cdbe1
child 217 2b13497fe820
permissions -rw-r--r--
Localized the sidebar
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: [
215
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
    20
    'adm', 'meta', 'user', 'page', 'comment', 'onpage', 'etc', 'editor', 'history', 'catedit', 'tags', 'delvote', 'ajax', 'sidebar',
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: {
213
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
    24
      adm: 'Administration panel nav menu',
205
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    25
      meta: 'Language category strings',
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    26
      user: 'Login, logout, and authentication',
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    27
      page: 'Page creation and control',
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    28
      comment: 'Comment display',
214
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
    29
      onpage: 'On-page buttons and controls',
213
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
    30
      etc: 'Miscellaneous strings',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
    31
      editor: 'Page editor interface',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
    32
      history: 'Page history and log viewer',
214
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
    33
      catedit: 'Categorization box and editor',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
    34
      tags: 'Page tagging interface',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
    35
      delvote: 'Page deletion vote interface',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
    36
      ajax: 'On-page AJAX applets',
215
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
    37
      sidebar: 'Default sidebar blocks and buttons',
205
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    38
      plural: 's'
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    39
    },
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    40
    user: {
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    41
      login_message_short: 'Please enter your username and password to log in.',
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    42
      login_message_short_elev: 'Please re-enter your login details',
209
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    43
      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
    44
      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
    45
      login_field_username: 'Username',
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    46
      login_field_password: 'Password',
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    47
      login_forgotpass_blurb: 'Forgot your password? <a href="%forgotpass_link%">No problem.</a>',
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    48
      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
    49
      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
    50
      login_nocrypt_title: 'Important note regarding cryptography:',
209
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
    51
      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
    52
      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
    53
      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
    54
      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
    55
      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
    56
      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
    57
      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
    58
      
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    59
      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
    60
      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
    61
      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
    62
      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
    63
      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
    64
      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
    65
      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
    66
      
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    67
      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
    68
      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
    69
      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
    70
      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
    71
      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
    72
      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
    73
      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
    74
      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
    75
      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
    76
      
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
    77
      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
    78
      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
    79
      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
    80
      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
    81
      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
    82
      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
    83
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    84
      keepalive_info_title: 'About the keep-alive feature',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    85
      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>',
212
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
    86
      
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
    87
      type_guest: 'Guest',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
    88
      type_member: 'Member',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
    89
      type_mod: 'Moderator',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
    90
      type_admin: 'Administrator',
215
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
    91
      
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
    92
      msg_elev_timed_out: '<b>Your administrative session has timed out.</b> <a href="%login_link%">Log in again</a>',
205
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
    93
    },
211
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    94
    onpage: {
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    95
      lbl_pagetools: 'Page tools',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    96
      lbl_page_article: 'article',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    97
      lbl_page_admin: 'administration page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    98
      lbl_page_system: 'system message',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
    99
      lbl_page_file: 'uploaded file',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   100
      lbl_page_help: 'documentation page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   101
      lbl_page_user: 'user page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   102
      lbl_page_special: 'special page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   103
      lbl_page_template: 'template',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   104
      lbl_page_project: 'project page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   105
      lbl_page_category: 'category',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   106
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   107
      btn_discussion: 'discussion (%num_comments%)',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   108
      btn_discussion_unapp: 'discussion (%num_comments% total, %num_unapp% unapp.)',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   109
      btn_edit: 'edit this page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   110
      btn_viewsource: 'view source',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   111
      btn_history: 'history',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   112
      btn_moreoptions: 'more options',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   113
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   114
      btn_rename: 'rename',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   115
      btn_printable: 'view printable version',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   116
      btn_votedelete: 'vote to delete this page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   117
      btn_votedelete_reset: 'reset deletion votes',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   118
      lbl_wikimode: 'page wiki mode:',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   119
      btn_wikimode_on: 'on',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   120
      btn_wikimode_off: 'off',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   121
      btn_wikimode_global: 'global',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   122
      lbl_protect: 'protection:',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   123
      btn_protect_on: 'on',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   124
      btn_protect_off: 'off',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   125
      btn_protect_semi: 'semi',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   126
      btn_clearlogs: 'clear page logs',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   127
      btn_deletepage: 'delete this page',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   128
      btn_deletepage_votes: ' (<b>%num_votes%</b> vote%plural%)',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   129
      lbl_password: 'page password:',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   130
      btn_password_set: 'set',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   131
      btn_acl: 'manage page access',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   132
      btn_admin: 'administrative options',
205
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   133
    },
209
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
   134
    comment: {
212
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   135
      lbl_subject: 'Subject',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   136
      lbl_mod_options: 'Moderator options:',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   137
      heading: 'Article comments',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   138
      btn_send_privmsg: 'Send private message',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   139
      btn_add_buddy: 'Add to buddy list',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   140
      btn_edit: 'edit',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   141
      btn_delete: 'delete',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   142
      btn_mod_approve: 'Approve',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   143
      btn_mod_unapprove: 'Unapprove',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   144
      btn_mod_delete: 'Delete',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   145
      btn_save: 'save',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   146
      
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   147
      msg_comment_posted: 'Your comment has been posted. If it does not appear right away, it is probably awaiting approval.',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   148
      
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   149
      msg_count_zero: 'There are <span id="comment_count_inner">no</span> comments on this %page_type%.',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   150
      msg_count_one: 'There is <span id="comment_count_inner">1</span> comment on this %page_type%.',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   151
      msg_count_plural: 'There are <span id="comment_count_inner">%num_comments%</span> comments on this %page_type%.',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   152
      
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   153
      msg_count_unapp_mod: '<span id="comment_count_unapp_inner">%num_unapp%</span> of those are unapproved.',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   154
      msg_count_unapp_one: 'However, there is <span id="comment_count_unapp_inner">1</span> additional comment awaiting approval.',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   155
      msg_count_unapp_plural: 'However, there are <span id="comment_count_unapp_inner">%num_unapp%</span> additional comments awaiting approval.',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   156
      
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   157
      msg_note_unapp: '(Unapproved)',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   158
      
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   159
      msg_delete_confirm: 'Do you really want to delete this comment?',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   160
      
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   161
      postform_title: 'Got something to say?',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   162
      postform_blurb: 'If you have comments or suggestions on this article, you can shout it out here.',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   163
      postform_blurb_unapp: 'Before your post will be visible to the public, a moderator will have to approve it.',
213
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   164
      postform_blurb_captcha: 'Because you are not logged in, you will need to enter a visual confirmation before your comment will be posted.',
212
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   165
      postform_blurb_link: 'Leave a comment...',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   166
      postform_field_name: 'Your name/screen name:',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   167
      postform_field_subject: 'Comment subject:',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   168
      postform_field_comment: 'Comment:',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   169
      postform_field_captcha_title: 'Visual confirmation:',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   170
      postform_field_captcha_blurb: 'Please enter the confirmation code seen in the image on the right into the box. If you cannot read the code, please click on the image to generate a new one. This helps to prevent automated bot posting.',
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   171
      postform_field_captcha_label: 'Confirmation code:',
213
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   172
      postform_field_captcha_cantread_js: 'If you can\'t read the code, click on the image to generate a new one.',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   173
      postform_field_captcha_cantread_nojs: 'If you can\'t read the code, please refresh this page to generate a new one.',
212
30b857a6b811 Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
parents: 211
diff changeset
   174
      postform_btn_submit: 'Submit comment',
214
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   175
      
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   176
      on_friend_list: 'On your friend list',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   177
      on_foe_list: 'On your foe list',
209
8a00247d1dee Login page mostly localized
Dan
parents: 205
diff changeset
   178
    },
211
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   179
    adm: {
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   180
      cat_general: 'General',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   181
      cat_content: 'Content',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   182
      cat_appearance: 'Appearance',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   183
      cat_users: 'Users',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   184
      cat_security: 'Security',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   185
      cat_plugins: 'Plugin configuration',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   186
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   187
      page_general_config: 'General configuration',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   188
      page_file_uploads: 'File uploads',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   189
      page_file_types: 'Allowed file types',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   190
      page_plugins: 'Manage plugins',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   191
      page_db_backup: 'Backup database',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   192
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   193
      page_manager: 'Manage pages',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   194
      page_editor: 'Edit page content',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   195
      page_pg_groups: 'Manage page groups',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   196
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   197
      page_themes: 'Manage themes',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   198
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   199
      page_users: 'Manage users',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   200
      page_user_groups: 'Edit user groups',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   201
      page_coppa: 'COPPA support',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   202
      page_mass_email: 'Mass e-mail',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   203
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   204
      page_security_log: 'Security log',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   205
      page_ban_control: 'Ban control',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   206
      
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   207
      btn_home: 'Administration panel home',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   208
      btn_logout: 'Log out of admin panel',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   209
      btn_keepalive_off: 'Turn on keep-alive',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   210
      btn_keepalive_on: 'Turn off keep-alive',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   211
      btn_keepalive_about: 'About keep-alive',
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   212
      btn_keepalive_loading: 'Loading keep-alive button...'
753dabeca1ee Completely localized admin tree menu and page toolbar
Dan
parents: 210
diff changeset
   213
    },
213
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   214
    editor: {
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   215
      msg_revert_confirm: 'Do you really want to revert your changes?',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   216
      msg_discard_confirm: 'Do you really want to discard your changes?',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   217
      msg_unload: 'If you do, any changes that you have made to this page will be lost.',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   218
      btn_graphical: 'graphical editor',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   219
      btn_wikitext: 'wikitext editor',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   220
      lbl_edit_summary: 'Edit summary:',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   221
      lbl_minor_edit: 'This is a minor edit',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   222
      btn_save: 'Save changes',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   223
      btn_preview: 'Show preview',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   224
      btn_revert: 'Revert changes',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   225
      btn_cancel: 'Cancel and return to page',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   226
      btn_closeviewer: 'Close viewer',
214
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   227
      preview_blurb: '<b>Reminder:</b> This is only a preview - your changes to this page have not yet been saved.',
213
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   228
    },
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   229
    history: {
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   230
      summary_clearlogs: 'Automatic backup created when logs were purged',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   231
      page_subtitle: 'History of edits and actions',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   232
      heading_edits: 'Edits:',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   233
      heading_other: 'Other changes:',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   234
      no_entries: 'No history entries in this category.',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   235
      btn_compare: 'Compare selected revisions',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   236
      col_diff: 'Diff',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   237
      col_datetime: 'Date/time',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   238
      col_user: 'User',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   239
      col_summary: 'Edit summary',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   240
      col_minor: 'Minor',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   241
      col_actions: 'Actions',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   242
      col_action_taken: 'Action taken',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   243
      col_extra: 'Extra info',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   244
      extra_reason: 'Reason:',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   245
      extra_oldtitle: 'Old title:',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   246
      tip_rdns: 'Click cell background for reverse DNS info',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   247
      action_view: 'View',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   248
      action_contrib: 'User contribs',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   249
      action_restore: 'Restore',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   250
      action_revert: 'Revert action',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   251
      log_protect: 'Protected page',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   252
      log_unprotect: 'Unprotected page',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   253
      log_semiprotect: 'Semi-protected page',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   254
      log_rename: 'Renamed page',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   255
      log_create: 'Created page',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   256
      log_delete: 'Deleted page',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   257
      log_uploadnew: 'Uploaded new file version',
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   258
      lbl_comparingrevisions: 'Comparing revisions:',
205
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   259
    },
214
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   260
    catedit: {
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   261
      title: 'Select which categories this page should be included in.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   262
      no_categories: 'There are no categories on this site yet.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   263
      catbox_lbl_categories: 'Categories:',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   264
      catbox_lbl_uncategorized: '(Uncategorized)',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   265
      catbox_link_edit: 'edit categorization',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   266
      catbox_link_showcategorization: 'show page categorization',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   267
    },
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   268
    tags: {
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   269
      catbox_link: 'show page tags',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   270
      lbl_page_tags: 'Page tags:',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   271
      lbl_no_tags: 'No tags on this page',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   272
      btn_add_tag: '(add a tag)',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   273
      lbl_add_tag: 'Add a tag:',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   274
      btn_add: '+ Add',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   275
    },
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   276
    delvote: {
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   277
      lbl_votes_one: 'There is one user that thinks this page should be deleted.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   278
      lbl_votes_plural: 'There are %num_users% users that think this page should be deleted.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   279
      lbl_users_that_voted: 'Users that voted:',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   280
      btn_deletepage: 'Delete page',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   281
      btn_resetvotes: 'Reset votes',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   282
    },
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   283
    ajax: {
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   284
      // Client-side messages
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   285
      protect_prompt_reason: 'Reason for (un)protecting:',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   286
      rename_prompt: 'What title should this page be renamed to?\nNote: This does not and will never change the URL of this page, that must be done from the admin panel.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   287
      delete_prompt_reason: 'Please enter your reason for deleting this page.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   288
      delete_confirm: 'You are about to REVERSIBLY delete this page. Do you REALLY want to do this?\n\n(Comments and categorization data, as well as any attached files, will be permanently lost)',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   289
      delvote_confirm: 'Are you sure that you want to vote that this page be deleted?',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   290
      delvote_reset_confirm: 'This will reset the number of votes against this page to zero. Do you really want to do this?',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   291
      clearlogs_confirm: 'You are about to DESTROY all log entries for this page. As opposed to (example) deleting this page, this action is completely IRREVERSIBLE and should not be used except in dire circumstances. Do you REALLY want to do this?',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   292
      clearlogs_confirm_nag: 'You\'re ABSOLUTELY sure???',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   293
      changestyle_select: '[Select]',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   294
      changestyle_title: 'Change your theme',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   295
      changestyle_pleaseselect_theme: 'Please select a theme from the list.',
215
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   296
      changestyle_lbl_theme: 'Theme:',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   297
      changestyle_lbl_style: 'Style:',
214
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   298
      changestyle_success: 'Your theme preference has been changed.\nWould you like to reload the page now to see the changes?',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   299
      killphp_confirm: 'Are you really sure you want to do this? Some pages might not function if this emergency-only feature is activated.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   300
      killphp_success: 'Embedded PHP in pages has been disabled.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   301
      
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   302
      // Server-side responses
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   303
      rename_too_short: 'The name you entered is too short. Please enter a longer name for this page.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   304
      rename_success: 'The page "%page_name_old%" has been renamed to "%page_name_new%". You are encouraged to leave a comment explaining your action.\n\nYou will see the change take effect the next time you reload this page.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   305
      clearlogs_success: 'The logs for this page have been cleared. A backup of this page has been added to the logs table so that this page can be restored in case of vandalism or spam later.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   306
      delete_need_reason: 'Invalid reason for deletion passed. Please enter a reason for deleting this page.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   307
      delete_success: 'This page has been deleted. Note that there is still a log of edits and actions in the database, and anyone with admin rights can raise this page from the dead unless the log is cleared. If the deleted file is an image, there may still be cached thumbnails of it in the cache/ directory, which is inaccessible to users.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   308
      delvote_success: 'Your vote to have this page deleted has been cast.\nYou are encouraged to leave a comment explaining the reason for your vote.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   309
      delvote_already_voted: 'It appears that you have already voted to have this page deleted.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   310
      delvote_reset_success: 'The number of votes for having this page deleted has been reset to zero.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   311
      password_success: 'The password for this page has been set.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   312
      password_disable_success: 'The password for this page has been disabled.',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   313
      
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   314
    },
215
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   315
    sidebar: {
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   316
      title_navigation: 'Navigation',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   317
      title_tools: 'Tools',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   318
      title_search: 'Search',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   319
      title_links: 'Links',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   320
      
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   321
      btn_home: 'Home',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   322
      btn_createpage: 'Create a page',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   323
      btn_uploadfile: 'Upload file',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   324
      btn_specialpages: 'Special pages',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   325
      btn_administration: 'Administration',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   326
      btn_editsidebar: 'Edit the sidebar',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   327
      btn_search_go: 'Go',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   328
      
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   329
      btn_userpage: 'User page',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   330
      btn_mycontribs: 'My contributions',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   331
      btn_preferences: 'Preferences',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   332
      btn_privatemessages: 'Private messages',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   333
      btn_groupcp: 'Group control panel',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   334
      btn_register: 'Create an account',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   335
      btn_login: 'Log in',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   336
      btn_logout: 'Log out',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   337
      btn_changestyle: 'Change theme',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   338
    },
210
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
   339
    etc: {
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
   340
      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
   341
      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
   342
      redirect_timeout: 'If you are not redirected within %timeout% seconds, please <a href="%redirect_url%">click here</a>.',
213
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   343
      // Generic "Save Changes" button
1316404e4ea8 Localized history page and static HTML comment interface
Dan
parents: 212
diff changeset
   344
      save_changes: 'Save changes',
214
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   345
      // Generic "Notice:" label
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   346
      lbl_notice: 'Notice:',
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   347
      // Generic "Access denied"
a6ed8b6cdbe1 All on-page AJAX applets should be localized now
Dan
parents: 213
diff changeset
   348
      access_denied: 'Access to the specified file, resource, or action is denied.',
215
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   349
      // Message box buttons
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   350
      ok: 'OK',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   351
      cancel: 'Cancel',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   352
      yes: 'Yes',
94db56b8124f Localized the sidebar
Dan
parents: 214
diff changeset
   353
      no: 'No'
210
2b283402e4e4 Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents: 209
diff changeset
   354
    },
205
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   355
  }
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   356
};
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   357
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   358
// All done! :-)
c4542792db2b Localization low-level framework added
Dan
parents:
diff changeset
   359