Revision 24
Added by Luisehahne about 8 years ago
| CA.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 |
/** |
|
| 2 |
/* |
|
| 3 |
* Copyright (C) 2017 Manuela v.d.Decken <manuela@isteam.de> |
|
| 3 | 4 |
* |
| 4 |
* @category framework |
|
| 5 |
* @package languages |
|
| 6 |
* @author WebsiteBaker Project |
|
| 7 |
* @copyright Ryan Djurovich |
|
| 8 |
* @copyright WebsiteBaker Org. e.V. |
|
| 9 |
* @link http://websitebaker.org/ |
|
| 10 |
* @license http://www.gnu.org/licenses/gpl.html |
|
| 11 |
* @platform WebsiteBaker 2.8.x |
|
| 12 |
* @requirements PHP 5.2.2 and higher |
|
| 13 |
* @version $Id$ |
|
| 14 |
* @filesource $HeadURL$ |
|
| 15 |
* @lastmodified $Date$ |
|
| 5 |
* DO NOT ALTER OR REMOVE COPYRIGHT OR THIS HEADER |
|
| 16 | 6 |
* |
| 7 |
* This program is free software: you can redistribute it and/or modify |
|
| 8 |
* it under the terms of the GNU General Public License as published by |
|
| 9 |
* the Free Software Foundation, version 2 of the License. |
|
| 10 |
* |
|
| 11 |
* This program is distributed in the hope that it will be useful, |
|
| 12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
* GNU General Public License 2 for more details. |
|
| 15 |
* |
|
| 16 |
* You should have received a copy of the GNU General Public License 2 |
|
| 17 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
| 17 | 18 |
*/ |
| 19 |
/** |
|
| 20 |
* Description of CA |
|
| 21 |
* @package CoreTranslation |
|
| 22 |
* @copyright Manuela v.d.Decken <manuela@isteam.de> |
|
| 23 |
* @author Manuela v.d.Decken <manuela@isteam.de> |
|
| 24 |
* @license GNU General Public License 2.0 |
|
| 25 |
* @version 4.0.0 |
|
| 26 |
* @revision $Id$ |
|
| 27 |
* @since File available since 18.10.2017 |
|
| 28 |
* @deprecated no |
|
| 29 |
* @description xxx |
|
| 30 |
*/ |
|
| 31 |
//declare(strict_types = 1); |
|
| 32 |
//declare(encoding = 'UTF-8'); |
|
| 18 | 33 |
|
| 19 |
// Must include code to stop this file being access directly |
|
| 20 |
if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); }
|
|
| 21 |
|
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 22 | 35 |
// Define that this file is loaded |
| 23 |
if(!defined('LANGUAGE_LOADED')) {
|
|
| 24 |
define('LANGUAGE_LOADED', true);
|
|
| 25 |
} |
|
| 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
|
| 26 | 37 |
|
| 27 | 38 |
// Set the language information |
| 28 | 39 |
$language_code = 'CA'; |
| 29 |
$language_name = 'Català'; // Catalan |
|
| 30 |
$language_version = '2.8'; |
|
| 31 |
$language_platform = '2.8.x'; |
|
| 32 |
$language_author = 'Carles Escrig (simkin)'; |
|
| 33 |
$language_license = 'GNU General Public License'; |
|
| 34 |
$MENU['ACCESS'] = 'Accés'; |
|
| 40 |
$language_name = 'Català'; |
|
| 41 |
$language_version = '4.0.0'; |
|
| 42 |
$language_platform = '2.11.0'; |
|
| 43 |
$language_author = 'Manuela v.d.Decken, Dietmar Wöllbrink'; |
|
| 44 |
$language_license = 'GNU General Public License 2.0'; |
|
| 45 |
|
|
| 46 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
|
| 47 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
|
| 48 |
$HEADING['ADD_GROUP'] = 'Afegeix Grup'; |
|
| 49 |
$HEADING['ADD_GROUPS'] = 'Add Groups'; |
|
| 50 |
$HEADING['ADD_HEADING'] = 'Afegeix Encapçalament'; |
|
| 51 |
$HEADING['ADD_PAGE'] = 'Afegeix Pàgina'; |
|
| 52 |
$HEADING['ADD_USER'] = 'Afegeix Usuari'; |
|
| 53 |
$HEADING['ADMINISTRATION_TOOLS'] = 'Administration Tools'; |
|
| 54 |
$HEADING['BROWSE_MEDIA'] = 'Explorar Fitxers'; |
|
| 55 |
$HEADING['CREATE_FOLDER'] = 'Crea Carpeta'; |
|
| 56 |
$HEADING['DEFAULT_SETTINGS'] = 'Paràmetres per Defecte'; |
|
| 57 |
$HEADING['DELETED_PAGES'] = 'Pàgines Esborrades'; |
|
| 58 |
$HEADING['FILESYSTEM_SETTINGS'] = 'Paràmetres del Sistema de Fitxers'; |
|
| 59 |
$HEADING['GENERAL_SETTINGS'] = 'Paràmetres Generals'; |
|
| 60 |
$HEADING['INSTALL_LANGUAGE'] = 'Instal·la Idioma'; |
|
| 61 |
$HEADING['INSTALL_MODULE'] = 'Instal·la Mòdul'; |
|
| 62 |
$HEADING['INSTALL_TEMPLATE'] = 'Instal·la Plantilla'; |
|
| 63 |
$HEADING['INVOKE_LANGUAGE_FILES'] = 'Execute language files manually'; |
|
| 64 |
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually'; |
|
| 65 |
$HEADING['INVOKE_TEMPLATE_FILES'] = 'Execute template files manually'; |
|
| 66 |
$HEADING['LANGUAGE_DETAILS'] = 'Detalls de l\'Idioma'; |
|
| 67 |
$HEADING['MANAGE_SECTIONS'] = 'Administra les Seccions'; |
|
| 68 |
$HEADING['MODIFY_ADVANCED_PAGE_SETTINGS'] = 'Modifica els Paràmetres Avançats de la Pàgina'; |
|
| 69 |
$HEADING['MODIFY_DELETE_GROUP'] = 'Modifica/Esborra Grup'; |
|
| 70 |
$HEADING['MODIFY_DELETE_PAGE'] = 'Modifica/Esborra Pàgina'; |
|
| 71 |
$HEADING['MODIFY_DELETE_USER'] = 'Modifica/Esborra Usuari'; |
|
| 72 |
$HEADING['MODIFY_GROUP'] = 'Modifica Grup'; |
|
| 73 |
$HEADING['MODIFY_GROUPS'] = 'Modify Groups'; |
|
| 74 |
$HEADING['MODIFY_INTRO_PAGE'] = 'Modifica Pàgina Introductòria'; |
|
| 75 |
$HEADING['MODIFY_PAGE'] = 'Modifica Pàgina'; |
|
| 76 |
$HEADING['MODIFY_PAGE_SETTINGS'] = 'Modifica els Paràmetres de la Pàgina'; |
|
| 77 |
$HEADING['MODIFY_USER'] = 'Modifica Usuari'; |
|
| 78 |
$HEADING['MODULE_DETAILS'] = 'Detalls del Mòdul'; |
|
| 79 |
$HEADING['MY_EMAIL'] = 'El meu Correu'; |
|
| 80 |
$HEADING['MY_PASSWORD'] = 'La meua Contrasenya'; |
|
| 81 |
$HEADING['MY_SETTINGS'] = 'Els meus Paràmetres'; |
|
| 82 |
$HEADING['SEARCH_SETTINGS'] = 'Paràmetres de Cerca'; |
|
| 83 |
$HEADING['SERVER_SETTINGS'] = 'Server Settings'; |
|
| 84 |
$HEADING['TEMPLATE_DETAILS'] = 'Detalls de la Plantilla'; |
|
| 85 |
$HEADING['UNINSTALL_LANGUAGE'] = 'Desinstal·la Idioma'; |
|
| 86 |
$HEADING['UNINSTALL_MODULE'] = 'Desinstal·la Mòdul'; |
|
| 87 |
$HEADING['UNINSTALL_TEMPLATE'] = 'Desinstal·la Plantilla'; |
|
| 88 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
|
| 89 |
$HEADING['UPLOAD_FILES'] = 'Penja Fitxer(s)'; |
|
| 90 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings'; |
|
| 91 |
$MENU['ACCESS'] = 'Accés'; |
|
| 35 | 92 |
$MENU['ADDON'] = 'Add-on'; |
| 36 | 93 |
$MENU['ADDONS'] = 'Afegits'; |
| 37 | 94 |
$MENU['ADMINTOOLS'] = 'Admin-Tools'; |
| ... | ... | |
| 44 | 101 |
$MENU['LOGIN'] = 'Entrar'; |
| 45 | 102 |
$MENU['LOGOUT'] = 'Eixir'; |
| 46 | 103 |
$MENU['MEDIA'] = 'Fitxers'; |
| 47 |
$MENU['MODULES'] = 'Mòduls'; |
|
| 48 |
$MENU['PAGES'] = 'Pàgines'; |
|
| 104 |
$MENU['MODULES'] = 'Mòduls'; |
|
| 105 |
$MENU['MY_PROFILE'] = 'My Profile'; |
|
| 106 |
$MENU['PAGES'] = 'Pàgines'; |
|
| 49 | 107 |
$MENU['PREFERENCES'] = 'Perfil'; |
| 50 |
$MENU['SETTINGS'] = 'Paràmetres';
|
|
| 108 |
$MENU['SETTINGS'] = 'Paràmetres';
|
|
| 51 | 109 |
$MENU['START'] = 'Inici'; |
| 52 | 110 |
$MENU['TEMPLATES'] = 'Plantilles'; |
| 53 | 111 |
$MENU['USERS'] = 'Usuaris'; |
| 54 | 112 |
$MENU['VIEW'] = 'Veure'; |
| 113 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
| 114 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
|
| 115 |
$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.'; |
|
| 116 |
$MESSAGE['ADDON_MANUAL_FTP_WARNING'] = 'Warning: Existing module database entries will get lost. '; |
|
| 117 |
$MESSAGE['ADDON_MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation functions <tt>install</tt>, <tt>upgrade</tt> or <tt>uninstall</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module functions manually for modules uploaded via FTP below.'; |
|
| 118 |
$MESSAGE['ADDON_MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.'; |
|
| 119 |
$MESSAGE['ADDON_MANUAL_RELOAD_WARNING'] = 'Warning: Existing module database entries will get lost. '; |
|
| 120 |
$MESSAGE['ADDON_MODULES_RELOADED'] = 'Modules reloaded successfully'; |
|
| 121 |
$MESSAGE['ADDON_OVERWRITE_NEWER_FILES'] = 'Overwrite newer Files'; |
|
| 122 |
$MESSAGE['ADDON_PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
| 123 |
$MESSAGE['ADDON_RELOAD'] = 'Update database with information from Add-on files (e.g. after FTP upload).'; |
|
| 124 |
$MESSAGE['ADDON_TEMPLATES_RELOADED'] = 'Templates reloaded successfully'; |
|
| 125 |
$MESSAGE['ADMIN_INSUFFICIENT_PRIVELLIGES'] = 'No teniu privilegis suficients per estar ací'; |
|
| 126 |
$MESSAGE['FORGOT_PASS_ALREADY_RESET'] = 'La contrasenya no es pot reiniciar més d\'un cop per hora, disculpeu'; |
|
| 127 |
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'No ha estat possible enviar la contrasenya, per favor contacteu amb l\'administrador del sistema'; |
|
| 128 |
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'El correu que heu introduït no s\'ha trobat a la base de dades'; |
|
| 129 |
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Per favor introduïu la vostra adreça de correu a baix'; |
|
| 130 |
$MESSAGE['FORGOT_PASS_PASSWORD_RESET'] = 'Your loginname and password have been sent to your email address'; |
|
| 131 |
$MESSAGE['FRONTEND_SORRY_NO_ACTIVE_SECTIONS'] = 'Sorry, no active content to display'; |
|
| 132 |
$MESSAGE['FRONTEND_SORRY_NO_VIEWING_PERMISSIONS'] = 'Ho sentim, no teniu permisos per a veure aquesta pàgina'; |
|
| 133 |
$MESSAGE['GENERIC_ALREADY_INSTALLED'] = 'Ja està instal·lat'; |
|
| 134 |
$MESSAGE['GENERIC_BAD_PERMISSIONS'] = 'No s\'ha pogut escriure al directori de destí'; |
|
| 135 |
$MESSAGE['GENERIC_BE_PATIENT'] = 'Please be patient.'; |
|
| 136 |
$MESSAGE['GENERIC_CANNOT_UNINSTALL'] = 'No s\'ha pogut desinstal·lar'; |
|
| 137 |
$MESSAGE['GENERIC_CANNOT_UNINSTALL_IN_USE'] = 'No s\'ha pogut desinstal·lar: s\'està usant el fitxer seleccionat'; |
|
| 138 |
$MESSAGE['GENERIC_CANNOT_UNINSTALL_IN_USE_TMPL'] = '<br /><br />{{type}} <b>{{type_name}}</b> could not be uninstalled, because it is still in use on {{pages}}.<br /><br />';
|
|
| 139 |
$MESSAGE['GENERIC_CANNOT_UNINSTALL_IN_USE_TMPL_PAGES'] = 'this page;these pages'; |
|
| 140 |
$MESSAGE['GENERIC_CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE'] = 'Can\'t uninstall the template <b>{{name}}</b>, because it is the default template!';
|
|
| 141 |
$MESSAGE['GENERIC_CANNOT_UNINSTALL_IS_DEFAULT_THEME'] = 'Can\'t uninstall the template <b>{{name}}</b>, because it is the default backend theme!';
|
|
| 142 |
$MESSAGE['GENERIC_CANNOT_UNZIP'] = 'No s\'ha pogut descomprimir el fitxer'; |
|
| 143 |
$MESSAGE['GENERIC_CANNOT_UPLOAD'] = 'No s\'ha pogut penjar el fitxer'; |
|
| 144 |
$MESSAGE['GENERIC_COMPARE'] = ' successfully'; |
|
| 145 |
$MESSAGE['GENERIC_ERROR_OPENING_FILE'] = 'Error opening file.'; |
|
| 146 |
$MESSAGE['GENERIC_FAILED_COMPARE'] = ' failed'; |
|
| 147 |
$MESSAGE['GENERIC_FILE_TYPE'] = 'Per favor recordeu que el fitxer que pengeu ha d\'estar en un dels següents formats:'; |
|
| 148 |
$MESSAGE['GENERIC_FILE_TYPES'] = 'Per favor recordeu que els fitxers que pengeu han d\'estar en un dels següents formats:'; |
|
| 149 |
$MESSAGE['GENERIC_FILL_IN_ALL'] = 'Per favor torneu arrere i completeu tots els camps'; |
|
| 150 |
$MESSAGE['GENERIC_FORGOT_OPTIONS'] = 'You have selected no choice!'; |
|
| 151 |
$MESSAGE['GENERIC_INSTALLED'] = 'Instal·lat amb èxit'; |
|
| 152 |
$MESSAGE['GENERIC_INVALID'] = 'El fitxer que heu penjat no és vàlid'; |
|
| 153 |
$MESSAGE['GENERIC_INVALID_ADDON_FILE'] = 'Invalid WebsiteBaker installation file. Please check the *.zip format.'; |
|
| 154 |
$MESSAGE['GENERIC_INVALID_LANGUAGE_FILE'] = 'Invalid WebsiteBaker language file. Please check the text file.'; |
|
| 155 |
$MESSAGE['GENERIC_INVALID_MODULE_FILE'] = 'Invalid WebsiteBaker module file. Please check the text file.'; |
|
| 156 |
$MESSAGE['GENERIC_INVALID_TEMPLATE_FILE'] = 'Invalid WebsiteBaker template file. Please check the text file.'; |
|
| 157 |
$MESSAGE['GENERIC_IN_USE'] = ' but used in '; |
|
| 158 |
$MESSAGE['GENERIC_MISSING_ARCHIVE_FILE'] = 'Missing Archiv file!'; |
|
| 159 |
$MESSAGE['GENERIC_MODULE_VERSION_ERROR'] = 'The module is not installed properly!'; |
|
| 160 |
$MESSAGE['GENERIC_NOT_COMPARE'] = ' not possibly'; |
|
| 161 |
$MESSAGE['GENERIC_NOT_INSTALLED'] = 'No està instal·lat'; |
|
| 162 |
$MESSAGE['GENERIC_NOT_UPGRADED'] = 'Actualization not possibly'; |
|
| 163 |
$MESSAGE['GENERIC_PLEASE_BE_PATIENT'] = 'Please be patient, this might take a while.'; |
|
| 164 |
$MESSAGE['GENERIC_PLEASE_CHECK_BACK_SOON'] = 'Per favor torneu-ho a intentar prompte...'; |
|
| 165 |
$MESSAGE['GENERIC_SECURITY_ACCESS'] = 'Security offense!! Access denied!'; |
|
| 166 |
$MESSAGE['GENERIC_SECURITY_OFFENSE'] = 'Security offense!! data storing was refused!!'; |
|
| 167 |
$MESSAGE['GENERIC_UNINSTALLED'] = 'Desinstal·lat amb èxit'; |
|
| 168 |
$MESSAGE['GENERIC_UPGRADED'] = 'Upgraded successfully'; |
|
| 169 |
$MESSAGE['GENERIC_VERSION_COMPARE'] = 'Version comparison'; |
|
| 170 |
$MESSAGE['GENERIC_VERSION_GT'] = 'Upgrade necessary!'; |
|
| 171 |
$MESSAGE['GENERIC_VERSION_LT'] = 'Downgrade'; |
|
| 172 |
$MESSAGE['GENERIC_WEBSITE_LOCKED'] = 'this site is temporarily down for maintenance'; |
|
| 173 |
$MESSAGE['GENERIC_WEBSITE_UNDER_CONSTRUCTION'] = 'Lloc Web en Construcció'; |
|
| 174 |
$MESSAGE['GROUPS_ADDED'] = 'Grup afegit amb èxit'; |
|
| 175 |
$MESSAGE['GROUPS_CONFIRM_DELETE'] = 'Esteu segur de voler esborrar el grup seleccionat (i qualsevol usuari que pertanyi a aquest)?'; |
|
| 176 |
$MESSAGE['GROUPS_DELETED'] = 'Grup esborrat amb èxit'; |
|
| 177 |
$MESSAGE['GROUPS_GROUP_NAME_BLANK'] = 'El nom del grup és buit'; |
|
| 178 |
$MESSAGE['GROUPS_GROUP_NAME_EXISTS'] = 'Group name already exists'; |
|
| 179 |
$MESSAGE['GROUPS_NO_GROUPS_FOUND'] = 'No s\'han trobat grups'; |
|
| 180 |
$MESSAGE['GROUPS_SAVED'] = 'Grup desat amb èxit'; |
|
| 181 |
$MESSAGE['LOGIN_AUTHENTICATION_FAILED'] = 'Loginname or password incorrect'; |
|
| 182 |
$MESSAGE['LOGIN_BOTH_BLANK'] = 'Please enter your loginname and password below'; |
|
| 183 |
$MESSAGE['LOGIN_PASSWORD_BLANK'] = 'Per favor introduïu una contrasenya'; |
|
| 184 |
$MESSAGE['LOGIN_PASSWORD_TOO_LONG'] = 'La contrasenya és massa llarga'; |
|
| 185 |
$MESSAGE['LOGIN_PASSWORD_TOO_SHORT'] = 'La contrasenya és massa curta'; |
|
| 186 |
$MESSAGE['LOGIN_USERNAME_BLANK'] = 'Please enter a loginname'; |
|
| 187 |
$MESSAGE['LOGIN_USERNAME_TOO_LONG'] = 'Supplied loginname to long'; |
|
| 188 |
$MESSAGE['LOGIN_USERNAME_TOO_SHORT'] = 'Supplied loginname to short'; |
|
| 189 |
$MESSAGE['MEDIA_BLANK_EXTENSION'] = 'No heu introduït una extensió de fitxer'; |
|
| 190 |
$MESSAGE['MEDIA_BLANK_NAME'] = 'No heu introduït un nou nom'; |
|
| 191 |
$MESSAGE['MEDIA_CANNOT_DELETE_DIR'] = 'No es pot esborrar la carpeta seleccionada'; |
|
| 192 |
$MESSAGE['MEDIA_CANNOT_DELETE_FILE'] = 'No es pot esborrar el fitxer seleccionat'; |
|
| 193 |
$MESSAGE['MEDIA_CANNOT_RENAME'] = 'No s\'ha pogut canviar el nom'; |
|
| 194 |
$MESSAGE['MEDIA_CONFIRM_DELETE'] = 'Esteu segur que voleu esborrar el següent fitxer o carpeta?'; |
|
| 195 |
$MESSAGE['MEDIA_DELETED_DIR'] = 'Carpeta esborrada amb èxit'; |
|
| 196 |
$MESSAGE['MEDIA_DELETED_FILE'] = 'Fitxer esborrat amb èxit'; |
|
| 197 |
$MESSAGE['MEDIA_DIR_ACCESS_DENIED'] = 'Specified directory does not exist or is not allowed.'; |
|
| 198 |
$MESSAGE['MEDIA_DIR_DOES_NOT_EXIST'] = 'Directory does not exist'; |
|
| 199 |
$MESSAGE['MEDIA_DIR_DOT_DOT_SLASH'] = 'No es pot incloure ../ al nom de la carpeta'; |
|
| 200 |
$MESSAGE['MEDIA_DIR_EXISTS'] = 'Ja existeix una carpeta amb el nom que heu introduït'; |
|
| 201 |
$MESSAGE['MEDIA_DIR_MADE'] = 'Carpeta creada amb èxit'; |
|
| 202 |
$MESSAGE['MEDIA_DIR_NOT_MADE'] = 'No s\'ha pogut crear la carpeta'; |
|
| 203 |
$MESSAGE['MEDIA_FILE_EXISTS'] = 'Ja existeix un fitxer amb el nom que heu introduït'; |
|
| 204 |
$MESSAGE['MEDIA_FILE_NOT_FOUND'] = 'Fitxer no trobat'; |
|
| 205 |
$MESSAGE['MEDIA_NAME_DOT_DOT_SLASH'] = 'No es pot incloure ../ al nom'; |
|
| 206 |
$MESSAGE['MEDIA_NAME_INDEX_PHP'] = 'No es pot usar index.php com a nom'; |
|
| 207 |
$MESSAGE['MEDIA_NONE_FOUND'] = 'No s\'han trobat fitxers a la carpeta actual'; |
|
| 208 |
$MESSAGE['MEDIA_NO_FILE_UPLOADED'] = 'No file was recieved'; |
|
| 209 |
$MESSAGE['MEDIA_RENAMED'] = 'S\'ha canviat el nom amb èxit'; |
|
| 210 |
$MESSAGE['MEDIA_SINGLE_UPLOADED'] = ' fitxer s\'ha penjat amb èxit'; |
|
| 211 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'No es pot tenir ../ a la carpeta de destí'; |
|
| 212 |
$MESSAGE['MEDIA_UPLOADED'] = ' fitxers han estat penjats amb èxit'; |
|
| 213 |
$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.'; |
|
| 214 |
$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>';
|
|
| 215 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Heu d\'introduir les dades per als següents camps'; |
|
| 216 |
$MESSAGE['PAGES_ADDED'] = 'Pàgina afegida amb èxit'; |
|
| 217 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Capçalera de pàgina afegida amb èxit'; |
|
| 218 |
$MESSAGE['PAGES_BLANK_MENU_TITLE'] = 'Per favor introduïu un títol per al menú'; |
|
| 219 |
$MESSAGE['PAGES_BLANK_PAGE_TITLE'] = 'Per favor introduïu un títol de pàgina'; |
|
| 220 |
$MESSAGE['PAGES_CANNOT_CREATE_ACCESS_FILE'] = 'Error creant el fitxer d\'accés al directori /pages (privilegis insuficients)'; |
|
| 221 |
$MESSAGE['PAGES_CANNOT_DELETE_ACCESS_FILE'] = 'Error esborrant el fitxer d\'accés al directori /pages (privilegis insuficients)'; |
|
| 222 |
$MESSAGE['PAGES_CANNOT_REORDER'] = 'Error re-ordenant pàgina'; |
|
| 223 |
$MESSAGE['PAGES_DELETED'] = 'Pàgina esborrada amb èxit'; |
|
| 224 |
$MESSAGE['PAGES_DELETE_CONFIRM'] = 'Esteu segur de voler esborrar la pàgina seleccionada'; |
|
| 225 |
$MESSAGE['PAGES_INSUFFICIENT_PERMISSIONS'] = 'No teniu permisos per a modificar aquesta pàgina'; |
|
| 226 |
$MESSAGE['PAGES_INTRO_LINK'] = 'Premeu ACÍ per a modificar la pàgina d\'entrada'; |
|
| 227 |
$MESSAGE['PAGES_INTRO_NOT_WRITABLE'] = 'No s\'ha pogut escriure al fitxer /pages/intro.php (privilegis insuficients)'; |
|
| 228 |
$MESSAGE['PAGES_INTRO_SAVED'] = 'Pàgina d\'entrada desada amb èxit'; |
|
| 229 |
$MESSAGE['PAGES_LAST_MODIFIED'] = 'Última modificació per'; |
|
| 230 |
$MESSAGE['PAGES_NOT_FOUND'] = 'No s\'ha trobat la pàgina'; |
|
| 231 |
$MESSAGE['PAGES_NOT_SAVED'] = 'Error desant la pàgina'; |
|
| 232 |
$MESSAGE['PAGES_PAGE_EXISTS'] = 'Existeix una pàgina amb el mateix títol o similar'; |
|
| 233 |
$MESSAGE['PAGES_REORDERED'] = 'Pàgina re-ordenada amb èxit'; |
|
| 234 |
$MESSAGE['PAGES_RESTORED'] = 'Pàgina restaurada amb èxit'; |
|
| 235 |
$MESSAGE['PAGES_RETURN_TO_PAGES'] = 'Torna a les pàgines'; |
|
| 236 |
$MESSAGE['PAGES_SAVED'] = 'Pàgina desada amb èxit'; |
|
| 237 |
$MESSAGE['PAGES_SAVED_SETTINGS'] = 'Paràmetres de pàgina desats amb èxit'; |
|
| 238 |
$MESSAGE['PAGES_SECTIONS_PROPERTIES_SAVED'] = 'Propietats de la secció desades amb èxit'; |
|
| 239 |
$MESSAGE['PREFERENCES_CURRENT_PASSWORD_INCORRECT'] = 'La contrasenya (actual) que heu introduït és incorrecta'; |
|
| 240 |
$MESSAGE['PREFERENCES_DETAILS_SAVED'] = 'Dades desades amb èxit'; |
|
| 241 |
$MESSAGE['PREFERENCES_EMAIL_UPDATED'] = 'Correu actualitzat amb èxit'; |
|
| 242 |
$MESSAGE['PREFERENCES_INVALID_CHARS'] = 'Invalid password chars used'; |
|
| 243 |
$MESSAGE['PREFERENCES_PASSWORD_CHANGED'] = 'Contrasenya canviada amb èxit'; |
|
| 244 |
$MESSAGE['RECORD_MODIFIED_FAILED'] = 'The change of the record has missed.'; |
|
| 245 |
$MESSAGE['RECORD_MODIFIED_SAVED'] = 'The changed record was updated successfully.'; |
|
| 246 |
$MESSAGE['RECORD_NEW_FAILED'] = 'Adding a new record has missed.'; |
|
| 247 |
$MESSAGE['RECORD_NEW_SAVED'] = 'New record was added successfully.'; |
|
| 248 |
$MESSAGE['SETTINGS_MODE_SWITCH_WARNING'] = 'Avís: Prémer aquest botó reinicia tots els canvis no desats'; |
|
| 249 |
$MESSAGE['SETTINGS_SAVED'] = 'Paràmetres desats amb èxit'; |
|
| 250 |
$MESSAGE['SETTINGS_UNABLE_OPEN_CONFIG'] = 'No ha estat possible obrir el fitxer de configuració'; |
|
| 251 |
$MESSAGE['SETTINGS_UNABLE_WRITE_CONFIG'] = 'No es pot escriure al fitxer de configuració'; |
|
| 252 |
$MESSAGE['SETTINGS_WORLD_WRITEABLE_WARNING'] = 'Avís: açò només és recomana per a entorns de proves'; |
|
| 253 |
$MESSAGE['SIGNUP2_ADMIN_INFO'] = '\r\nA new user was registered.\r\n\r\nLoginname: {LOGIN_NAME}\r\nUserId: {LOGIN_ID}\r\nE-Mail: {LOGIN_EMAIL}\r\nIP-Adress: {LOGIN_IP}\r\nRegistration date: {SIGNUP_DATE}\r\n----------------------------------------\r\nThis message was automatic generated!\r\n\r\n';
|
|
| 254 |
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = '\r\nHello {LOGIN_DISPLAY_NAME},\r\n\r\nThis mail was sent because the \'forgot password\' function has been applied to your account.\r\n\r\nYour new \'{LOGIN_WEBSITE_TITLE}\' login details are:\r\n\r\nLoginname: {LOGIN_NAME}\r\nPassword: {LOGIN_PASSWORD}\r\n\r\nYour password has been reset to the one above.\r\nThis means that your old password will no longer work anymore!\r\nIf you\'ve got any questions or problems within the new login-data\r\nyou should contact the website-team or the admin of \'{LOGIN_WEBSITE_TITLE}\'.\r\nPlease remember to clean you browser-cache before using the new one to avoid unexpected fails.\r\n\r\nRegards\r\n------------------------------------\r\nThis message was automatic generated\r\n\r\n';
|
|
| 255 |
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = '\r\nHello {LOGIN_DISPLAY_NAME},\r\n\r\nWelcome to our \'{LOGIN_WEBSITE_TITLE}\'.\r\n\r\nYour \'{LOGIN_WEBSITE_TITLE}\' login details are:\r\nLoginname: {LOGIN_NAME}\r\nPassword: {LOGIN_PASSWORD}\r\n\r\nRegards\r\n\r\nPlease:\r\nif you have received this message by an error, please delete it immediately!\r\n-------------------------------------\r\nThis message was automatic generated!\r\n';
|
|
| 256 |
$MESSAGE['SIGNUP2_NEW_USER'] = 'A new user would be registered'; |
|
| 257 |
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...'; |
|
| 258 |
$MESSAGE['SIGNUP2_SUBJECT_NEW_USER'] = 'Many thanks for your registration'; |
|
| 259 |
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Heu d\'Introduir una adreça de correu'; |
|
| 260 |
$MESSAGE['START_CURRENT_USER'] = 'Actualment esteu identificat com a:'; |
|
| 261 |
$MESSAGE['START_INSTALL_DIR_EXISTS'] = 'Atenció, el Directori d\'Instal·lació Encara Existeix!'; |
|
| 262 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file {{file}} from your webspace.';
|
|
| 263 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Benvingut/da al Panell de Control de WebsiteBaker'; |
|
| 264 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Avís: per a canviar la plantilla heu d\'anar a la secció Paràmetres'; |
|
| 265 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 266 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 267 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 268 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 269 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 270 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
| 271 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
| 272 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
| 273 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
| 274 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
| 275 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
| 276 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
| 277 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
| 278 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
| 279 |
$MESSAGE['USERS_ADDED'] = 'Usuari afegit amb èxit'; |
|
| 280 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
|
| 281 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Avís: Només hauríeu d\'introduir valors als camps superiors si voleu canviar aquestes contrasenyes d\'usuari'; |
|
| 282 |
$MESSAGE['USERS_CONFIRM_DELETE'] = 'Esteu segur de voler esborrar l\'usuari seleccionat?'; |
|
| 283 |
$MESSAGE['USERS_DELETED'] = 'Usuari esborrat amb èxit'; |
|
| 284 |
$MESSAGE['USERS_EMAIL_TAKEN'] = 'L\'adreça de correu que heu introduït ja està en ús'; |
|
| 285 |
$MESSAGE['USERS_INVALID_EMAIL'] = 'L\'adreça de correu introduïda és invàlida'; |
|
| 286 |
$MESSAGE['USERS_NAME_INVALID_CHARS'] = 'Invalid chars for Loginname found'; |
|
| 287 |
$MESSAGE['USERS_NO_GROUP'] = 'No s\'ha seleccionat cap grup'; |
|
| 288 |
$MESSAGE['USERS_PASSWORD_MISMATCH'] = 'La contrasenya introduïda no coincideix'; |
|
| 289 |
$MESSAGE['USERS_PASSWORD_TOO_SHORT'] = 'La contrasenya introduïda és massa curta'; |
|
| 290 |
$MESSAGE['USERS_SAVED'] = 'Usuari desat amb èxit'; |
|
| 291 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
|
| 292 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
|
| 293 |
$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...'; |
|
| 294 |
$OVERVIEW['GROUPS'] = 'Administreu els grups d\'usuaris i els seus permisos de sistema...'; |
|
| 295 |
$OVERVIEW['HELP'] = 'Teniu una pregunta? Trobeu la vostra resposta...'; |
|
| 296 |
$OVERVIEW['LANGUAGES'] = 'Administreu els idiomes de WebsiteBaker...'; |
|
| 297 |
$OVERVIEW['MEDIA'] = 'Administreu la carpeta de fitxers...'; |
|
| 298 |
$OVERVIEW['MODULES'] = 'Administreu els mòduls de WebsiteBaker...'; |
|
| 299 |
$OVERVIEW['PAGES'] = 'Administreu les pàgines de la vostra web...'; |
|
| 300 |
$OVERVIEW['PREFERENCES'] = 'Canvieu les preferències com l\'adreça de correu electrònic, contrasenya, etc... '; |
|
| 301 |
$OVERVIEW['SETTINGS'] = 'Canvieu els paràmetres de WebsiteBaker...'; |
|
| 302 |
$OVERVIEW['START'] = 'Índex d\'Administració'; |
|
| 303 |
$OVERVIEW['TEMPLATES'] = 'Canvieu l\'aspecte i estil de la vostra pàgina amb plantilles...'; |
|
| 304 |
$OVERVIEW['USERS'] = 'Administreu els usuaris que poden identificar-se a WebsiteBaker...'; |
|
| 305 |
$OVERVIEW['VIEW'] = 'Veure i navegar ràpidament la vostra pàgina web en una nova finestra...'; |
|
| 55 | 306 |
$TEXT['ACCOUNT_SIGNUP'] = 'Registre de Compte'; |
| 56 | 307 |
$TEXT['ACTIONS'] = 'Accions'; |
| 57 | 308 |
$TEXT['ACTIVE'] = 'Actiu'; |
| 58 | 309 |
$TEXT['ADD'] = 'Afegeix'; |
| 59 | 310 |
$TEXT['ADDON'] = 'Add-On'; |
| 60 |
$TEXT['ADD_SECTION'] = 'Afegeix Secció';
|
|
| 311 |
$TEXT['ADD_SECTION'] = 'Afegeix Secció';
|
|
| 61 | 312 |
$TEXT['ADMIN'] = 'Admin'; |
| 62 |
$TEXT['ADMINISTRATION'] = 'Administració';
|
|
| 313 |
$TEXT['ADMINISTRATION'] = 'Administració';
|
|
| 63 | 314 |
$TEXT['ADMINISTRATION_TOOL'] = 'Administration tool'; |
| 64 | 315 |
$TEXT['ADMINISTRATOR'] = 'Administrator'; |
| 65 | 316 |
$TEXT['ADMINISTRATORS'] = 'Administradors'; |
| 66 |
$TEXT['ADVANCED'] = 'Avançat';
|
|
| 317 |
$TEXT['ADVANCED'] = 'Avançat';
|
|
| 67 | 318 |
$TEXT['ALLOWED_FILETYPES_ON_UPLOAD'] = 'Allowed filetypes on upload'; |
| 68 | 319 |
$TEXT['ALLOWED_VIEWERS'] = 'Allowed Viewers'; |
| 69 | 320 |
$TEXT['ALLOW_MULTIPLE_SELECTIONS'] = 'Permetre Diverses Seleccions'; |
| 70 | 321 |
$TEXT['ALL_WORDS'] = 'Totes les Paraules'; |
| 71 | 322 |
$TEXT['ANCHOR'] = 'Anchor'; |
| 72 |
$TEXT['ANONYMOUS'] = 'Anònim';
|
|
| 323 |
$TEXT['ANONYMOUS'] = 'Anònim';
|
|
| 73 | 324 |
$TEXT['ANY_WORDS'] = 'Qualsevol Paraula'; |
| 74 | 325 |
$TEXT['APP_NAME'] = 'Application Name'; |
| 75 | 326 |
$TEXT['ARE_YOU_SURE'] = 'Esteu segur?'; |
| ... | ... | |
| 80 | 331 |
$TEXT['BACKUP_DATABASE'] = 'Backup Database'; |
| 81 | 332 |
$TEXT['BACKUP_MEDIA'] = 'Backup Media'; |
| 82 | 333 |
$TEXT['BACKUP_WB_SPECIFIC'] = 'Backup only WB-specific tables'; |
| 83 |
$TEXT['BASIC'] = 'Bàsic';
|
|
| 334 |
$TEXT['BASIC'] = 'Bàsic';
|
|
| 84 | 335 |
$TEXT['BLOCK'] = 'Bloc'; |
| 85 | 336 |
$TEXT['CALENDAR'] = 'Calender'; |
| 86 |
$TEXT['CANCEL'] = 'Cancel·la';
|
|
| 337 |
$TEXT['CANCEL'] = 'Cancel·la';
|
|
| 87 | 338 |
$TEXT['CAN_DELETE_HIMSELF'] = 'Can delete himself'; |
| 88 | 339 |
$TEXT['CAPTCHA_VERIFICATION'] = 'Captcha Verification'; |
| 89 | 340 |
$TEXT['CAP_EDIT_CSS'] = 'Edit CSS'; |
| 90 | 341 |
$TEXT['CHANGE'] = 'Canvia'; |
| 91 | 342 |
$TEXT['CHANGES'] = 'Canvis'; |
| 92 |
$TEXT['CHANGE_SETTINGS'] = 'Canvia Paràmetres';
|
|
| 343 |
$TEXT['CHANGE_SETTINGS'] = 'Canvia Paràmetres';
|
|
| 93 | 344 |
$TEXT['CHARSET'] = 'Charset'; |
| 94 |
$TEXT['CHECKBOX_GROUP'] = 'Grup de quadres de verificació';
|
|
| 345 |
$TEXT['CHECKBOX_GROUP'] = 'Grup de quadres de verificació';
|
|
| 95 | 346 |
$TEXT['CLOSE'] = 'Tanca'; |
| 96 | 347 |
$TEXT['CODE'] = 'Codi'; |
| 97 | 348 |
$TEXT['CODE_SNIPPET'] = 'Code-snippet'; |
| ... | ... | |
| 102 | 353 |
$TEXT['CREATE_FOLDER'] = 'Crea Carpeta'; |
| 103 | 354 |
$TEXT['CURRENT'] = 'Actual'; |
| 104 | 355 |
$TEXT['CURRENT_FOLDER'] = 'Carpeta Actual'; |
| 105 |
$TEXT['CURRENT_PAGE'] = 'Pàgina Actual';
|
|
| 356 |
$TEXT['CURRENT_PAGE'] = 'Pàgina Actual';
|
|
| 106 | 357 |
$TEXT['CURRENT_PASSWORD'] = 'Contrasenya Actual'; |
| 107 | 358 |
$TEXT['CUSTOM'] = 'Personalitzat'; |
| 108 | 359 |
$TEXT['DATABASE'] = 'Base de Dades'; |
| ... | ... | |
| 115 | 366 |
$TEXT['DELETED'] = 'Esborrat'; |
| 116 | 367 |
$TEXT['DELETE_DATE'] = 'Delete date'; |
| 117 | 368 |
$TEXT['DELETE_ZIP'] = 'Delete zip archive after unpacking'; |
| 118 |
$TEXT['DESCRIPTION'] = 'Descripció';
|
|
| 369 |
$TEXT['DESCRIPTION'] = 'Descripció';
|
|
| 119 | 370 |
$TEXT['DESIGNED_FOR'] = 'Dissenyat Per'; |
| 371 |
$TEXT['DEV_INFOS'] = 'Developer Informations'; |
|
| 120 | 372 |
$TEXT['DIRECTORIES'] = 'Directoris'; |
| 121 | 373 |
$TEXT['DIRECTORY_MODE'] = 'Mode Directori'; |
| 122 | 374 |
$TEXT['DISABLED'] = 'Inhabilitat'; |
| 123 | 375 |
$TEXT['DISPLAY_NAME'] = 'Nom a Mostrar'; |
| 124 | 376 |
$TEXT['EMAIL'] = 'Correu'; |
| 125 |
$TEXT['EMAIL_ADDRESS'] = 'Adreça de Correu';
|
|
| 377 |
$TEXT['EMAIL_ADDRESS'] = 'Adreça de Correu';
|
|
| 126 | 378 |
$TEXT['EMPTY_TRASH'] = 'Buida la Paperera'; |
| 127 | 379 |
$TEXT['ENABLED'] = 'Habilitat'; |
| 128 | 380 |
$TEXT['END'] = 'Fi'; |
| 129 | 381 |
$TEXT['ERROR'] = 'Error'; |
| 130 |
$TEXT['EXACT_MATCH'] = 'Coincidència Exacta';
|
|
| 131 |
$TEXT['EXECUTE'] = 'Execució';
|
|
| 382 |
$TEXT['EXACT_MATCH'] = 'Coincidència Exacta';
|
|
| 383 |
$TEXT['EXECUTE'] = 'Execució';
|
|
| 132 | 384 |
$TEXT['EXPAND'] = 'Expandeix'; |
| 133 | 385 |
$TEXT['EXTENSION'] = 'Extension'; |
| 134 | 386 |
$TEXT['FIELD'] = 'Camp'; |
| ... | ... | |
| 136 | 388 |
$TEXT['FILES'] = 'fitxers'; |
| 137 | 389 |
$TEXT['FILESYSTEM_PERMISSIONS'] = 'Permisos del Sistema de Fitxers'; |
| 138 | 390 |
$TEXT['FILE_MODE'] = 'Mode Fitxer'; |
| 139 |
$TEXT['FINISH_PUBLISHING'] = 'Fi de Publicació';
|
|
| 391 |
$TEXT['FINISH_PUBLISHING'] = 'Fi de Publicació';
|
|
| 140 | 392 |
$TEXT['FOLDER'] = 'carpeta'; |
| 141 | 393 |
$TEXT['FOLDERS'] = 'carpetes'; |
| 142 | 394 |
$TEXT['FOOTER'] = 'Peu'; |
| ... | ... | |
| 147 | 399 |
$TEXT['FULL_NAME'] = 'Nom Complet'; |
| 148 | 400 |
$TEXT['FUNCTION'] = 'Function'; |
| 149 | 401 |
$TEXT['GROUP'] = 'Grup'; |
| 150 |
$TEXT['HEADER'] = 'Capçalera';
|
|
| 151 |
$TEXT['HEADING'] = 'Encapçalament';
|
|
| 402 |
$TEXT['HEADER'] = 'Capçalera';
|
|
| 403 |
$TEXT['HEADING'] = 'Encapçalament';
|
|
| 152 | 404 |
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: '; |
| 153 |
$TEXT['HEIGHT'] = 'Alçada';
|
|
| 405 |
$TEXT['HEIGHT'] = 'Alçada';
|
|
| 154 | 406 |
$TEXT['HIDDEN'] = 'Amagat'; |
| 155 | 407 |
$TEXT['HIDE'] = 'Amaga'; |
| 156 |
$TEXT['HIDE_ADVANCED'] = 'Oculta Opcions Avançades';
|
|
| 408 |
$TEXT['HIDE_ADVANCED'] = 'Oculta Opcions Avançades';
|
|
| 157 | 409 |
$TEXT['HOME'] = 'Inici'; |
| 158 |
$TEXT['HOMEPAGE_REDIRECTION'] = 'Redirecció de Pàgina Inicial';
|
|
| 410 |
$TEXT['HOMEPAGE_REDIRECTION'] = 'Redirecció de Pàgina Inicial';
|
|
| 159 | 411 |
$TEXT['HOME_FOLDER'] = 'Personal Folder'; |
| 160 | 412 |
$TEXT['HOME_FOLDERS'] = 'Personal Folders'; |
| 161 | 413 |
$TEXT['HOST'] = 'Servidor'; |
| 162 | 414 |
$TEXT['ICON'] = 'Icona'; |
| 163 | 415 |
$TEXT['IMAGE'] = 'Imatge'; |
| 164 | 416 |
$TEXT['INLINE'] = 'Inserida'; |
| 165 |
$TEXT['INSTALL'] = 'Instal·la';
|
|
| 166 |
$TEXT['INSTALLATION'] = 'Instal·lació';
|
|
| 167 |
$TEXT['INSTALLATION_PATH'] = 'Ruta d\'Instal·lació';
|
|
| 168 |
$TEXT['INSTALLATION_URL'] = 'URL d\'Instal·lació';
|
|
| 417 |
$TEXT['INSTALL'] = 'Instal·la';
|
|
| 418 |
$TEXT['INSTALLATION'] = 'Instal·lació';
|
|
| 419 |
$TEXT['INSTALLATION_PATH'] = 'Ruta d\'Instal·lació';
|
|
| 420 |
$TEXT['INSTALLATION_URL'] = 'URL d\'Instal·lació';
|
|
| 169 | 421 |
$TEXT['INSTALLED'] = 'installed'; |
| 170 | 422 |
$TEXT['INTRO'] = 'Entrada'; |
| 171 |
$TEXT['INTRO_PAGE'] = 'Pàgina d\'Entrada';
|
|
| 423 |
$TEXT['INTRO_PAGE'] = 'Pàgina d\'Entrada';
|
|
| 172 | 424 |
$TEXT['INVALID_SIGNS'] = 'must begin with a letter or has invalid signs'; |
| 173 | 425 |
$TEXT['KEYWORDS'] = 'Paraules Clau'; |
| 174 | 426 |
$TEXT['LANGUAGE'] = 'Idioma'; |
| 175 |
$TEXT['LAST_UPDATED_BY'] = 'Última Actualització Per';
|
|
| 427 |
$TEXT['LAST_UPDATED_BY'] = 'Última Actualització Per';
|
|
| 176 | 428 |
$TEXT['LENGTH'] = 'Longitud'; |
| 177 | 429 |
$TEXT['LEVEL'] = 'Nivell'; |
| 178 |
$TEXT['LINK'] = 'Enllaç'; |
|
| 430 |
$TEXT['LICENSE'] = 'License'; |
|
| 431 |
$TEXT['LINK'] = 'Enllaç'; |
|
| 179 | 432 |
$TEXT['LINUX_UNIX_BASED'] = 'Basat en Linux/Unix'; |
| 180 | 433 |
$TEXT['LIST_OPTIONS'] = 'Llista Opcions'; |
| 181 | 434 |
$TEXT['LOGGED_IN'] = 'Identificat'; |
| 182 |
$TEXT['LOGIN'] = 'Identificació';
|
|
| 435 |
$TEXT['LOGIN'] = 'Identificació';
|
|
| 183 | 436 |
$TEXT['LONG'] = 'Llarg'; |
| 184 | 437 |
$TEXT['LONG_TEXT'] = 'Text Llarg'; |
| 185 |
$TEXT['LOOP'] = 'Repetició';
|
|
| 438 |
$TEXT['LOOP'] = 'Repetició';
|
|
| 186 | 439 |
$TEXT['MAIN'] = 'Principal'; |
| 187 | 440 |
$TEXT['MAINTENANCE_OFF'] = 'Maintenance off'; |
| 188 | 441 |
$TEXT['MAINTENANCE_ON'] = 'Maintenance on'; |
| ... | ... | |
| 192 | 445 |
$TEXT['MATCH'] = 'Coincidir'; |
| 193 | 446 |
$TEXT['MATCHING'] = 'Matching'; |
| 194 | 447 |
$TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; |
| 195 |
$TEXT['MAX_SUBMISSIONS_PER_HOUR'] = 'Trameses Màx. Per Hora';
|
|
| 448 |
$TEXT['MAX_SUBMISSIONS_PER_HOUR'] = 'Trameses Màx. Per Hora';
|
|
| 196 | 449 |
$TEXT['MEDIA_DIRECTORY'] = 'Directori de Fitxers'; |
| 197 |
$TEXT['MENU'] = 'Menú';
|
|
| 450 |
$TEXT['MENU'] = 'Menú';
|
|
| 198 | 451 |
$TEXT['MENU_ICON_0'] = 'Menu-Icon normal'; |
| 199 | 452 |
$TEXT['MENU_ICON_1'] = 'Menu-Icon hover'; |
| 200 |
$TEXT['MENU_TITLE'] = 'Títol del Menú';
|
|
| 453 |
$TEXT['MENU_TITLE'] = 'Títol del Menú';
|
|
| 201 | 454 |
$TEXT['MESSAGE'] = 'Missatge'; |
| 202 | 455 |
$TEXT['MODIFY'] = 'Modifica'; |
| 203 | 456 |
$TEXT['MODIFY_CONTENT'] = 'Modifica Contingut'; |
| 204 |
$TEXT['MODIFY_SETTINGS'] = 'Modifica Paràmetres';
|
|
| 457 |
$TEXT['MODIFY_SETTINGS'] = 'Modifica Paràmetres';
|
|
| 205 | 458 |
$TEXT['MODULE_ORDER'] = 'Module-order for searching'; |
| 206 |
$TEXT['MODULE_PERMISSIONS'] = 'Permisos de Mòdul';
|
|
| 207 |
$TEXT['MORE'] = 'Més';
|
|
| 459 |
$TEXT['MODULE_PERMISSIONS'] = 'Permisos de Mòdul';
|
|
| 460 |
$TEXT['MORE'] = 'Més';
|
|
| 208 | 461 |
$TEXT['MOVE_DOWN'] = 'Mou Avall'; |
| 209 | 462 |
$TEXT['MOVE_UP'] = 'Mou Amunt'; |
| 210 |
$TEXT['MULTIPLE_MENUS'] = 'Diversos Menús'; |
|
| 211 |
$TEXT['MULTISELECT'] = 'Multi-selecció'; |
|
| 463 |
$TEXT['MULTILINGUAL'] = 'MULTILINGUAL'; |
|
| 464 |
$TEXT['MULTIPLE_MENUS'] = 'Diversos Menús'; |
|
| 465 |
$TEXT['MULTISELECT'] = 'Multi-selecció'; |
|
| 212 | 466 |
$TEXT['NAME'] = 'Nom'; |
| 213 | 467 |
$TEXT['NEED_CURRENT_PASSWORD'] = 'confirm with current password'; |
| 214 | 468 |
$TEXT['NEED_TO_LOGIN'] = 'Voleu identificar-vos?'; |
| 215 | 469 |
$TEXT['NEW_PASSWORD'] = 'Nova Contrasenya'; |
| 216 | 470 |
$TEXT['NEW_WINDOW'] = 'Nova Finestra'; |
| 217 |
$TEXT['NEXT'] = 'Següent';
|
|
| 218 |
$TEXT['NEXT_PAGE'] = 'Pàgina Següent';
|
|
| 471 |
$TEXT['NEXT'] = 'Següent';
|
|
| 472 |
$TEXT['NEXT_PAGE'] = 'Pàgina Següent';
|
|
| 219 | 473 |
$TEXT['NO'] = 'No'; |
| 220 | 474 |
$TEXT['NONE'] = 'Cap'; |
| 221 | 475 |
$TEXT['NONE_FOUND'] = 'No s\'ha trobat cap'; |
| ... | ... | |
| 223 | 477 |
$TEXT['NOT_INSTALLED'] = 'not installed'; |
| 224 | 478 |
$TEXT['NO_IMAGE_SELECTED'] = 'no image selected'; |
| 225 | 479 |
$TEXT['NO_RESULTS'] = 'Cap Resultat'; |
| 480 |
$TEXT['NO_SELECTION'] = 'no selection'; |
|
| 226 | 481 |
$TEXT['OF'] = 'De'; |
| 227 | 482 |
$TEXT['ON'] = 'A'; |
| 228 | 483 |
$TEXT['OPEN'] = 'Open'; |
| 229 |
$TEXT['OPTION'] = 'Opció';
|
|
| 484 |
$TEXT['OPTION'] = 'Opció';
|
|
| 230 | 485 |
$TEXT['OTHERS'] = 'Altres'; |
| 231 | 486 |
$TEXT['OUT_OF'] = 'Fora De'; |
| 232 | 487 |
$TEXT['OVERWRITE_EXISTING'] = 'Sobreescriure'; |
| 233 |
$TEXT['PAGE'] = 'Pàgina';
|
|
| 234 |
$TEXT['PAGES_DIRECTORY'] = 'Directori de Pàgines';
|
|
| 488 |
$TEXT['PAGE'] = 'Pàgina';
|
|
| 489 |
$TEXT['PAGES_DIRECTORY'] = 'Directori de Pàgines';
|
|
| 235 | 490 |
$TEXT['PAGES_PERMISSION'] = 'Pages Permission'; |
| 236 | 491 |
$TEXT['PAGES_PERMISSIONS'] = 'Pages Permissions'; |
| 237 |
$TEXT['PAGE_EXTENSION'] = 'Extensió de Pàgina';
|
|
| 492 |
$TEXT['PAGE_EXTENSION'] = 'Extensió de Pàgina';
|
|
| 238 | 493 |
$TEXT['PAGE_ICON'] = 'Page Image'; |
| 239 | 494 |
$TEXT['PAGE_ICON_DIR'] = 'Path pages/menu images'; |
| 240 |
$TEXT['PAGE_LANGUAGES'] = 'Idiomes de la pàgina';
|
|
| 241 |
$TEXT['PAGE_LEVEL_LIMIT'] = 'Límit de Nivell de Pàgina';
|
|
| 242 |
$TEXT['PAGE_SPACER'] = 'Separador de Pàgina';
|
|
| 243 |
$TEXT['PAGE_TITLE'] = 'Títol de la Pàgina';
|
|
| 495 |
$TEXT['PAGE_LANGUAGES'] = 'Idiomes de la pàgina';
|
|
| 496 |
$TEXT['PAGE_LEVEL_LIMIT'] = 'Límit de Nivell de Pàgina';
|
|
| 497 |
$TEXT['PAGE_SPACER'] = 'Separador de Pàgina';
|
|
| 498 |
$TEXT['PAGE_TITLE'] = 'Títol de la Pàgina';
|
|
| 244 | 499 |
$TEXT['PAGE_TRASH'] = 'Paperera'; |
| 245 | 500 |
$TEXT['PARENT'] = 'Mare'; |
| 246 | 501 |
$TEXT['PASSWORD'] = 'Contrasenya'; |
| ... | ... | |
| 253 | 508 |
$TEXT['POST_FOOTER'] = 'Post Footer'; |
| 254 | 509 |
$TEXT['POST_HEADER'] = 'Post Header'; |
| 255 | 510 |
$TEXT['PREVIOUS'] = 'Anterior'; |
| 256 |
$TEXT['PREVIOUS_PAGE'] = 'Pàgina Anterior';
|
|
| 511 |
$TEXT['PREVIOUS_PAGE'] = 'Pàgina Anterior';
|
|
| 257 | 512 |
$TEXT['PRIVATE'] = 'Privat'; |
| 258 | 513 |
$TEXT['PRIVATE_VIEWERS'] = 'Visualitzadors Privats'; |
| 259 | 514 |
$TEXT['PROFILES_EDIT'] = 'Change the profile'; |
| 260 |
$TEXT['PUBLIC'] = 'Públic';
|
|
| 515 |
$TEXT['PUBLIC'] = 'Públic';
|
|
| 261 | 516 |
$TEXT['PUBL_END_DATE'] = 'End date'; |
| 262 | 517 |
$TEXT['PUBL_START_DATE'] = 'Start date'; |
| 263 | 518 |
$TEXT['RADIO_BUTTON_GROUP'] = 'Grup de Botons'; |
| 264 | 519 |
$TEXT['READ'] = 'Lectura'; |
| 265 |
$TEXT['READ_MORE'] = 'Llegir Més';
|
|
| 520 |
$TEXT['READ_MORE'] = 'Llegir Més';
|
|
| 266 | 521 |
$TEXT['REDIRECT_AFTER'] = 'Redirect after'; |
| 267 | 522 |
$TEXT['REGISTERED'] = 'Registrat'; |
| 268 | 523 |
$TEXT['REGISTERED_VIEWERS'] = 'Visualitzadors Registrats'; |
| ... | ... | |
| 281 | 536 |
$TEXT['RESULTS'] = 'Resultats'; |
| 282 | 537 |
$TEXT['RESULTS_FOOTER'] = 'Peu de Resultats'; |
| 283 | 538 |
$TEXT['RESULTS_FOR'] = 'Resultats De'; |
| 284 |
$TEXT['RESULTS_HEADER'] = 'Capçalera de Resultats';
|
|
| 539 |
$TEXT['RESULTS_HEADER'] = 'Capçalera de Resultats';
|
|
| 285 | 540 |
$TEXT['RESULTS_LOOP'] = 'Bucle de Resultats'; |
| 286 | 541 |
$TEXT['RETYPE_NEW_PASSWORD'] = 'Nova Contrasenya (de nou)'; |
| 287 | 542 |
$TEXT['RETYPE_PASSWORD'] = 'Contrasenya (de nou)'; |
| ... | ... | |
| 289 | 544 |
$TEXT['SAVE'] = 'Desa'; |
| 290 | 545 |
$TEXT['SEARCH'] = 'Cerca'; |
| 291 | 546 |
$TEXT['SEARCHING'] = 'Recerca'; |
| 292 |
$TEXT['SECTION'] = 'Secció';
|
|
| 293 |
$TEXT['SECTION_BLOCKS'] = 'Blocs de la Secció';
|
|
| 547 |
$TEXT['SECTION'] = 'Secció';
|
|
| 548 |
$TEXT['SECTION_BLOCKS'] = 'Blocs de la Secció';
|
|
| 294 | 549 |
$TEXT['SEC_ANCHOR'] = 'Section-Anchor text'; |
| 295 |
$TEXT['SELECT_BOX'] = 'Quadre de Selecció';
|
|
| 550 |
$TEXT['SELECT_BOX'] = 'Quadre de Selecció';
|
|
| 296 | 551 |
$TEXT['SEND_DETAILS'] = 'Envia les Dades'; |
| 297 | 552 |
$TEXT['SEPARATE'] = 'Separada'; |
| 298 | 553 |
$TEXT['SEPERATOR'] = 'Separador'; |
| 299 | 554 |
$TEXT['SERVER_EMAIL'] = 'Correu del Servidor'; |
| 300 | 555 |
$TEXT['SERVER_OPERATING_SYSTEM'] = 'Sistema Operatiu del Servidor'; |
| 301 | 556 |
$TEXT['SESSION_IDENTIFIER'] = 'Session Identifier'; |
| 302 |
$TEXT['SETTINGS'] = 'Paràmetres';
|
|
| 557 |
$TEXT['SETTINGS'] = 'Paràmetres';
|
|
| 303 | 558 |
$TEXT['SHORT'] = 'Curt'; |
| 304 | 559 |
$TEXT['SHORT_TEXT'] = 'Text Curt'; |
| 305 | 560 |
$TEXT['SHOW'] = 'Mostra'; |
| 306 |
$TEXT['SHOW_ADVANCED'] = 'Mostra Opcions Avançades';
|
|
| 561 |
$TEXT['SHOW_ADVANCED'] = 'Mostra Opcions Avançades';
|
|
| 307 | 562 |
$TEXT['SIGNUP'] = 'Registre'; |
| 308 | 563 |
$TEXT['SIZE'] = 'Mida'; |
| 309 |
$TEXT['SMART_LOGIN'] = 'Identificació Ràpida';
|
|
| 564 |
$TEXT['SMART_LOGIN'] = 'Identificació Ràpida';
|
|
| 310 | 565 |
$TEXT['START'] = 'Inici'; |
| 311 |
$TEXT['START_PUBLISHING'] = 'Inici de Publicació';
|
|
| 566 |
$TEXT['START_PUBLISHING'] = 'Inici de Publicació';
|
|
| 312 | 567 |
$TEXT['SUBJECT'] = 'Assumpte'; |
| 313 | 568 |
$TEXT['SUBMISSIONS'] = 'Trameses'; |
| 314 | 569 |
$TEXT['SUBMISSIONS_STORED_IN_DATABASE'] = 'Trameses Emmagatzemades a la Base de Dades'; |
| 315 | 570 |
$TEXT['SUBMISSION_ID'] = 'ID de Tramesa'; |
| 316 |
$TEXT['SUBMITTED'] = 'Tramés';
|
|
| 317 |
$TEXT['SUCCESS'] = 'Èxit';
|
|
| 571 |
$TEXT['SUBMITTED'] = 'Tramés';
|
|
| 572 |
$TEXT['SUCCESS'] = 'Èxit';
|
|
| 318 | 573 |
$TEXT['SYSTEM_DEFAULT'] = 'Per Defecte del Sistema'; |
| 319 | 574 |
$TEXT['SYSTEM_PERMISSIONS'] = 'Permisos de Sistema'; |
| 320 | 575 |
$TEXT['TABLE_PREFIX'] = 'Prefix de Taula'; |
| 321 |
$TEXT['TARGET'] = 'Destí';
|
|
| 322 |
$TEXT['TARGET_FOLDER'] = 'Carpeta de destí';
|
|
| 576 |
$TEXT['TARGET'] = 'Destí';
|
|
| 577 |
$TEXT['TARGET_FOLDER'] = 'Carpeta de destí';
|
|
| 323 | 578 |
$TEXT['TEMPLATE'] = 'Plantilla'; |
| 324 | 579 |
$TEXT['TEMPLATE_PERMISSIONS'] = 'Permisos de Plantilla'; |
| 325 | 580 |
$TEXT['TEXT'] = 'Text'; |
| 326 |
$TEXT['TEXTAREA'] = 'Àrea de text';
|
|
| 581 |
$TEXT['TEXTAREA'] = 'Àrea de text';
|
|
| 327 | 582 |
$TEXT['TEXTFIELD'] = 'Camp de text'; |
| 328 | 583 |
$TEXT['THEME'] = 'Backend-Theme'; |
| 329 | 584 |
$TEXT['THEME_COPY_CURRENT'] = 'Copy backend theme.'; |
| ... | ... | |
| 338 | 593 |
$TEXT['TIMEZONE'] = 'Fus Horari'; |
| 339 | 594 |
$TEXT['TIME_FORMAT'] = 'Format de Temps'; |
| 340 | 595 |
$TEXT['TIME_LIMIT'] = 'Max time to gather excerpts per module'; |
| 341 |
$TEXT['TITLE'] = 'Títol';
|
|
| 596 |
$TEXT['TITLE'] = 'Títol';
|
|
| 342 | 597 |
$TEXT['TO'] = 'a'; |
| 343 | 598 |
$TEXT['TOP_FRAME'] = 'Top Frame'; |
| 344 | 599 |
$TEXT['TRASH_EMPTIED'] = 'Paperera Buidada'; |
| 345 | 600 |
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.'; |
| 346 | 601 |
$TEXT['TYPE'] = 'Tipus'; |
| 347 |
$TEXT['UNDER_CONSTRUCTION'] = 'En Construcció';
|
|
| 348 |
$TEXT['UNINSTALL'] = 'Desinstal·la';
|
|
| 602 |
$TEXT['UNDER_CONSTRUCTION'] = 'En Construcció';
|
|
| 603 |
$TEXT['UNINSTALL'] = 'Desinstal·la';
|
|
| 349 | 604 |
$TEXT['UNKNOWN'] = 'Desconegut'; |
| 350 |
$TEXT['UNLIMITED'] = 'Il·limitat';
|
|
| 605 |
$TEXT['UNLIMITED'] = 'Il·limitat';
|
|
| 351 | 606 |
$TEXT['UNZIP_FILE'] = 'Upload and unpack a zip archive'; |
| 352 | 607 |
$TEXT['UP'] = 'Amunt'; |
| 353 | 608 |
$TEXT['UPGRADE'] = 'Upgrade'; |
| ... | ... | |
| 362 | 617 |
$TEXT['USERS_FLAGS'] = 'User-Flags'; |
| 363 | 618 |
$TEXT['USERS_PROFILE_ALLOWED'] = 'User can create extended profile'; |
| 364 | 619 |
$TEXT['VERIFICATION'] = 'Verification'; |
| 365 |
$TEXT['VERSION'] = 'Versió';
|
|
| 620 |
$TEXT['VERSION'] = 'Versió';
|
|
| 366 | 621 |
$TEXT['VIEW'] = 'Veure'; |
| 367 |
$TEXT['VIEW_DELETED_PAGES'] = 'Mostra Pàgines Esborrades';
|
|
| 622 |
$TEXT['VIEW_DELETED_PAGES'] = 'Mostra Pàgines Esborrades';
|
|
| 368 | 623 |
$TEXT['VIEW_DETAILS'] = 'Veure Detalls'; |
| 369 | 624 |
$TEXT['VISIBILITY'] = 'Visibilitat'; |
| 370 | 625 |
$TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; |
| 371 | 626 |
$TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; |
| 372 |
$TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by WebsiteBaker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.';
|
|
| 627 |
$TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default \"FROM\" address and \"SENDER\" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by WebsiteBaker. If your server supports <acronym title=\"Simple mail transfer protocol\">SMTP</acronym>, you may want use this option for outgoing mails.';
|
|
| 373 | 628 |
$TEXT['WBMAILER_FUNCTION'] = 'Mail Routine'; |
| 374 |
$TEXT['WBMAILER_NOTICE'] = '<strong>SMTP Mailer Settings:</strong><br />The settings below are only required if you want to send mails via <acronym title="Simple mail transfer protocol">SMTP</acronym>. If you do not know your SMTP host or you are not sure about the required settings, simply stay with the default mail routine: PHP MAIL.';
|
|
| 629 |
$TEXT['WBMAILER_NOTICE'] = '<strong>SMTP Mailer Settings:</strong><br />The settings below are only required if you want to send mails via <acronym title=\"Simple mail transfer protocol\">SMTP</acronym>. If you do not know your SMTP host or you are not sure about the required settings, simply stay with the default mail routine: PHP MAIL.';
|
|
| 375 | 630 |
$TEXT['WBMAILER_PHP'] = 'PHP MAIL'; |
| 376 | 631 |
$TEXT['WBMAILER_SMTP'] = 'SMTP'; |
| 377 | 632 |
$TEXT['WBMAILER_SMTP_AUTH'] = 'SMTP Authentification'; |
| ... | ... | |
| 379 | 634 |
$TEXT['WBMAILER_SMTP_HOST'] = 'SMTP Host'; |
| 380 | 635 |
$TEXT['WBMAILER_SMTP_PASSWORD'] = 'SMTP Password'; |
| 381 | 636 |
$TEXT['WBMAILER_SMTP_USERNAME'] = 'SMTP Loginname'; |
| 382 |
$TEXT['WEBSITE'] = 'Pàgina Web';
|
|
| 383 |
$TEXT['WEBSITE_DESCRIPTION'] = 'Descripció del Lloc Web';
|
|
| 637 |
$TEXT['WEBSITE'] = 'Pàgina Web';
|
|
| 638 |
$TEXT['WEBSITE_DESCRIPTION'] = 'Descripció del Lloc Web';
|
|
| 384 | 639 |
$TEXT['WEBSITE_FOOTER'] = 'Peu del Lloc Web'; |
| 385 |
$TEXT['WEBSITE_HEADER'] = 'Capçalera del Lloc Web';
|
|
| 640 |
$TEXT['WEBSITE_HEADER'] = 'Capçalera del Lloc Web';
|
|
| 386 | 641 |
$TEXT['WEBSITE_KEYWORDS'] = 'Paraules clau del Lloc Web'; |
| 387 |
$TEXT['WEBSITE_TITLE'] = 'Títol del Lloc Web';
|
|
| 642 |
$TEXT['WEBSITE_TITLE'] = 'Títol del Lloc Web';
|
|
| 388 | 643 |
$TEXT['WELCOME_BACK'] = 'Benvingut de nou'; |
| 389 | 644 |
$TEXT['WIDTH'] = 'Amplada'; |
| 390 | 645 |
$TEXT['WINDOW'] = 'Finestra'; |
| ... | ... | |
| 393 | 648 |
$TEXT['WRITE'] = 'Escriptura'; |
| 394 | 649 |
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG Editor'; |
| 395 | 650 |
$TEXT['WYSIWYG_STYLE'] = 'Estil WYSIWYG'; |
| 396 |
$TEXT['YES'] = 'Sí'; |
|
| 397 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
|
| 398 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
|
| 399 |
$HEADING['ADD_GROUP'] = 'Afegeix Grup'; |
|
| 400 |
$HEADING['ADD_GROUPS'] = 'Add Groups'; |
|
| 401 |
$HEADING['ADD_HEADING'] = 'Afegeix Encapçalament'; |
|
| 402 |
$HEADING['ADD_PAGE'] = 'Afegeix Pàgina'; |
|
| 403 |
$HEADING['ADD_USER'] = 'Afegeix Usuari'; |
|
| 404 |
$HEADING['ADMINISTRATION_TOOLS'] = 'Administration Tools'; |
|
| 405 |
$HEADING['BROWSE_MEDIA'] = 'Explorar Fitxers'; |
|
| 406 |
$HEADING['CREATE_FOLDER'] = 'Crea Carpeta'; |
|
| 407 |
$HEADING['DEFAULT_SETTINGS'] = 'Paràmetres per Defecte'; |
|
| 408 |
$HEADING['DELETED_PAGES'] = 'Pàgines Esborrades'; |
|
| 409 |
$HEADING['FILESYSTEM_SETTINGS'] = 'Paràmetres del Sistema de Fitxers'; |
|
| 410 |
$HEADING['GENERAL_SETTINGS'] = 'Paràmetres Generals'; |
|
| 411 |
$HEADING['INSTALL_LANGUAGE'] = 'Instal·la Idioma'; |
|
| 412 |
$HEADING['INSTALL_MODULE'] = 'Instal·la Mòdul'; |
|
| 413 |
$HEADING['INSTALL_TEMPLATE'] = 'Instal·la Plantilla'; |
|
| 414 |
$HEADING['INVOKE_LANGUAGE_FILES'] = 'Execute language files manually'; |
|
| 415 |
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually'; |
|
| 416 |
$HEADING['INVOKE_TEMPLATE_FILES'] = 'Execute template files manually'; |
|
| 417 |
$HEADING['LANGUAGE_DETAILS'] = 'Detalls de l\'Idioma'; |
|
| 418 |
$HEADING['MANAGE_SECTIONS'] = 'Administra les Seccions'; |
|
| 419 |
$HEADING['MODIFY_ADVANCED_PAGE_SETTINGS'] = 'Modifica els Paràmetres Avançats de la Pàgina'; |
|
| 420 |
$HEADING['MODIFY_DELETE_GROUP'] = 'Modifica/Esborra Grup'; |
|
| 421 |
$HEADING['MODIFY_DELETE_PAGE'] = 'Modifica/Esborra Pàgina'; |
|
| 422 |
$HEADING['MODIFY_DELETE_USER'] = 'Modifica/Esborra Usuari'; |
|
| 423 |
$HEADING['MODIFY_GROUP'] = 'Modifica Grup'; |
|
| 424 |
$HEADING['MODIFY_GROUPS'] = 'Modify Groups'; |
|
| 425 |
$HEADING['MODIFY_INTRO_PAGE'] = 'Modifica Pàgina Introductòria'; |
|
| 426 |
$HEADING['MODIFY_PAGE'] = 'Modifica Pàgina'; |
|
| 427 |
$HEADING['MODIFY_PAGE_SETTINGS'] = 'Modifica els Paràmetres de la Pàgina'; |
|
| 428 |
$HEADING['MODIFY_USER'] = 'Modifica Usuari'; |
|
| 429 |
$HEADING['MODULE_DETAILS'] = 'Detalls del Mòdul'; |
|
| 430 |
$HEADING['MY_EMAIL'] = 'El meu Correu'; |
|
| 431 |
$HEADING['MY_PASSWORD'] = 'La meua Contrasenya'; |
|
| 432 |
$HEADING['MY_SETTINGS'] = 'Els meus Paràmetres'; |
|
| 433 |
$HEADING['SEARCH_SETTINGS'] = 'Paràmetres de Cerca'; |
|
| 434 |
$HEADING['SERVER_SETTINGS'] = 'Server Settings'; |
|
| 435 |
$HEADING['TEMPLATE_DETAILS'] = 'Detalls de la Plantilla'; |
|
| 436 |
$HEADING['UNINSTALL_LANGUAGE'] = 'Desinstal·la Idioma'; |
|
| 437 |
$HEADING['UNINSTALL_MODULE'] = 'Desinstal·la Mòdul'; |
|
| 438 |
$HEADING['UNINSTALL_TEMPLATE'] = 'Desinstal·la Plantilla'; |
|
| 439 |
$HEADING['UPGRADE_LANGUAGE'] = 'Language register/upgrading'; |
|
| 440 |
$HEADING['UPLOAD_FILES'] = 'Penja Fitxer(s)'; |
|
| 441 |
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings'; |
|
| 442 |
$MESSAGE['ADDON_ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
| 443 |
$MESSAGE['ADDON_LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
|
| 444 |
$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.'; |
|
| 445 |
$MESSAGE['ADDON_MANUAL_FTP_WARNING'] = 'Warning: Existing module database entries will get lost. '; |
|
| 446 |
$MESSAGE['ADDON_MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation functions <tt>install</tt>, <tt>upgrade</tt> or <tt>uninstall</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module functions manually for modules uploaded via FTP below.'; |
|
| 447 |
$MESSAGE['ADDON_MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.'; |
|
| 448 |
$MESSAGE['ADDON_MANUAL_RELOAD_WARNING'] = 'Warning: Existing module database entries will get lost. '; |
|
| 449 |
$MESSAGE['ADDON_MODULES_RELOADED'] = 'Modules reloaded successfully'; |
|
| 450 |
$MESSAGE['ADDON_OVERWRITE_NEWER_FILES'] = 'Overwrite newer Files'; |
|
| 451 |
$MESSAGE['ADDON_PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
| 452 |
$MESSAGE['ADDON_RELOAD'] = 'Update database with information from Add-on files (e.g. after FTP upload).'; |
|
| 453 |
$MESSAGE['ADDON_TEMPLATES_RELOADED'] = 'Templates reloaded successfully'; |
|
| 454 |
$MESSAGE['ADMIN_INSUFFICIENT_PRIVELLIGES'] = 'No teniu privilegis suficients per estar ací'; |
|
| 455 |
$MESSAGE['FORGOT_PASS_ALREADY_RESET'] = 'La contrasenya no es pot reiniciar més d\'un cop per hora, disculpeu'; |
|
| 456 |
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'No ha estat possible enviar la contrasenya, per favor contacteu amb l\'administrador del sistema'; |
|
| 457 |
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'El correu que heu introduït no s\'ha trobat a la base de dades'; |
|
| 458 |
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Per favor introduïu la vostra adreça de correu a baix'; |
|
| 459 |
$MESSAGE['FORGOT_PASS_PASSWORD_RESET'] = 'Your loginname and password have been sent to your email address'; |
|
| 460 |
$MESSAGE['FRONTEND_SORRY_NO_ACTIVE_SECTIONS'] = 'Sorry, no active content to display'; |
|
| 461 |
$MESSAGE['FRONTEND_SORRY_NO_VIEWING_PERMISSIONS'] = 'Ho sentim, no teniu permisos per a veure aquesta pàgina'; |
|
| 462 |
$MESSAGE['GENERIC_ALREADY_INSTALLED'] = 'Ja està instal·lat'; |
|
| 463 |
$MESSAGE['GENERIC_BAD_PERMISSIONS'] = 'No s\'ha pogut escriure al directori de destí'; |
|
| 464 |
$MESSAGE['GENERIC_BE_PATIENT'] = 'Please be patient.'; |
|
| 465 |
$MESSAGE['GENERIC_CANNOT_UNINSTALL'] = 'No s\'ha pogut desinstal·lar'; |
|
| 466 |
$MESSAGE['GENERIC_CANNOT_UNINSTALL_IN_USE'] = 'No s\'ha pogut desinstal·lar: s\'està usant el fitxer seleccionat'; |
|
| 467 |
$MESSAGE['GENERIC_CANNOT_UNINSTALL_IN_USE_TMPL'] = '<br /><br />{{type}} <b>{{type_name}}</b> could not be uninstalled, because it is still in use on {{pages}}.<br /><br />';
|
|
| 468 |
$MESSAGE['GENERIC_CANNOT_UNINSTALL_IN_USE_TMPL_PAGES'] = 'this page;these pages'; |
|
| 469 |
$MESSAGE['GENERIC_CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE'] = 'Can\'t uninstall the template <b>{{name}}</b>, because it is the default template!';
|
|
| 470 |
$MESSAGE['GENERIC_CANNOT_UNINSTALL_IS_DEFAULT_THEME'] = 'Can\'t uninstall the template <b>{{name}}</b>, because it is the default backend theme!';
|
|
| 471 |
$MESSAGE['GENERIC_CANNOT_UNZIP'] = 'No s\'ha pogut descomprimir el fitxer'; |
|
| 472 |
$MESSAGE['GENERIC_CANNOT_UPLOAD'] = 'No s\'ha pogut penjar el fitxer'; |
|
| 473 |
$MESSAGE['GENERIC_COMPARE'] = ' successfully'; |
|
| 474 |
$MESSAGE['GENERIC_ERROR_OPENING_FILE'] = 'Error opening file.'; |
|
| 475 |
$MESSAGE['GENERIC_FAILED_COMPARE'] = ' failed'; |
|
| 476 |
$MESSAGE['GENERIC_FILE_TYPE'] = 'Per favor recordeu que el fitxer que pengeu ha d\'estar en un dels següents formats:'; |
|
| 477 |
$MESSAGE['GENERIC_FILE_TYPES'] = 'Per favor recordeu que els fitxers que pengeu han d\'estar en un dels següents formats:'; |
|
| 478 |
$MESSAGE['GENERIC_FILL_IN_ALL'] = 'Per favor torneu arrere i completeu tots els camps'; |
|
| 479 |
$MESSAGE['GENERIC_FORGOT_OPTIONS'] = 'You have selected no choice!'; |
|
| 480 |
$MESSAGE['GENERIC_INSTALLED'] = 'Instal·lat amb èxit'; |
|
| 481 |
$MESSAGE['GENERIC_INVALID'] = 'El fitxer que heu penjat no és vàlid'; |
|
| 482 |
$MESSAGE['GENERIC_INVALID_ADDON_FILE'] = 'Invalid WebsiteBaker installation file. Please check the *.zip format.'; |
|
| 483 |
$MESSAGE['GENERIC_INVALID_LANGUAGE_FILE'] = 'Invalid WebsiteBaker language file. Please check the text file.'; |
|
| 484 |
$MESSAGE['GENERIC_INVALID_MODULE_FILE'] = 'Invalid WebsiteBaker module file. Please check the text file.'; |
|
| 485 |
$MESSAGE['GENERIC_INVALID_TEMPLATE_FILE'] = 'Invalid WebsiteBaker template file. Please check the text file.'; |
|
| 486 |
$MESSAGE['GENERIC_IN_USE'] = ' but used in '; |
|
| 487 |
$MESSAGE['GENERIC_MISSING_ARCHIVE_FILE'] = 'Missing Archiv file!'; |
|
| 488 |
$MESSAGE['GENERIC_MODULE_VERSION_ERROR'] = 'The module is not installed properly!'; |
|
| 489 |
$MESSAGE['GENERIC_NOT_COMPARE'] = ' not possibly'; |
|
| 490 |
$MESSAGE['GENERIC_NOT_INSTALLED'] = 'No està instal·lat'; |
|
| 491 |
$MESSAGE['GENERIC_NOT_UPGRADED'] = 'Actualization not possibly'; |
|
| 492 |
$MESSAGE['GENERIC_PLEASE_BE_PATIENT'] = 'Please be patient, this might take a while.'; |
|
| 493 |
$MESSAGE['GENERIC_PLEASE_CHECK_BACK_SOON'] = 'Per favor torneu-ho a intentar prompte...'; |
|
| 494 |
$MESSAGE['GENERIC_SECURITY_ACCESS'] = 'Security offense!! Access denied!'; |
|
| 495 |
$MESSAGE['GENERIC_SECURITY_OFFENSE'] = 'Security offense!! data storing was refused!!'; |
|
| 496 |
$MESSAGE['GENERIC_UNINSTALLED'] = 'Desinstal·lat amb èxit'; |
|
| 497 |
$MESSAGE['GENERIC_UPGRADED'] = 'Upgraded successfully'; |
|
| 498 |
$MESSAGE['GENERIC_VERSION_COMPARE'] = 'Version comparison'; |
|
| 499 |
$MESSAGE['GENERIC_VERSION_GT'] = 'Upgrade necessary!'; |
|
| 500 |
$MESSAGE['GENERIC_VERSION_LT'] = 'Downgrade'; |
|
| 501 |
$MESSAGE['GENERIC_WEBSITE_LOCKED'] = 'this site is temporarily down for maintenance'; |
|
| 502 |
$MESSAGE['GENERIC_WEBSITE_UNDER_CONSTRUCTION'] = 'Lloc Web en Construcció'; |
|
| 503 |
$MESSAGE['GROUPS_ADDED'] = 'Grup afegit amb èxit'; |
|
| 504 |
$MESSAGE['GROUPS_CONFIRM_DELETE'] = 'Esteu segur de voler esborrar el grup seleccionat (i qualsevol usuari que pertanyi a aquest)?'; |
|
| 505 |
$MESSAGE['GROUPS_DELETED'] = 'Grup esborrat amb èxit'; |
|
| 506 |
$MESSAGE['GROUPS_GROUP_NAME_BLANK'] = 'El nom del grup és buit'; |
|
| 507 |
$MESSAGE['GROUPS_GROUP_NAME_EXISTS'] = 'Group name already exists'; |
|
| 508 |
$MESSAGE['GROUPS_NO_GROUPS_FOUND'] = 'No s\'han trobat grups'; |
|
| 509 |
$MESSAGE['GROUPS_SAVED'] = 'Grup desat amb èxit'; |
|
| 510 |
$MESSAGE['LOGIN_AUTHENTICATION_FAILED'] = 'Loginname or password incorrect'; |
|
| 511 |
$MESSAGE['LOGIN_BOTH_BLANK'] = 'Please enter your loginname and password below'; |
|
| 512 |
$MESSAGE['LOGIN_PASSWORD_BLANK'] = 'Per favor introduïu una contrasenya'; |
|
| 513 |
$MESSAGE['LOGIN_PASSWORD_TOO_LONG'] = 'La contrasenya és massa llarga'; |
|
| 514 |
$MESSAGE['LOGIN_PASSWORD_TOO_SHORT'] = 'La contrasenya és massa curta'; |
|
| 515 |
$MESSAGE['LOGIN_USERNAME_BLANK'] = 'Please enter a loginname'; |
|
| 516 |
$MESSAGE['LOGIN_USERNAME_TOO_LONG'] = 'Supplied loginname to long'; |
|
| 517 |
$MESSAGE['LOGIN_USERNAME_TOO_SHORT'] = 'Supplied loginname to short'; |
|
| 518 |
$MESSAGE['MEDIA_BLANK_EXTENSION'] = 'No heu introduït una extensió de fitxer'; |
|
| 519 |
$MESSAGE['MEDIA_BLANK_NAME'] = 'No heu introduït un nou nom'; |
|
| 520 |
$MESSAGE['MEDIA_CANNOT_DELETE_DIR'] = 'No es pot esborrar la carpeta seleccionada'; |
|
| 521 |
$MESSAGE['MEDIA_CANNOT_DELETE_FILE'] = 'No es pot esborrar el fitxer seleccionat'; |
|
| 522 |
$MESSAGE['MEDIA_CANNOT_RENAME'] = 'No s\'ha pogut canviar el nom'; |
|
| 523 |
$MESSAGE['MEDIA_CONFIRM_DELETE'] = 'Esteu segur que voleu esborrar el següent fitxer o carpeta?'; |
|
| 524 |
$MESSAGE['MEDIA_DELETED_DIR'] = 'Carpeta esborrada amb èxit'; |
|
| 525 |
$MESSAGE['MEDIA_DELETED_FILE'] = 'Fitxer esborrat amb èxit'; |
|
| 526 |
$MESSAGE['MEDIA_DIR_ACCESS_DENIED'] = 'Specified directory does not exist or is not allowed.'; |
|
| 527 |
$MESSAGE['MEDIA_DIR_DOES_NOT_EXIST'] = 'Directory does not exist'; |
|
| 528 |
$MESSAGE['MEDIA_DIR_DOT_DOT_SLASH'] = 'No es pot incloure ../ al nom de la carpeta'; |
|
| 529 |
$MESSAGE['MEDIA_DIR_EXISTS'] = 'Ja existeix una carpeta amb el nom que heu introduït'; |
|
| 530 |
$MESSAGE['MEDIA_DIR_MADE'] = 'Carpeta creada amb èxit'; |
|
| 531 |
$MESSAGE['MEDIA_DIR_NOT_MADE'] = 'No s\'ha pogut crear la carpeta'; |
|
| 532 |
$MESSAGE['MEDIA_FILE_EXISTS'] = 'Ja existeix un fitxer amb el nom que heu introduït'; |
|
| 533 |
$MESSAGE['MEDIA_FILE_NOT_FOUND'] = 'Fitxer no trobat'; |
|
| 534 |
$MESSAGE['MEDIA_NAME_DOT_DOT_SLASH'] = 'No es pot incloure ../ al nom'; |
|
| 535 |
$MESSAGE['MEDIA_NAME_INDEX_PHP'] = 'No es pot usar index.php com a nom'; |
|
| 536 |
$MESSAGE['MEDIA_NONE_FOUND'] = 'No s\'han trobat fitxers a la carpeta actual'; |
|
| 537 |
$MESSAGE['MEDIA_NO_FILE_UPLOADED'] = 'No file was recieved'; |
|
| 538 |
$MESSAGE['MEDIA_RENAMED'] = 'S\'ha canviat el nom amb èxit'; |
|
| 539 |
$MESSAGE['MEDIA_SINGLE_UPLOADED'] = ' fitxer s\'ha penjat amb èxit'; |
|
| 540 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'No es pot tenir ../ a la carpeta de destí'; |
|
| 541 |
$MESSAGE['MEDIA_UPLOADED'] = ' fitxers han estat penjats amb èxit'; |
|
| 542 |
$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>';
|
|
| 544 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'Heu d\'introduir les dades per als següents camps'; |
|
| 545 |
$MESSAGE['PAGES_ADDED'] = 'Pàgina afegida amb èxit'; |
|
| 546 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Capçalera de pàgina afegida amb èxit'; |
|
| 547 |
$MESSAGE['PAGES_BLANK_MENU_TITLE'] = 'Per favor introduïu un títol per al menú'; |
|
| 548 |
$MESSAGE['PAGES_BLANK_PAGE_TITLE'] = 'Per favor introduïu un títol de pàgina'; |
|
| 549 |
$MESSAGE['PAGES_CANNOT_CREATE_ACCESS_FILE'] = 'Error creant el fitxer d\'accés al directori /pages (privilegis insuficients)'; |
|
| 550 |
$MESSAGE['PAGES_CANNOT_DELETE_ACCESS_FILE'] = 'Error esborrant el fitxer d\'accés al directori /pages (privilegis insuficients)'; |
|
| 551 |
$MESSAGE['PAGES_CANNOT_REORDER'] = 'Error re-ordenant pàgina'; |
|
| 552 |
$MESSAGE['PAGES_DELETED'] = 'Pàgina esborrada amb èxit'; |
|
| 553 |
$MESSAGE['PAGES_DELETE_CONFIRM'] = 'Esteu segur de voler esborrar la pàgina seleccionada'; |
|
| 554 |
$MESSAGE['PAGES_INSUFFICIENT_PERMISSIONS'] = 'No teniu permisos per a modificar aquesta pàgina'; |
|
| 555 |
$MESSAGE['PAGES_INTRO_LINK'] = 'Premeu ACÍ per a modificar la pàgina d\'entrada'; |
|
| 556 |
$MESSAGE['PAGES_INTRO_NOT_WRITABLE'] = 'No s\'ha pogut escriure al fitxer /pages/intro.php (privilegis insuficients)'; |
|
| 557 |
$MESSAGE['PAGES_INTRO_SAVED'] = 'Pàgina d\'entrada desada amb èxit'; |
|
| 558 |
$MESSAGE['PAGES_LAST_MODIFIED'] = 'Última modificació per'; |
|
| 559 |
$MESSAGE['PAGES_NOT_FOUND'] = 'No s\'ha trobat la pàgina'; |
|
| 560 |
$MESSAGE['PAGES_NOT_SAVED'] = 'Error desant la pàgina'; |
|
| 561 |
$MESSAGE['PAGES_PAGE_EXISTS'] = 'Existeix una pàgina amb el mateix títol o similar'; |
|
| 562 |
$MESSAGE['PAGES_REORDERED'] = 'Pàgina re-ordenada amb èxit'; |
|
| 563 |
$MESSAGE['PAGES_RESTORED'] = 'Pàgina restaurada amb èxit'; |
|
| 564 |
$MESSAGE['PAGES_RETURN_TO_PAGES'] = 'Torna a les pàgines'; |
|
| 565 |
$MESSAGE['PAGES_SAVED'] = 'Pàgina desada amb èxit'; |
|
| 566 |
$MESSAGE['PAGES_SAVED_SETTINGS'] = 'Paràmetres de pàgina desats amb èxit'; |
|
| 567 |
$MESSAGE['PAGES_SECTIONS_PROPERTIES_SAVED'] = 'Propietats de la secció desades amb èxit'; |
|
| 568 |
$MESSAGE['PREFERENCES_CURRENT_PASSWORD_INCORRECT'] = 'La contrasenya (actual) que heu introduït és incorrecta'; |
|
| 569 |
$MESSAGE['PREFERENCES_DETAILS_SAVED'] = 'Dades desades amb èxit'; |
|
| 570 |
$MESSAGE['PREFERENCES_EMAIL_UPDATED'] = 'Correu actualitzat amb èxit'; |
|
| 571 |
$MESSAGE['PREFERENCES_INVALID_CHARS'] = 'Invalid password chars used'; |
|
| 572 |
$MESSAGE['PREFERENCES_PASSWORD_CHANGED'] = 'Contrasenya canviada amb èxit'; |
|
| 573 |
$MESSAGE['RECORD_MODIFIED_FAILED'] = 'The change of the record has missed.'; |
|
| 574 |
$MESSAGE['RECORD_MODIFIED_SAVED'] = 'The changed record was updated successfully.'; |
|
| 575 |
$MESSAGE['RECORD_NEW_FAILED'] = 'Adding a new record has missed.'; |
|
| 576 |
$MESSAGE['RECORD_NEW_SAVED'] = 'New record was added successfully.'; |
|
| 577 |
$MESSAGE['SETTINGS_MODE_SWITCH_WARNING'] = 'Avís: Prémer aquest botó reinicia tots els canvis no desats'; |
|
| 578 |
$MESSAGE['SETTINGS_SAVED'] = 'Paràmetres desats amb èxit'; |
|
| 579 |
$MESSAGE['SETTINGS_UNABLE_OPEN_CONFIG'] = 'No ha estat possible obrir el fitxer de configuració'; |
|
| 580 |
$MESSAGE['SETTINGS_UNABLE_WRITE_CONFIG'] = 'No es pot escriure al fitxer de configuració'; |
|
| 581 |
$MESSAGE['SETTINGS_WORLD_WRITEABLE_WARNING'] = 'Avís: açò només és recomana per a entorns de proves'; |
|
| 582 |
$MESSAGE['SIGNUP2_ADMIN_INFO'] = ' |
|
| 583 |
A new user was registered. |
|
| 651 |
$TEXT['YES'] = 'Sí'; |
|
| 584 | 652 |
|
| 585 |
Loginname: {LOGIN_NAME}
|
|
| 586 |
UserId: {LOGIN_ID}
|
|
| 587 |
E-Mail: {LOGIN_EMAIL}
|
|
| 588 |
IP-Adress: {LOGIN_IP}
|
|
| 589 |
Registration date: {SIGNUP_DATE}
|
|
| 590 |
---------------------------------------- |
|
| 591 |
This message was automatic generated! |
|
| 592 |
|
|
| 593 |
'; |
|
| 594 |
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = ' |
|
| 595 |
Hello {LOGIN_DISPLAY_NAME},
|
|
| 596 |
|
|
| 597 |
This mail was sent because the \'forgot password\' function has been applied to your account. |
|
| 598 |
|
|
| 599 |
Your new \'{LOGIN_WEBSITE_TITLE}\' login details are:
|
|
| 600 |
|
|
| 601 |
Loginname: {LOGIN_NAME}
|
|
| 602 |
Password: {LOGIN_PASSWORD}
|
|
| 603 |
|
|
| 604 |
Your password has been reset to the one above. |
|
| 605 |
This means that your old password will no longer work anymore! |
|
| 606 |
If you\'ve got any questions or problems within the new login-data |
|
| 607 |
you should contact the website-team or the admin of \'{LOGIN_WEBSITE_TITLE}\'.
|
|
| 608 |
Please remember to clean you browser-cache before using the new one to avoid unexpected fails. |
|
| 609 |
|
|
| 610 |
Regards |
|
| 611 |
------------------------------------ |
|
| 612 |
This message was automatic generated |
|
| 613 |
|
|
| 614 |
'; |
|
| 615 |
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = ' |
|
| 616 |
Hello {LOGIN_DISPLAY_NAME},
|
|
| 617 |
|
|
| 618 |
Welcome to our \'{LOGIN_WEBSITE_TITLE}\'.
|
|
| 619 |
|
|
| 620 |
Your \'{LOGIN_WEBSITE_TITLE}\' login details are:
|
|
| 621 |
Loginname: {LOGIN_NAME}
|
|
| 622 |
Password: {LOGIN_PASSWORD}
|
|
| 623 |
|
|
| 624 |
Regards |
|
| 625 |
|
|
| 626 |
Please: |
|
| 627 |
if you have received this message by an error, please delete it immediately! |
|
| 628 |
------------------------------------- |
|
| 629 |
This message was automatic generated! |
|
| 630 |
'; |
|
| 631 |
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...'; |
|
| 632 |
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Heu d\'Introduir una adreça de correu'; |
|
| 633 |
$MESSAGE['START_CURRENT_USER'] = 'Actualment esteu identificat com a:'; |
|
| 634 |
$MESSAGE['START_INSTALL_DIR_EXISTS'] = 'Atenció, el Directori d\'Instal·lació Encara Existeix!'; |
|
| 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
|
| 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Benvingut/da al Panell de Control de WebsiteBaker'; |
|
| 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Avís: per a canviar la plantilla heu d\'anar a la secció Paràmetres'; |
|
| 638 |
$MESSAGE['THEME_ALREADY_EXISTS'] = 'This new theme descriptor already exists.'; |
|
| 639 |
$MESSAGE['THEME_COPY_CURRENT'] = 'Copy the current active theme and save it with a new name.'; |
|
| 640 |
$MESSAGE['THEME_DESTINATION_READONLY'] = 'No rights to create new theme directory!'; |
|
| 641 |
$MESSAGE['THEME_IMPORT_HTT'] = 'Import additional templates into the current active theme.<br />Use these templates to overwrite the corresponding default template.'; |
|
| 642 |
$MESSAGE['THEME_INVALID_SOURCE_DESTINATION'] = 'Invalid descriptor for the new theme given!'; |
|
| 643 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
| 644 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
| 645 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
| 646 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
| 647 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
| 648 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
| 649 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
| 650 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
| 651 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
| 652 |
$MESSAGE['USERS_ADDED'] = 'Usuari afegit amb èxit'; |
|
| 653 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
|
| 654 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Avís: Només hauríeu d\'introduir valors als camps superiors si voleu canviar aquestes contrasenyes d\'usuari'; |
|
| 655 |
$MESSAGE['USERS_CONFIRM_DELETE'] = 'Esteu segur de voler esborrar l\'usuari seleccionat?'; |
|
| 656 |
$MESSAGE['USERS_DELETED'] = 'Usuari esborrat amb èxit'; |
|
| 657 |
$MESSAGE['USERS_EMAIL_TAKEN'] = 'L\'adreça de correu que heu introduït ja està en ús'; |
|
| 658 |
$MESSAGE['USERS_INVALID_EMAIL'] = 'L\'adreça de correu introduïda és invàlida'; |
|
| 659 |
$MESSAGE['USERS_NAME_INVALID_CHARS'] = 'Invalid chars for Loginname found'; |
|
| 660 |
$MESSAGE['USERS_NO_GROUP'] = 'No s\'ha seleccionat cap grup'; |
|
| 661 |
$MESSAGE['USERS_PASSWORD_MISMATCH'] = 'La contrasenya introduïda no coincideix'; |
|
| 662 |
$MESSAGE['USERS_PASSWORD_TOO_SHORT'] = 'La contrasenya introduïda és massa curta'; |
|
| 663 |
$MESSAGE['USERS_SAVED'] = 'Usuari desat amb èxit'; |
|
| 664 |
$MESSAGE['USERS_USERNAME_TAKEN'] = 'The loginname you entered is already taken'; |
|
| 665 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
|
| 666 |
$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...'; |
|
| 667 |
$OVERVIEW['GROUPS'] = 'Administreu els grups d\'usuaris i els seus permisos de sistema...'; |
|
| 668 |
$OVERVIEW['HELP'] = 'Teniu una pregunta? Trobeu la vostra resposta...'; |
|
| 669 |
$OVERVIEW['LANGUAGES'] = 'Administreu els idiomes de WebsiteBaker...'; |
|
| 670 |
$OVERVIEW['MEDIA'] = 'Administreu la carpeta de fitxers...'; |
|
| 671 |
$OVERVIEW['MODULES'] = 'Administreu els mòduls de WebsiteBaker...'; |
|
| 672 |
$OVERVIEW['PAGES'] = 'Administreu les pàgines de la vostra web...'; |
|
| 673 |
$OVERVIEW['PREFERENCES'] = 'Canvieu les preferències com l\'adreça de correu electrònic, contrasenya, etc... '; |
|
| 674 |
$OVERVIEW['SETTINGS'] = 'Canvieu els paràmetres de WebsiteBaker...'; |
|
| 675 |
$OVERVIEW['START'] = 'Índex d\'Administració'; |
|
| 676 |
$OVERVIEW['TEMPLATES'] = 'Canvieu l\'aspecte i estil de la vostra pàgina amb plantilles...'; |
|
| 677 |
$OVERVIEW['USERS'] = 'Administreu els usuaris que poden identificar-se a WebsiteBaker...'; |
|
| 678 |
$OVERVIEW['VIEW'] = 'Veure i navegar ràpidament la vostra pàgina web en una nova finestra...'; |
|
| 679 |
|
|
| 680 | 653 |
/* include old languages format */ |
| 681 | 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
| 682 | 655 |
{
|
| 683 | 656 | |
Also available in: Unified diff
modified: all core languagefiles changed to pure UTF-8 linux format.
removed: /languages/old.format.inc.php (see deprecated message (2) from 2010!!!)