language/english/tools.json
changeset 334 c72b545f1304
child 335 67bd3121a12e
equal deleted inserted replaced
333:32429702305e 334:c72b545f1304
       
     1 /*
       
     2  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
       
     3  * Version 1.1.1
       
     4  * Copyright (C) 2006-2007 Dan Fuhry
       
     5  *
       
     6  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
       
     7  * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
       
     8  *
       
     9  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
       
    10  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
       
    11  */
       
    12 
       
    13 // This is the main language file for Enano. Feel free to use it as a base for your own translations.
       
    14 // All text in this file before the first left curly brace and all text after the last curly brace will
       
    15 // be trimmed. So you can use a limited amount of Javascript in this so that the language can be imported
       
    16 // via Javascript as well.
       
    17 
       
    18 var enano_lang = {
       
    19   categories: [
       
    20     'search', 'specialpage'
       
    21   ],
       
    22   strings: {
       
    23     meta: {
       
    24       search: 'Search page',
       
    25       specialpage: 'Special pages',
       
    26     },
       
    27     specialpage: {
       
    28       administration: 'Administration',
       
    29       manage_sidebar: 'Manage the Sidebar',
       
    30       css: 'Templated style sheet generator',
       
    31       groupcp: 'Group Membership',
       
    32       create_page: 'Create page',
       
    33       all_pages: 'All pages',
       
    34       special_pages: 'List of special pages',
       
    35       about_enano: 'About Enano',
       
    36       gnu_gpl: 'GNU General Public License',
       
    37       tag_cloud: 'Tag cloud',
       
    38       search_rebuild: 'Rebuild search index',
       
    39       search: 'Search',
       
    40       upload_file: 'Upload file',
       
    41       download_file: 'Download file',
       
    42       log_in: 'Log in',
       
    43       log_out: 'Log out',
       
    44       register: 'Register',
       
    45       preferences: 'Edit Profile',
       
    46       contributions: 'User contributions',
       
    47       change_theme: 'Change my preferred theme',
       
    48       activate_account: 'Activate user account',
       
    49       captcha: 'CAPTCHA image generator',
       
    50       password_reset: 'Reset forgotten password',
       
    51       member_list: 'Member list',
       
    52       language_export: 'Language exporter',
       
    53       private_messages: 'Private Messages',
       
    54     },
       
    55     search: {
       
    56       th_advanced_search: 'Advanced Search',
       
    57       
       
    58       err_query_title: 'Some problems were encountered during your search.',
       
    59       err_query_body: 'There was a problem with your search query, and as a result there may be a reduced number of search results.',
       
    60       err_query_too_many_terms: 'Some of your search terms were excluded because searches are limited to 20 terms to prevent excessive server load.',
       
    61       err_query_has_stopwords: 'One or more of your search terms was excluded because either it was less than 2 characters in length or is a common word (a stopword) that is typically found on a large number of pages. Examples of stopwords include "the", "this", "which", "with", etc.',
       
    62       err_query_dup_terms: 'One or more of your search terms was excluded because duplicate terms were encountered.',
       
    63       err_query_term_too_short: 'One or more of your search terms was excluded because terms must be at least 4 characters in length.',
       
    64       
       
    65       btn_search: 'Search',
       
    66       // note the case difference with th_advanced_search
       
    67       btn_advanced_search: 'Advanced search',
       
    68       
       
    69       msg_no_results: 'No results.',
       
    70       msg_result_detail: 'Results <b>%start_string%</b> - <b>%per_string%</b> of about <b>%num_results%</b> for <b>%q_trim%</b> in %search_time%s.',
       
    71       
       
    72       lbl_site_search: 'Site search',
       
    73       lbl_relevance: 'Relevance:',
       
    74       lbl_field_any: 'Search for pages with <b>any of these words</b>:',
       
    75       lbl_field_exact: 'with <b>this exact phrase</b>:',
       
    76       lbl_field_none: 'with <b>none of these words</b>:',
       
    77       lbl_field_all: 'with <b>all of these words</b>:',
       
    78       lbl_field_casesensitive: 'Case-sensitive search:',
       
    79     }
       
    80   }
       
    81 };
       
    82 
       
    83 // All done! :-)
       
    84