Revision 1634
Added by Luisehahne over 13 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 11 | 11 |
! = Update/Change |
| 12 | 12 |
=============================================================================== |
| 13 | 13 |
|
| 14 |
29 Feb-2012 Build 1633 Werner v.d.Decken(DarkViper) |
|
| 14 |
09 Mar-2012 Build 1634 Dietmar Woellbrink (Luisehahne) |
|
| 15 |
! update language files and rework some core files (read DEVINFOS) |
|
| 16 |
! compress mdcr.js |
|
| 17 |
+ add DEVINFOS Instructions/Informations for modulecoder |
|
| 18 |
08 Mar-2012 Build 1633 Werner v.d.Decken(DarkViper) |
|
| 15 | 19 |
# fixed class::methode print_error(...) overwrite in /install/save.php |
| 16 | 20 |
02 Mar-2012 Build 1632 Dietmar Woellbrink (Luisehahne) |
| 17 | 21 |
! small design update for wb theme, login und login_forgot |
| branches/2.8.x/wb/media/index.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 | 2 |
// *** This file is generated by WebsiteBaker Ver.2.8.3 |
| 3 |
// *** Creation date: 2012-02-29T23:38:56+00:00
|
|
| 3 |
// *** Creation date: 2012-03-09T02:10:15+00:00
|
|
| 4 | 4 |
// *** Do not modify this file manually |
| 5 | 5 |
// *** WB will rebuild this file from time to time!! |
| 6 | 6 |
// ************************************************* |
| 7 |
header('HTTP/1.0 301 Moved Permanently');
|
|
| 7 |
header('HTTP/1.1 301 Moved Permanently');
|
|
| 8 | 8 |
header('Location: http://wb282.wdsnet/2.8.x/wb/index.php');
|
| 9 | 9 |
// ************************************************* |
| branches/2.8.x/wb/admin/interface/version.php | ||
|---|---|---|
| 51 | 51 |
|
| 52 | 52 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
| 53 | 53 |
if(!defined('VERSION')) define('VERSION', '2.8.3');
|
| 54 |
if(!defined('REVISION')) define('REVISION', '1633');
|
|
| 54 |
if(!defined('REVISION')) define('REVISION', '1634');
|
|
| 55 | 55 |
if(!defined('SP')) define('SP', '');
|
| branches/2.8.x/wb/account/signup2.php | ||
|---|---|---|
| 40 | 40 |
*/ |
| 41 | 41 |
// Check values |
| 42 | 42 |
if($groups_id == "") {
|
| 43 |
$wb->print_error($MESSAGE['USERS']['NO_GROUP'], $js_back, false);
|
|
| 43 |
$wb->print_error($MESSAGE['USERS_NO_GROUP'], $js_back, false);
|
|
| 44 | 44 |
} |
| 45 |
if(!preg_match('/^[a-z]{1}[a-z0-9_-]{2,}$/i', $username)) {
|
|
| 45 |
if(!preg_match('/^[a-z]{1}[a-z0-9._-]{2,}$/i', $username)) {
|
|
| 46 | 46 |
$wb->print_error( $MESSAGE['USERS_NAME_INVALID_CHARS'].' / '. |
| 47 | 47 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'], $js_back); |
| 48 | 48 |
} |
| 49 | 49 |
if($email != "") {
|
| 50 | 50 |
if($wb->validate_email($email) == false) {
|
| 51 |
$wb->print_error($MESSAGE['USERS']['INVALID_EMAIL'], $js_back, false);
|
|
| 51 |
$wb->print_error($MESSAGE['USERS_INVALID_EMAIL'], $js_back, false);
|
|
| 52 | 52 |
} |
| 53 | 53 |
} else {
|
| 54 |
$wb->print_error($MESSAGE['SIGNUP']['NO_EMAIL'], $js_back, false);
|
|
| 54 |
$wb->print_error($MESSAGE['SIGNUP_NO_EMAIL'], $js_back, false);
|
|
| 55 | 55 |
} |
| 56 | 56 |
|
| 57 | 57 |
$email = $wb->add_slashes($email); |
| 58 |
|
|
| 58 |
$search = array('{SERVER_EMAIL}');
|
|
| 59 |
$replace = array( SERVER_EMAIL); |
|
| 59 | 60 |
// Captcha |
| 60 | 61 |
if(ENABLED_CAPTCHA) {
|
| 62 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = str_replace($search,$replace,$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA']); |
|
| 61 | 63 |
if(isset($_POST['captcha']) AND $_POST['captcha'] != ''){
|
| 62 | 64 |
// Check for a mismatch |
| 63 | 65 |
if(!isset($_POST['captcha']) OR !isset($_SESSION['captcha']) OR $_POST['captcha'] != $_SESSION['captcha']) {
|
| 64 |
$wb->print_error($MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'], $js_back, false);
|
|
| 66 |
$wb->print_error($MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'], $js_back, false);
|
|
| 65 | 67 |
} |
| 66 | 68 |
} else {
|
| 67 |
$wb->print_error($MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'], $js_back, false);
|
|
| 69 |
$wb->print_error($MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'], $js_back, false);
|
|
| 68 | 70 |
} |
| 69 | 71 |
} |
| 70 | 72 |
if(isset($_SESSION['captcha'])) { unset($_SESSION['captcha']); }
|
| ... | ... | |
| 85 | 87 |
// Check if username already exists |
| 86 | 88 |
$results = $database->query("SELECT user_id FROM ".TABLE_PREFIX."users WHERE username = '$username'");
|
| 87 | 89 |
if($results->numRows() > 0) {
|
| 88 |
$wb->print_error($MESSAGE['USERS']['USERNAME_TAKEN'], $js_back, false);
|
|
| 90 |
$wb->print_error($MESSAGE['USERS_USERNAME_TAKEN'], $js_back, false);
|
|
| 89 | 91 |
} |
| 90 | 92 |
|
| 91 | 93 |
// Check if the email already exists |
| 92 | 94 |
$results = $database->query("SELECT user_id FROM ".TABLE_PREFIX."users WHERE email = '".$wb->add_slashes($email)."'");
|
| 93 | 95 |
if($results->numRows() > 0) {
|
| 94 |
if(isset($MESSAGE['USERS']['EMAIL_TAKEN'])) {
|
|
| 95 |
$wb->print_error($MESSAGE['USERS']['EMAIL_TAKEN'], $js_back, false);
|
|
| 96 |
if(isset($MESSAGE['USERS_EMAIL_TAKEN'])) {
|
|
| 97 |
$wb->print_error($MESSAGE['USERS_EMAIL_TAKEN'], $js_back, false);
|
|
| 96 | 98 |
} else {
|
| 97 |
$wb->print_error($MESSAGE['USERS']['INVALID_EMAIL'], $js_back, false);
|
|
| 99 |
$wb->print_error($MESSAGE['USERS_INVALID_EMAIL'], $js_back, false);
|
|
| 98 | 100 |
} |
| 99 | 101 |
} |
| 100 | 102 |
|
| ... | ... | |
| 116 | 118 |
// Replace placeholders from language variable with values |
| 117 | 119 |
$search = array('{LOGIN_DISPLAY_NAME}', '{LOGIN_WEBSITE_TITLE}', '{LOGIN_NAME}', '{LOGIN_PASSWORD}');
|
| 118 | 120 |
$replace = array($display_name, WEBSITE_TITLE, $username, $new_pass); |
| 119 |
$mail_message = str_replace($search, $replace, $MESSAGE['SIGNUP2']['BODY_LOGIN_INFO']);
|
|
| 121 |
$mail_message = str_replace($search, $replace, $MESSAGE['SIGNUP2_BODY_LOGIN_INFO']);
|
|
| 120 | 122 |
|
| 121 | 123 |
// Try sending the email |
| 122 | 124 |
if($wb->mail(SERVER_EMAIL,$mail_to,$mail_subject,$mail_message)) {
|
| 123 | 125 |
$display_form = false; |
| 124 |
$wb->print_success($MESSAGE['FORGOT_PASS']['PASSWORD_RESET'], WB_URL.'/account/login.php' );
|
|
| 126 |
$wb->print_success($MESSAGE['FORGOT_PASS_PASSWORD_RESET'], WB_URL.'/account/login.php' );
|
|
| 125 | 127 |
} else {
|
| 126 | 128 |
$database->query("DELETE FROM ".TABLE_PREFIX."users WHERE username = '$username'");
|
| 127 |
$wb->print_error($MESSAGE['FORGOT_PASS']['CANNOT_EMAIL'], $js_back, false);
|
|
| 129 |
$wb->print_error($MESSAGE['FORGOT_PASS_CANNOT_EMAIL'], $js_back, false);
|
|
| 128 | 130 |
} |
| 129 | 131 |
} |
| 130 | 132 |
|
| branches/2.8.x/wb/languages/FI.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Jontse'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Käyttäjät'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Lisäosat'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Sivupohjat'; |
| 55 | 53 |
$MENU['USERS'] = 'Käyttäjät'; |
| 56 | 54 |
$MENU['VIEW'] = 'Katsele'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Kirjaunut'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Tila'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Käytössä'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG muokkain'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG tyyli'; |
| 392 | 388 |
$TEXT['YES'] = 'Kyllä'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Lisää ryhmä'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Lataa palvelimelle'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Merkkiä ../ ei voi käyttää '; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' tiedostot ladattu'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Rajoitus voimassa, yritä tunnin kuluttua uudelleen'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Täytä kentät'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Sivu lisätty'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Otsikko lisätty'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Tervetuloa sivuston hallintaan'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Sivupohjan voi vaihtaa asetukset-kohdasta'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Talletettu'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'käyttäjäryhmät...'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'Kysymykset, vastaukset...'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/EN.php | ||
|---|---|---|
| 540 | 540 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Cannot have ../ in the folder target'; |
| 541 | 541 |
$MESSAGE['MEDIA_UPLOADED'] = ' files were successfully uploaded'; |
| 542 | 542 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Sorry, this form has been submitted too many times so far this hour. Please retry in the next hour.'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 544 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'You must enter details for the following fields'; |
| 545 | 545 |
$MESSAGE['PAGES_ADDED'] = 'Page added successfully'; |
| 546 | 546 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Page heading added successfully'; |
| ... | ... | |
| 676 | 676 |
$OVERVIEW['USERS'] = 'Manage users who can log-in to WebsiteBaker...'; |
| 677 | 677 |
$OVERVIEW['VIEW'] = 'Quickly view and browse your website in a new window...'; |
| 678 | 678 |
|
| 679 |
$TXT['THEME_COPY_CURRENT'] = 'Copy backend theme.'; |
|
| 680 |
$TXT['THEME_NEW_NAME'] = 'Name of the new Theme'; |
|
| 681 |
$TXT['THEME_CURRENT'] = 'current active theme'; |
|
| 682 |
$TXT['THEME_START_COPY'] = 'copy'; |
|
| 683 |
$TXT['THEME_IMPORT_HTT'] = 'Import additional templates'; |
|
| 684 |
$TXT['THEME_SELECT_HTT'] = 'select templates'; |
|
| 685 |
$TXT['THEME_NOMORE_HTT'] = 'no more available'; |
|
| 686 |
$TXT['THEME_START_IMPORT'] = 'import'; |
|
| 687 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 688 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 689 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 690 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 691 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 692 |
|
|
| 679 | 693 |
/* include old languages format */ |
| 680 | 694 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
| 681 | 695 |
{
|
| branches/2.8.x/wb/languages/CS.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'WebStep, s.r.o.'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Přístup'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Rozšíření'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Šablony'; |
| 55 | 53 |
$MENU['USERS'] = 'Uživatelé'; |
| 56 | 54 |
$MENU['VIEW'] = 'Zobrazit'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Registrace účtu'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Akce'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Aktivní'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG editor'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG styl'; |
| 392 | 388 |
$TEXT['YES'] = 'Ano'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Přidat skupinu'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Nahrát soubor(y)'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Nelze použít ../ v cílovém adresáři'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' soubory byly úspěšně nahrány'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Omlouváme se, ale tento formulář dosáhl limitu povolených odeslání pro tuto hodinu. Prosím zkuste to znovu v další hodině..'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Kontrolní kód (známý jako Captcha) neodpovídá. Pokud máte problémy s přečtením tohoto kódu, kontaktujte <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Kontrolní kód (známý jako Captcha) neodpovídá. Pokud máte problémy s přečtením tohoto kódu, kontaktujte <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Musíte vyplnit následující pole'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Stránka byla úspěšně přidána'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Záhlaví stránky bylo úspěšně přidáno'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Vítejte v Administrační části'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Pozn.: změna šablony se provádí v sekci Nastavení'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Uživatel byl úspěšně uložen'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'Spravovat skupiny uživatelů a jejich oprávnění...'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'Máte otázku? Hledejte odpověď...'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/SE.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Markus Eriksson, Peppe Bergqvist'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Rättigheter'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Tillägg'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Mallar'; |
| 55 | 53 |
$MENU['USERS'] = 'Användare'; |
| 56 | 54 |
$MENU['VIEW'] = 'Visa sida'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Kontoregistrering'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Åtgärder'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Aktiv'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG redigerare'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG stil'; |
| 392 | 388 |
$TEXT['YES'] = 'Ja'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Skapa ny grupp'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Ladda Upp fil(er)'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Kan inte ha ../ i mappens mål'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' filerna laddades upp'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Tyvärr, detta formulär har skickats för många gånger inom denna timme. Försök igen om ett tag.'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Verifieringsnumret (också känt som Captcha) som du angav är felaktigt. Om du har problem med att läsa ut Captcha, vänligen sänd email till: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Verifieringsnumret (också känt som Captcha) som du angav är felaktigt. Om du har problem med att läsa ut Captcha, vänligen sänd email till: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Du måste fylla i följande fält'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Sidan lades till'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Sidans huvud lades till'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Välkommen till administrationen av WebsiteBaker'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Observera: för att ändra Mall, måste du gå till Sektionen Inställningar'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Användaren sparades'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'Behandla användargrupper och deras systemåtkomst...'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'Hitta svar på dina frågor (på engelska)...'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/ES.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Samuel Mateo, Jr. | samuelmateo.com'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Acceso'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Add-ons'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Plantillas'; |
| 55 | 53 |
$MENU['USERS'] = 'Usuarios'; |
| 56 | 54 |
$MENU['VIEW'] = 'Vista Preliminar'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Abrir Cuenta'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Acciones'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Activo'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'Editor WYSIWYG'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG'; |
| 392 | 388 |
$TEXT['YES'] = 'Si'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Agregar Grupo'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Subir Archivo(s)'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'No puede tener ../ en el nombre de carpeta'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' archivos recibidos correctamente'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Disculpe este formulario ha sido enviado demasiadas veces seguidas. Vuelva a intentarlo en una hora.'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'El número de verificación que ha introducido es incorrecto. Si estás teniendo problemas leyéndolo, por favor, envíe un e-mail a: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'El número de verificación que ha introducido es incorrecto. Si estás teniendo problemas leyéndolo, por favor, envíe un e-mail a: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Debe completar los siguiente campos'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Página agregada'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Encabezado de Página agregado'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Bienvenido a la consola de Administración'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Atención: para cambiar la plantilla ir a la sección de Configuración'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Usuario guardado'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'Administrar groups de usuarios y sus permisos...'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'Respuestas a tus preguntas...'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/FR.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Marin Susac'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Accès'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Extensions'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Thèmes'; |
| 55 | 53 |
$MENU['USERS'] = 'Utilisateurs'; |
| 56 | 54 |
$MENU['VIEW'] = 'Voir le site'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Créer un compte'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Actions'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Actif'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'Editeur WYSIWYG'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'Style WYSIWYG'; |
| 392 | 388 |
$TEXT['YES'] = 'Oui'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Les paramètres requis de l'extension ne sont pas vérifiés'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Ajouter une sous-page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Ajouter un groupe'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Uploader des fichiers'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Réglages de l'envoi de mail'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Impossible d'avoir ../ dans le nom du dossier cible'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = 'Les fichiers ont été uploadés avec succès'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Désolé mais ce formulaire est utilisé trop fréquemment en ce moment. Afin de nous aider à lutter contre le spam, merci de réessayer plus tard'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Le numéro de vérification (Captcha) que vous avez entré est incorrect. Si vous rencontrez des problèmes quant à la lecture de ce numéro, merci d'envoyer un email à : <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Le numéro de vérification (Captcha) que vous avez entré est incorrect. Si vous rencontrez des problèmes quant à la lecture de ce numéro, merci d'envoyer un email à : <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Vous devez renseigner les champs suivants'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Page ajoutée avec succès'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'L'entête de la page a été ajouté avec succès'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Bienvenue dans la zone d'administration'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Pour modifier le thème du site, vous devez vous rendre dans la rubrique Réglages'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Utilisateur sauvegardé avec succès'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'Accès aux outils d'administration de WebsiteBaker...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'Gestions des groupes d'utilisateurs et des permissions'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'Aide et FAQ sur l'utilisation du site'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/ET.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Heiko Häng'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Ligipääs'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Lisad'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Kujundused'; |
| 55 | 53 |
$MENU['USERS'] = 'Kasutajad'; |
| 56 | 54 |
$MENU['VIEW'] = 'Vaata'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Registreerimine'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Actions'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Aktiivne'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG Editor'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG Stiil'; |
| 392 | 388 |
$TEXT['YES'] = 'Jah'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Lisa Grupp'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Saada Fail(id)'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Cannot have ../ in the folder target'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' failid edukalt üles laetud'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Vabandame, see vorm on juba liiga palju kordi selle tunni jooksul saadetud. Palun proovi järgmine tund uuesti.'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Sa pead detailid sisestama järgnevatesse lahtritesse'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Lehekülg edukalt lisatud'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Lehekülje päis edukalt lisatud'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Teretulemast WebsiteBaker Administratsiooni'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Märge: kujunduse muutmiseks sa pead minema Seadete sektsiooni'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Kasutaja edukalt salvestatud'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'Halda kasutajate gruppe ja nende õiguseid...'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'On küsimusi? Leia oma vastus...'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/HR.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Vedran Presecki'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Pristup'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Dodaci'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Predlošci'; |
| 55 | 53 |
$MENU['USERS'] = 'Korisnici'; |
| 56 | 54 |
$MENU['VIEW'] = 'Pogled'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Logiranje na Account'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Akcije'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Aktivan'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG Editor'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG Style'; |
| 392 | 388 |
$TEXT['YES'] = 'Da'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Dodaj grupu'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Nasnimi fileove'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Ne može ../ u cilj direktorija'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' fileovi su supješno nasnimljeni'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Ova forma je pregledavana previše puta u jednom satu. Molimo pokušajte slijedeæi sat.'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Broj provjere (poznat kao Captcha) netoèno je unešen. Ako imate problema s èitanjem Captcha, molimo pošaljite email: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Broj provjere (poznat kao Captcha) netoèno je unešen. Ako imate problema s èitanjem Captcha, molimo pošaljite email: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Morate unjeti detaljen podatke u nadoilazeæa polja'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Stranica je uspješno dodana'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Zaglavlje stranice uspješno je dodano'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Dobro došli u WebsiteBaker administraciju'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Obavijest: Za promjenu predloška idite na dio s Postavkama'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Korisnik je snimljen uspješno'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'Upravljajte grupama korisnika i njihovim sistemskim dopuštenjima.'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'Imate pitanje? Pronaðite odgovor...'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/NL.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Bramus, CodeALot, Luckyluke, Argos'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Toegang'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Extra’s'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Templates'; |
| 55 | 53 |
$MENU['USERS'] = 'Gebruikers'; |
| 56 | 54 |
$MENU['VIEW'] = 'Website'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Aanmelden als gebruiker'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Acties'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Actief'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG-editor'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG-stijl'; |
| 392 | 388 |
$TEXT['YES'] = 'Ja'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Module voldoet niet aan de eisen'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Toevoegen subpagina'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Toevoegen groep'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Upgraden/inschakelen taalbestand'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Uploaden bestanden'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer-instellingen'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Fout tijdens het updaten van de add-onbestanden.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Taalbestanden succesvol herladen'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTIE!</strong> Om veiligheidsredenen dient u de taalbestanden in de folder /languages/ via FTP te uploaden en vervolgens de Upgrade-functie te gebruiken om ze aan het systeem toe te voegen.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Gebruik van ../ in de map is niet toegestaan'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' geupload'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Dit formulier is te vaak verstuurd binnen dit uur. Probeert u het over een uur nog eens.'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Het verificatienummer (ook wel Captcha genoemd) dat u hebt ingevoerd is incorrect. Als u de Captcha niet goed kunt lezen, stuur dan een e-mail naar: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Het verificatienummer (ook wel Captcha genoemd) dat u hebt ingevoerd is incorrect. Als u de Captcha niet goed kunt lezen, stuur dan een e-mail naar: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'De volgende velden zijn verplicht'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Pagina toegevoegd'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Paginatitel opgeslagen'; |
| ... | ... | |
| 633 | 625 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 634 | 626 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Welkom bij het websitebeheer'; |
| 635 | 627 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Attentie: om de template aan te passen moet u naar de instellingensectie'; |
| 628 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 629 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 630 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 631 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 632 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 636 | 633 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 637 | 634 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 638 | 635 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 656 | 653 |
$MESSAGE['USERS_SAVED'] = 'Gebruiker opgeslagen'; |
| 657 | 654 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 658 | 655 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 659 |
|
|
| 660 |
/* OVERVIEW */ |
|
| 661 | 656 |
$OVERVIEW['ADMINTOOLS'] = 'Diverse extra beheerinstellingen.'; |
| 662 | 657 |
$OVERVIEW['GROUPS'] = 'Beheren van de gebruikersgroepen en hun rechten.'; |
| 663 | 658 |
$OVERVIEW['HELP'] = 'Uitgebreide hulp voor het gebruik van dit systeem.'; |
| ... | ... | |
| 677 | 672 |
{
|
| 678 | 673 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 679 | 674 |
} |
| 675 |
|
|
| branches/2.8.x/wb/languages/PL.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Marek Stepien;'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Dostep'; |
| 37 | 35 |
$MENU['ADDON'] = 'Dodatek'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Dodatki'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Szablony'; |
| 55 | 53 |
$MENU['USERS'] = 'Uzytkownicy'; |
| 56 | 54 |
$MENU['VIEW'] = 'Podglad'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Nowe konto'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Czynnosci'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Aktywne'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'Edytor WYSIWYG'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'Styl WYSIWYG'; |
| 392 | 388 |
$TEXT['YES'] = 'Tak'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Wymagania dodatku nie zostaly spelnione'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Dodaj strone dziecko"'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Dodaj grupe'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Zaladuj plik(i)'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Ustawienia rozsylania maili'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Blad podczas aktualizacji dodatku.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Pomyslnie zainstalowano ponownie pliki jezykowe'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>UWAGA!</strong> Ze wzgledów bezpieczenstwa przeslanie plików jezykowych do folderu /languages/ powinno odbyc sie tylko przez FTP.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Folder docelowy nie moze zawierac ../'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' pliki zostaly pomyslnie zaladowane'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Niestety, ten formularz zostal wyslany zbyt wiele razy w ciagu tej godziny. Prosimy spróbowac ponownie za godzine.'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Wprowadzony numer weryfikacyjny (tzw. Captcha) jest nieprawidlowy. Jesli masz problemy z odczytaniem Captcha, napisz do: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Wprowadzony numer weryfikacyjny (tzw. Captcha) jest nieprawidlowy. Jesli masz problemy z odczytaniem Captcha, napisz do: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Nalezy wprowadzic szczególy dla nastepujacych pól'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Strona zostala dodana'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Naglówek strony zostal dodany'; |
| ... | ... | |
| 634 | 626 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 635 | 627 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Witamy w panelu administracyjnym WebsiteBakera'; |
| 636 | 628 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Uwaga: aby zmienic szablon, nalezy przejsc do sekcji Ustawienia'; |
| 629 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 630 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 631 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 632 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 633 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 637 | 634 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 638 | 635 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 657 | 654 |
$MESSAGE['USERS_SAVED'] = 'Uzytkownik zostal zapisany'; |
| 658 | 655 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 660 |
|
|
| 661 |
/* OVERVIEW */ |
|
| 662 | 657 |
$OVERVIEW['ADMINTOOLS'] = 'Narzedzia administracji WebsiteBakera...'; |
| 663 | 658 |
$OVERVIEW['GROUPS'] = 'Zarzadzaj grupami uzytkowników i ich uprawnieniami systemowymi...'; |
| 664 | 659 |
$OVERVIEW['HELP'] = 'Masz pytania? Znajdz odpowiedzi...'; |
| ... | ... | |
| 678 | 673 |
{
|
| 679 | 674 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 680 | 675 |
} |
| 676 |
|
|
| branches/2.8.x/wb/languages/HU.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Zsolt + Robert'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Jogosultságok'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Kiegészít-?-?'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Sablonok'; |
| 55 | 53 |
$MENU['USERS'] = 'Felhasználók'; |
| 56 | 54 |
$MENU['VIEW'] = 'Portál nézet'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Fiók Létrehozás'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Tevékenységek'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Aktív'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG Szerkesztç'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG Stílus'; |
| 392 | 388 |
$TEXT['YES'] = 'Igen'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Kiegészítàkövetelmények nem megfelel-?-?k'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Csoport módosítása'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Fájl(ok) feltöltése'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'LevelezàBeállítások'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Nem lehet ../ in könyvtár névben'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' file sikeresen feltöltve'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Sajnáljuk, de ez az -?-¦rlap túl sokszor lett kitöltve egy óran belül! Kérem próbálja meg egy óra múlva'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'A megadott ellenörzàkód (vagy más néven Captcha) hibás. Ha problémád van elolvasni a Captcha kódot, kümailt ide: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'A megadott ellenörzàkód (vagy más néven Captcha) hibás. Ha problémád van elolvasni a Captcha kódot, kümailt ide: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'A következàmez-?-?et kötelezàkitöltenie'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Lap sikeresen hozzáadva'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Lap címsor sikeresen hozzáadva'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = '¤v a WebsiteBaker Admin felületén'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Figyelem: A sablon megváltoztatását a beállításokban teheti meg'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Felhasználó sikeresen mentve'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'WebsiteBaker adminisztrációs eszközök...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'Csoportok és azok rendszer jogainak kezelése...'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'Kérdésed van? itt találsz választ... (Angol)'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/IT.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Roberto Rossi'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Accesso'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Add-ons'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Templates'; |
| 55 | 53 |
$MENU['USERS'] = 'Utenti'; |
| 56 | 54 |
$MENU['VIEW'] = 'Visualizza'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Iscrizione Account'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Azioni'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Attivo'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG Editor'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG Style'; |
| 392 | 388 |
$TEXT['YES'] = 'Sì'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Aggiungi Gruppo'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Carica i File'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Impossibile avere ../ nella cartella di destinazione'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' file sono stati caricati con successo'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Spiacente: hai compilato questa form troppe volte nell\'ultima ora.'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Il numero di controllo (chiama Captcha) che hai inserito non è valido. Se hai problemi con la lettura del Captcha, invia un email email: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Il numero di controllo (chiama Captcha) che hai inserito non è valido. Se hai problemi con la lettura del Captcha, invia un email email: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Devi inserire tutti i dati nei seguenti campi'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Pagina aggiunta'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Pagina intestazione aggiunta'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Benvenuto alla pagina di Amministrazione di WebsiteBaker'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Per cambiare il Template andare alla sezione Impostazioni'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Utente salvato'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'Gestisci gruppi utenti e permessi...'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'Trova risposte alle tue domande...'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/NO.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Odd Egil Hansen (oeh)'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Tilgang'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Tillegg'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Maler'; |
| 55 | 53 |
$MENU['USERS'] = 'Brukere'; |
| 56 | 54 |
$MENU['VIEW'] = 'Forhåndsvis'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Konto Registrering'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Valg'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Aktivt'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG Editor'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG Stil'; |
| 392 | 388 |
$TEXT['YES'] = 'Ja'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Kravene for installering av denne modulen er ikke oppfylt'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Legg til ny underside'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Legg til Gruppe'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Last opp fil(er)'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Innstillinger for e-post senderen'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Kan ikke ha ../ i katalog målet'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' Lykkes å laste opp filene'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Beklager, dette skjemaet har blitt sendt for mange ganger denne timen. Vennligst prøv igjen om en time.'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Bekreftelsesnummeret (også kjent som Captcha) som du skrev inn er feil. Hvis du har problemer med å lese Captcha, vennligst kontakt: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Bekreftelsesnummeret (også kjent som Captcha) som du skrev inn er feil. Hvis du har problemer med å lese Captcha, vennligst kontakt: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Du må skrive inn detaljer for følgende felt'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Lykkes å legge til siden'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Lykkes å legge til side overskrift'; |
| ... | ... | |
| 631 | 623 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 632 | 624 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Velkommen til WebsiteBaker Administrasjon'; |
| 633 | 625 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Merk: For å endre malen må man gjøre dette i Instillinger seksjonen'; |
| 626 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 627 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 628 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 629 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 630 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 634 | 631 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 635 | 632 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 636 | 633 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 654 | 651 |
$MESSAGE['USERS_SAVED'] = 'Lykkes å lagre bruker'; |
| 655 | 652 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 656 | 653 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 657 |
|
|
| 658 |
/* OVERVIEW */ |
|
| 659 | 654 |
$OVERVIEW['ADMINTOOLS'] = 'Gå inn på WebsiteBaker sine administrasjonsverktøy...'; |
| 660 | 655 |
$OVERVIEW['GROUPS'] = 'Administrer grupper og deres system adgang...'; |
| 661 | 656 |
$OVERVIEW['HELP'] = 'Har du et spørsmål? Finn svaret...'; |
| ... | ... | |
| 675 | 670 |
{
|
| 676 | 671 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 677 | 672 |
} |
| 673 |
|
|
| branches/2.8.x/wb/languages/SK.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Michal Kurtulik - YONIX.SK'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Prístup'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Rozšírenie'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Šablony'; |
| 55 | 53 |
$MENU['USERS'] = 'Užívatelia'; |
| 56 | 54 |
$MENU['VIEW'] = 'Zobraziť'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Registrácia účtu'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Akcia'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Aktívny'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG editor'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG styl'; |
| 392 | 388 |
$TEXT['YES'] = 'Ano'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Nie sú splnené požiadavky pre rozšírenie'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Pridať skupinu'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Nahrať súbor(y)'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Nastavenia E-Mailu'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Nejde použiť ../ v cielovom adresáry'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' súbory boly úspešne nahráné'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Ospravedlňujeme sa, ale tento formulár dosiahol limitu povolených odeslaní pre túto hodinu. Prosím skúste to znovu v dalšiej hodine..'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Kontrolný kód (známý ako Captcha) nezodpovedá. Pokiaľ máte problémy s prečítaním tohoto kódu, kontaktujte <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Kontrolný kód (známý ako Captcha) nezodpovedá. Pokiaľ máte problémy s prečítaním tohoto kódu, kontaktujte <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Musíte vyplniť následujúce pole'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Stránka bola úspešne pridaná'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Záhlavie stránky bolo úspešne pridané'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Vitajte v administratívnej časti'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Pozn.: zmena šablony sa provádza v sekcii Nastavenia'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Užívateľ bol úspešne uložený'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'Administračné nástroje...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'Spravovať skupiny uživatelov a ich oprávnení...'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'Máte otázku? Hľadajte odpoveď...'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/LV.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Krišjanis Rijnieks'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Piekluve'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Papildinajumi'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'šabloni'; |
| 55 | 53 |
$MENU['USERS'] = 'Lietotaji'; |
| 56 | 54 |
$MENU['VIEW'] = 'Apskatit'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Registreties'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Darbibas'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Aktivs'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG redaktors'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG stils'; |
| 392 | 388 |
$TEXT['YES'] = 'Ja'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Pievienot grupu'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Augšupieladet datni(-es)'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Nav iespejams ieklaut ../ mapes merki (target)'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' datnes tika veiksmigi augšupieladetas'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Atvaino, ši forma ir tikusi aizpildita parak daudz reižu šis stundas laika. Ludzu pamegini velreiz pec stundas.'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Ievaditais parbaudes numurs ir nepareizs. Ja radušas problemas ar parbaudes koda nolasišanu, suti zinu uz: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Ievaditais parbaudes numurs ir nepareizs. Ja radušas problemas ar parbaudes koda nolasišanu, suti zinu uz: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Ievadi detalas sekojošajos laukos'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Lapa veiksmigi pievienota'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Lapas virsraksts pievienots veiksmigi'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Esi sveicinats WebsiteBaker administracija'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Ludzu iegaume: lai mainitu šablonu, jadotas uz iestatijumu sadalu'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Lietotajs veiksmigi saglabats'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'Menedžet lietotaju grupas un noteikt to atlaujas...'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'Jautajumi? Atrodi atbildi...'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/CA.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Carles Escrig (simkin)'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Accés'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Afegits'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Plantilles'; |
| 55 | 53 |
$MENU['USERS'] = 'Usuaris'; |
| 56 | 54 |
$MENU['VIEW'] = 'Veure'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Registre de Compte'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Accions'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Actiu'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG Editor'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'Estil WYSIWYG'; |
| 392 | 388 |
$TEXT['YES'] = 'Sí'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Afegeix Grup'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Penja Fitxer(s)'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'No es pot tenir ../ a la carpeta de destí'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' fitxers han estat penjats amb èxit'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Ho sentim, aquest formulari ha estat enviat massa vegades durant l\'última hora. Per favor torneu-ho a intentar d\'ací una hora.'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Heu d\'introduir les dades per als següents camps'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Pàgina afegida amb èxit'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Capçalera de pàgina afegida amb èxit'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Benvingut/da al Panell de Control de WebsiteBaker'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Avís: per a canviar la plantilla heu d\'anar a la secció Paràmetres'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Usuari desat amb èxit'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'Administreu els grups d\'usuaris i els seus permisos de sistema...'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'Teniu una pregunta? Trobeu la vostra resposta...'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/PT.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Daniel Neto'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Acessos'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Add-ons'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Temas (Templates)'; |
| 55 | 53 |
$MENU['USERS'] = 'Usuários'; |
| 56 | 54 |
$MENU['VIEW'] = 'Visualizar'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Assinatura de Conta'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'A&ccdil;ões'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Ativo'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG Editor'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG Style'; |
| 392 | 388 |
$TEXT['YES'] = 'Sim'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Adicionar Grupo'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Enviar Arquivo(s)'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Não pode possuir ../ na pasta alvo'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' arquivos enviados com sucesso'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Desculpe, este formulário foi submetido várias vezes nessa hora. Favor tentar novamente dentro de uma hora.'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'O Número de Verifica&ccdil;ão (conhecido como Captcha) que você entrou, é inválido. Se estiver tendo problemas usando o Captcha, envie uma mensagem para: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'O Número de Verifica&ccdil;ão (conhecido como Captcha) que você entrou, é inválido. Se estiver tendo problemas usando o Captcha, envie uma mensagem para: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Você precisa preencher os seguintes campos'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Página adicionada com sucesso'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Cabe&ccdil;alho da Página adicionado com sucesso.'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Bem-Vindo à Administra&ccdil;ão do WebsiteBaker'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Aten&ccdil;ão: para alterar o tema (template) você precisa ir até a sessão Configura&ccdil;ões'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Usuário armazenado com sucesso'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'Gerencie os grupos de usuários e suas permissões de sistema...'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'Dúvidas? Encontre respostas...'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/DA.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Allan Christensen'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Adgang'; |
| 37 | 35 |
$MENU['ADDON'] = 'Tilføjelse'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Tilføjelser'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Skabeloner'; |
| 55 | 53 |
$MENU['USERS'] = 'Brugere'; |
| 56 | 54 |
$MENU['VIEW'] = 'Vis'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Kontoregistrering'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Handlinger'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Aktiv'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG-editor'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG-stil'; |
| 392 | 388 |
$TEXT['YES'] = 'Ja'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On krav er ikke opfyldt'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Tilføj underside'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Tilføj gruppe'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Sprogopgradering'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Overfør fil(er)'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'E-mail-indstillinger'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Fejl under opdatering af tilføjelse.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Sprog indlæst'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>PAS På!</strong> Af sikkerhedsgrunde bør sprogfiler kun indlæses i folderen /languages/ med FTP, og opgraderingsfunktionen bør bruges til registrering/opdatering.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Kan ikke have ../ i placeringen af biblioteket (mappen)'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = 'filer blev overført'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Beklager! Denne formular er blevet afsendt for mange gange indenfor den sidste time, og du vil derfor blive afvist - Prøv igen om en times tid!'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Verifikationstallene (også kendt som Captcha) som du tastede er ikke korrekte. Hvis du har problemer med at læse Captha tallene, så kontakt venligst sidens Administrator på denne mailadresse: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'Verifikationstallene (også kendt som Captcha) som du tastede er ikke korrekte. Hvis du har problemer med at læse Captha tallene, så kontakt venligst sidens Administrator på denne mailadresse: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Du skal udfylde følgende felter:'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Siden er tilføjet'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Overskrift til side tilføjet'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Velkommen til administration af din WebsiteBaker'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'OBS: For at ændre skabelonen skal du gå til punktet indstillinger'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Brugeren er gemt'; |
| 659 | 656 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
| 660 | 657 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 661 |
|
|
| 662 |
/* OVERVIEW */ |
|
| 663 | 658 |
$OVERVIEW['ADMINTOOLS'] = 'WebsiteBaker administrationsværktøjer...'; |
| 664 | 659 |
$OVERVIEW['GROUPS'] = 'Administrér brugergrupper og deres systemrettigheder...'; |
| 665 | 660 |
$OVERVIEW['HELP'] = 'Spørgsmål? Find dine svar her...'; |
| ... | ... | |
| 679 | 674 |
{
|
| 680 | 675 |
include(WB_PATH.'/languages/old.format.inc.php'); |
| 681 | 676 |
} |
| 677 |
|
|
| branches/2.8.x/wb/languages/TR.php | ||
|---|---|---|
| 31 | 31 |
$language_platform = '2.8.x'; |
| 32 | 32 |
$language_author = 'Atakan KOÇ'; |
| 33 | 33 |
$language_license = 'GNU General Public License'; |
| 34 |
|
|
| 35 |
/* MENU */ |
|
| 36 | 34 |
$MENU['ACCESS'] = 'Giriþ'; |
| 37 | 35 |
$MENU['ADDON'] = 'Add-on'; |
| 38 | 36 |
$MENU['ADDONS'] = 'Eklentiler'; |
| ... | ... | |
| 54 | 52 |
$MENU['TEMPLATES'] = 'Kalýplar'; |
| 55 | 53 |
$MENU['USERS'] = 'Kullanýcýlar'; |
| 56 | 54 |
$MENU['VIEW'] = 'Görüntüle'; |
| 57 |
|
|
| 58 |
/* TEXT */ |
|
| 59 | 55 |
$TEXT['ACCOUNT_SIGNUP'] = 'Kullýcý Kayýt Ol'; |
| 60 | 56 |
$TEXT['ACTIONS'] = 'Hareketler'; |
| 61 | 57 |
$TEXT['ACTIVE'] = 'Aktif'; |
| ... | ... | |
| 390 | 386 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG Editor'; |
| 391 | 387 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG Style'; |
| 392 | 388 |
$TEXT['YES'] = 'Evet'; |
| 393 |
|
|
| 394 |
/* HEADING */ |
|
| 395 | 389 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
| 396 | 390 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
| 397 | 391 |
$HEADING['ADD_GROUP'] = 'Grup Ekle'; |
| ... | ... | |
| 437 | 431 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
| 438 | 432 |
$HEADING['UPLOAD_FILES'] = 'Dosya Yükle'; |
| 439 | 433 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings'; |
| 440 |
|
|
| 441 |
/* MESSAGE */ |
|
| 442 | 434 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
| 443 | 435 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
| 444 | 436 |
$MESSAGE['ADDON_MANUAL_FTP_LANGUAGE'] = '<strong>ATTENTION!</strong> For safety reasons uploading languages files in the folder/languages/ only by FTP and use the Upgrade function for registering or updating.'; |
| ... | ... | |
| 540 | 532 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Cannot have ../ in the folder target'; |
| 541 | 533 |
$MESSAGE['MEDIA_UPLOADED'] = ' Dosyalar baþarýlý bir þekilde yüklendi'; |
| 542 | 534 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Sorry, this form has been submitted too many times so far this hour. Please retry in the next hour.'; |
| 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
| 535 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: <a href="mailto:{SERVER_EMAIL}">{SERVER_EMAIL}</a>';
|
|
| 544 | 536 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'You must enter details for the following fields'; |
| 545 | 537 |
$MESSAGE['PAGES_ADDED'] = 'Sayfa, baþarýlý bir þekilde ekledi'; |
| 546 | 538 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Üst sayfa, baþarýlý bir þekilde ekledi'; |
| ... | ... | |
| 635 | 627 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
| 636 | 628 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Hoþgeldiniz WebsiteBaker Yönetimine'; |
| 637 | 629 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Please note: to change the template you must go to the Settings section'; |
| 630 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 631 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 632 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 633 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 634 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 638 | 635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
| 639 | 636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
| 640 | 637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
| ... | ... | |
| 658 | 655 |
$MESSAGE['USERS_SAVED'] = 'Kullanýcý, baþarýlý bir þekilde kayýt edildi'; |
Also available in: Unified diff
! update language files and rework some core files (read DEVINFOS)
! compress mdcr.js
+ add DEVINFOS Instructions/Informations for modulecoder