language/english/enano.json
author Dan
Sun, 28 Oct 2007 14:32:13 -0400
changeset 209 8a00247d1dee
parent 205 c4542792db2b
child 210 2b283402e4e4
permissions -rw-r--r--
Login page mostly localized

/*
 * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
 * Version 1.1.1
 * Copyright (C) 2006-2007 Dan Fuhry
 *
 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
 */

// This is the main language file for Enano. Feel free to use it as a base for your own translations.
// All text in this file before the first left curly brace and all text after the last curly brace will
// be trimmed. So you can use a limited amount of Javascript in this so that the language can be imported
// via Javascript as well.

var enano_lang = {
  categories: [
    'meta', 'user', 'page', 'comment', 'onpage'
  ],
  strings: {
    meta: {
      meta: 'Language category strings',
      user: 'Login, logout, and authentication',
      page: 'Page creation and control',
      comment: 'Comment display',
      onpage: 'On-page controls',
      plural: 's'
    },
    user: {
      login_message_short: 'Please enter your username and password to log in.',
      login_message_short_elev: 'Please re-enter your login details',
      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.',
      err_key_wrong_length: 'The encryption key was the wrong length.',
      err_too_big_for_britches: 'You are trying to authenticate at a level that your user account does not permit.',
      err_invalid_credentials: 'You have entered an invalid username or password. Please enter your login details again.',
      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.',
      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.',
      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.',
      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%config.captcha_blurb%.',
      err_locked_out_captcha_blurb: ', or enter the visual confirmation code shown above in the appropriate box',
      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>.',
      login_body_elev: 'You are requesting that a sensitive operation be performed. To continue, please re-enter your password to confirm your identity.',
      login_field_username: 'Username',
      login_field_password: 'Password',
      login_forgotpass_blurb: 'Forgot your password? <a href="%forgotpass_link%">No problem.</a>',
      login_createaccount_blurb: 'Maybe you need to <a href="%reg_link%">create an account</a>.',
      login_field_captcha: 'Code in image',
      login_nocrypt_title: 'Important note regarding cryptography',
      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>.',
      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.',
    },
    page: {
    },
    comment: {
    },
    admhome: {
    },
  }
};

// All done! :-)