language/english/install.json
changeset 249 f4323fa79313
parent 247 e876c75a9149
child 252 96b72228bda0
equal deleted inserted replaced
248:ed13b72b13cc 249:f4323fa79313
   129       objective_test: 'Check your MySQL connection using the "Test Connection" button.',
   129       objective_test: 'Check your MySQL connection using the "Test Connection" button.',
   130       objective_uncrypt: 'Be aware that your database information will be transmitted unencrypted several times.',
   130       objective_uncrypt: 'Be aware that your database information will be transmitted unencrypted several times.',
   131     },
   131     },
   132     website: {
   132     website: {
   133       modetitle: 'Website configuration',
   133       modetitle: 'Website configuration',
       
   134       header_blurb: 'The next step is to enter some information about your website. You can always change this information later, using the administration panel.',
       
   135       
       
   136       field_name_title: 'Website name',
       
   137       field_name_body: 'The display name of your website. Allowed characters are uppercase and lowercase letters, numerals, and spaces. This must not be blank or "Enano".',
       
   138       field_desc_title: 'Website description',
       
   139       field_desc_body: 'This text will be shown below the name of your website.',
       
   140       field_copyright_title: 'Copyright info',
       
   141       field_copyright_body: 'This should be a one-line legal notice that will appear at the bottom of all your pages.',
       
   142       field_wikimode_title: 'Wiki mode',
       
   143       field_wikimode_body: 'This feature allows people to create and edit pages on your site. Enano keeps a history of all page modifications, and you can protect pages to prevent editing.',
       
   144       field_wikimode_checkbox: 'Yes, make my website a wiki.',
       
   145       field_urlscheme_title: 'URL scheme',
       
   146       field_urlscheme_body: 'Choose how the page URLs will look. Depending on your server configuration, you may need to select the first option. If you don\'t know, select the first option, and you can always change it later.',
       
   147       field_urlscheme_ugly: 'Standard URLs - compatible with any web server (www.example.com/index.php?title=Page_name)',
       
   148       field_urlscheme_short: 'Short URLs - requires Apache with a PHP module (www.example.com/index.php/Page_name)',
       
   149       field_urlscheme_tiny: 'Tiny URLs - requires Apache on Linux/Unix/BSD with PHP module and mod_rewrite enabled (www.example.com/Page_name)',
       
   150       
       
   151       objective_verify: 'Verify that your site information is correct. Again, all of the above settings can be changed from the administration panel.',
   134     },
   152     },
   135     login: {
   153     login: {
   136       modetitle: 'Administration login',
   154       modetitle: 'Administration login',
       
   155       header_blurb: 'Next, enter your desired username and password. The account you create here will be used to administer your site.',
       
   156       
       
   157       field_username_title: 'Administration username',
       
   158       field_username_body: 'The administration username you will use to log into your site.<br />This cannot be "anonymous" or in the form of an IP address.',
       
   159       field_password_title: 'Administration password:',
       
   160       field_password_confirm: 'Enter it again to confirm:',
       
   161       field_email_title: 'Your e-mail address:',
       
   162       field_allowphp_title: 'Allow administrators to embed PHP code into pages:',
       
   163       field_allowphp_body: 'Do not under any circumstances enable this option without reading these %important_notes%.',
       
   164       field_allowphp_isi: 'important security implications',
       
   165       field_allowphp_disabled: 'Disabled',
       
   166       field_allowphp_enabled: 'Enabled',
       
   167       
       
   168       aes_blurb: 'If your browser supports Javascript, the password you enter here will be encrypted with AES before it is sent to the server.',
       
   169       
       
   170       objective_remember: 'Remember the username and password you enter here! You will not be able to administer your site without the information you enter on this page.',
   137     },
   171     },
   138     confirm: {
   172     confirm: {
   139       modetitle: 'Confirm installation',
   173       modetitle: 'Confirm installation',
       
   174       
       
   175       header_blurb_title: 'Enano is ready to install.',
       
   176       header_blurb_body: 'The wizard has finished collecting information and is ready to install the database schema. Please review the information below, and then click the button below to install the database.',
       
   177       
       
   178       lbl_db_host: 'Database hostname:',
       
   179       lbl_db_name: 'Database name:',
       
   180       lbl_db_user: 'Database user:',
       
   181       lbl_db_pass: 'Database password: &lt;hidden&gt;',
       
   182       lbl_sitename: 'Site name:',
       
   183       lbl_sitedesc: 'Site description:',
       
   184       lbl_adminuser: 'Administration username:',
       
   185       lbl_aesbits: 'Cipher strength:',
       
   186       lbl_aes_strength: '%aes_bits%-bit AES',
       
   187       lbl_aes_change: 'Cipher strength is defined in the file constants.php; if you desire to change the cipher strength, you may do so and then restart installation. Unless your site is mission-critical, changing the cipher strength is not necessary.',
       
   188       
       
   189       objective_pray: 'Pray.',
       
   190       btn_install_enano: 'Install Enano!',
   140     },
   191     },
   141     install: {
   192     install: {
   142       modetitle: 'Database installation',
   193       modetitle: 'Database installation',
   143     },
   194     },
   144     finish: {
   195     finish: {
   145       modetitle: 'Installation complete',
   196       modetitle: 'Installation complete',
   146     },
   197     },
   147     pophelp: {
   198     pophelp: {
       
   199       admin_embed_php_title: 'Allow administrators to embed PHP',
       
   200       admin_embed_php_body: '<p>This option allows you to control whether anything between the standard &lt;?php and ?&gt; tags will be treated as
       
   201                                 PHP code by Enano. If this option is enabled, and members of the Administrators group use these tags, Enano will
       
   202                                 execute that code when the page is loaded. There are obvious potential security implications here, which should
       
   203                                 be carefully considered before enabling this option.</p>
       
   204                              <p>If you are the only administrator of this site, or if you have a high level of trust for those will be administering
       
   205                                 the site with you, you should enable this to allow extreme customization of pages.</p>
       
   206                              <p>Leave this option off if you are at all concerned about security – if your account is compromised and PHP embedding
       
   207                                 is enabled, an attacker can run arbitrary code on your server! Enabling this will also allow administrators to
       
   208                                 embed Javascript and arbitrary HTML and CSS.</p>
       
   209                              <p>If you don\'t have experience coding in PHP, you can safely disable this option. You may change this at any time
       
   210                                 using the ACL editor by selecting the Administrators group and This Entire Website under the scope selection.</p>',
       
   211       btn_close_window: 'Close window',
   148     }
   212     }
   149   }
   213   }
   150   
       
   151 }
   214 }