mirror of
https://github.com/boostorg/website.git
synced 2026-01-26 19:12:15 +00:00
112 lines
3.3 KiB
PHP
112 lines
3.3 KiB
PHP
<?php
|
|
# phpWebNotes - a php based note addition system
|
|
# Copyright (C) 2000-2002 Webnotes Team - webnotes-devel@sourceforge.net
|
|
# This program is distributed under the terms and conditions of the GPL
|
|
# See the files README and LICENSE for details
|
|
|
|
# --------------------------------------------------------
|
|
# $Id$
|
|
# --------------------------------------------------------
|
|
|
|
# This file is to aid in localization
|
|
|
|
### General Strings
|
|
$s_sql_error_msg = "ERROR DETECTED: Report this sql statement to";
|
|
$s_administrator = "Administrator";
|
|
$s_click_to_proceed_msg = "Click here to proceed";
|
|
$s_admin_link = "Admin";
|
|
$s_logout_link = "Logout";
|
|
|
|
### core_API.php
|
|
$s_user_notes = "User Contributed Notes";
|
|
$s_update_button = "Update";
|
|
### $s_add_note_link # defined elsewhere
|
|
$s_manage = "Manage";
|
|
$s_admin = "Admin";
|
|
|
|
### admin.php
|
|
$s_admin_title = "Admin";
|
|
$s_index_files = 'Manage Pages';
|
|
$s_manage_users = 'Manage Users';
|
|
$s_view_queue = 'Moderate Notes';
|
|
$s_manage_notes = 'Manage Notes';
|
|
$s_change_password = "Change Password";
|
|
|
|
### admin_change_password.php
|
|
$s_change_password_title = "Change Password";
|
|
### $s_username # defined elsewhere
|
|
### $s_password # defined elsewhere
|
|
$s_verify_password = "Verify Password";
|
|
$s_change_password_link = "Change Password";
|
|
|
|
### admin_index_files.php
|
|
$s_index_files_title = "Index Files";
|
|
$s_current_directory = "Current Directory";
|
|
$s_indexed_following_files = "Indexed the following files";
|
|
$s_index_msg = "Index recursively from this directory. Duplicates will be ignored.";
|
|
$s_index_files_link = "Index Files";
|
|
|
|
### admin_manage_notes.php
|
|
$s_date = "Date";
|
|
$s_email = "Email";
|
|
$s_ip = "IP";
|
|
$s_note = "Note";
|
|
$s_delete_button = "Delete";
|
|
$s_back_link = "Back";
|
|
$s_manage_notes_title = "Manage Notes";
|
|
$s_page = "Page";
|
|
|
|
### admin_view_queue.php
|
|
$s_view_queue_title = "View Queue";
|
|
$s_items_in_queue = "items in queue";
|
|
### $s_page # defined elsewhere
|
|
### $s_date # defined elsewhere
|
|
### $s_email # defined elsewhere
|
|
### $s_ip # defined elsewhere
|
|
### $s_note # defined elsewhere
|
|
$s_accept_link = "Accept";
|
|
$s_decline_link = "Decline";
|
|
|
|
### login.php
|
|
### login_page.php
|
|
$s_login_title = "Login";
|
|
$s_username = "Username";
|
|
$s_password = "Password";
|
|
$s_save_login = "Save Login";
|
|
$s_login_button = "Login";
|
|
|
|
### logout.php
|
|
$s_logged_out_msg = "Logged Out...";
|
|
$s_logout_redirect_msg = "Redirecting to...";
|
|
|
|
### note_add.php
|
|
$s_created_note_msg = "Created note...";
|
|
$s_sql_error_msg = "ERROR DETECTED: Report this sql statement to";
|
|
|
|
### note_add_page.php
|
|
$s_not_indexed_part1 = "This page is not indexed in the database. Please get the";
|
|
### $s_administrator # defined elsewhere
|
|
$s_not_indexed_part2 = "to run the file indexer.";
|
|
$s_back_link = "Back";
|
|
$s_add_note = "Add Note";
|
|
$s_delete = "Date";
|
|
$s_email = "Email";
|
|
$s_note = "Note";
|
|
$s_add_note_link = "Add Note";
|
|
|
|
### link_api.php
|
|
$s_action_accept = 'Accept';
|
|
$s_action_decline = 'Decline';
|
|
$s_action_delete = 'Delete';
|
|
$s_action_archive = 'Archive';
|
|
$s_action_queue = 'Queue';
|
|
$s_action_edit = 'Edit';
|
|
$s_action_index = 'Add Page';
|
|
$s_action_unindex = 'Remove Page';
|
|
|
|
### General Strings
|
|
$s_proceed = 'Click here to proceed';
|
|
|
|
### Enumerations
|
|
$s_access_levels_enum_string = '10:anonymous,40:registered,70:moderator,90:administrator';
|
|
?>
|