mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 22:28:51 +01:00
Merge branch 'master' into develop
This commit is contained in:
commit
9bfe90f60d
@ -92,7 +92,7 @@ class HClientScript extends CClientScript
|
||||
public function setJavascriptVariable($name, $value)
|
||||
{
|
||||
|
||||
$jsCode = "var " . $name . " = '" . $value . "';\n";
|
||||
$jsCode = "var " . $name . " = '" . addslashes($value) . "';\n";
|
||||
$this->registerScript('jsVar_' . $name, $jsCode, CClientScript::POS_BEGIN);
|
||||
}
|
||||
|
||||
|
@ -141,6 +141,9 @@ return array(
|
||||
'sk' => 'slovenčina',
|
||||
'ro' => 'română',
|
||||
'ar' => 'العربية/عربي',
|
||||
'ko' => '한국어',
|
||||
'id' => 'Bahasa Indonesia',
|
||||
'lt' => 'lietuvių kalba',
|
||||
),
|
||||
'dynamicConfigFile' => dirname(__FILE__) . '/local/_settings.php',
|
||||
),
|
||||
|
@ -8,7 +8,7 @@ return array(
|
||||
//'sourcePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'../..',
|
||||
'sourcePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..',
|
||||
'messagePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'messages',
|
||||
'languages' => array('de', 'fr', 'nl', 'pt', 'pl', 'pt_br', 'es', 'it', 'tr', 'ru', 'th', 'uk', 'el', 'hu', 'ja', 'nb_no', 'zh_cn', 'ca', 'an', 'cs', 'vi', 'sv', 'da', 'uz', 'fa_ir', 'bg', 'sk', 'en_uk', 'zh_tw', 'ro', 'ar'),
|
||||
'languages' => array('de', 'fr', 'nl', 'pt', 'pl', 'pt_br', 'es', 'it', 'tr', 'ru', 'th', 'uk', 'el', 'hu', 'ja', 'nb_no', 'zh_cn', 'ca', 'an', 'cs', 'vi', 'sv', 'da', 'uz', 'fa_ir', 'bg', 'sk', 'en_uk', 'zh_tw', 'ro', 'ar', 'id', 'ko', 'lt'),
|
||||
'fileTypes' => array('php'),
|
||||
'overwrite' => true,
|
||||
'removeOld' => false,
|
||||
|
@ -3,9 +3,9 @@ return array (
|
||||
'<strong>Latest</strong> updates' => '<strong>Últimes</strong> actualitzacions',
|
||||
'Account settings' => 'Configuració del compte',
|
||||
'Administration' => 'Administració',
|
||||
'Back' => '',
|
||||
'Back' => 'Enrere',
|
||||
'Back to dashboard' => 'Torna a la portada',
|
||||
'Choose language:' => '',
|
||||
'Choose language:' => 'Escull un idioma:',
|
||||
'Collapse' => 'Redueix',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '',
|
||||
'Could not determine content container!' => '',
|
||||
@ -13,19 +13,19 @@ return array (
|
||||
'Could not find requested module!' => 'No s\'ha pogut trobar el mòdul sol·licitat!',
|
||||
'Error' => 'Error',
|
||||
'Expand' => 'Amplia',
|
||||
'Insufficent permissions to create content!' => '',
|
||||
'Invalid request.' => '',
|
||||
'Insufficent permissions to create content!' => 'Permisos insuficients per crear contingut!',
|
||||
'Invalid request.' => 'Petició invàlida.',
|
||||
'It looks like you may have taken the wrong turn.' => '',
|
||||
'Keyword:' => 'Etiqueta:',
|
||||
'Language' => 'Llengua',
|
||||
'Latest news' => 'Últimes notícies',
|
||||
'Login' => '',
|
||||
'Logout' => 'Surt',
|
||||
'Login' => 'Inici de sessió',
|
||||
'Logout' => 'Sortir',
|
||||
'Menu' => 'Menú',
|
||||
'Module is not on this content container enabled!' => '',
|
||||
'My profile' => 'El meu perfil',
|
||||
'New profile image' => 'Nova imatge de perfil',
|
||||
'Nothing found with your input.' => '',
|
||||
'Nothing found with your input.' => 'No s\'ha trobat res en la teva entrada.',
|
||||
'Oooops...' => 'Oooops...',
|
||||
'Results' => 'Resultats',
|
||||
'Search' => 'Cerca',
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Login</strong> required' => '',
|
||||
'<strong>Login</strong> required' => '<strong>Inici de sessió</strong> requerit',
|
||||
);
|
||||
|
@ -1,32 +1,32 @@
|
||||
<?php
|
||||
return array (
|
||||
'Add image/file' => '',
|
||||
'Add link' => '',
|
||||
'Bold' => '',
|
||||
'Code' => '',
|
||||
'Enter a url (e.g. http://example.com)' => '',
|
||||
'Heading' => '',
|
||||
'Image' => '',
|
||||
'Image/File' => '',
|
||||
'Insert Hyperlink' => '',
|
||||
'Insert Image Hyperlink' => '',
|
||||
'Italic' => '',
|
||||
'List' => '',
|
||||
'Please wait while uploading...' => '',
|
||||
'Preview' => '',
|
||||
'Quote' => '',
|
||||
'Target' => '',
|
||||
'Title of your link' => '',
|
||||
'URL/Link' => '',
|
||||
'code text here' => '',
|
||||
'emphasized text' => '',
|
||||
'enter image description here' => '',
|
||||
'enter image title here' => '',
|
||||
'enter link description here' => '',
|
||||
'heading text' => '',
|
||||
'list text here' => '',
|
||||
'quote here' => '',
|
||||
'strong text' => '',
|
||||
'Add image/file' => 'Afegeix una imatge/arxiu',
|
||||
'Add link' => 'Afegeix un enllaç',
|
||||
'Bold' => 'Negreta',
|
||||
'Close' => 'Tanca',
|
||||
'Code' => 'Codi',
|
||||
'Enter a url (e.g. http://example.com)' => 'Entra un enllaç (ex, http://exemple.cat)',
|
||||
'Heading' => 'Títol',
|
||||
'Image' => 'Imatge',
|
||||
'Image/File' => 'Imatge/Arxiu',
|
||||
'Insert Hyperlink' => 'Inserir Hipervincle',
|
||||
'Insert Image Hyperlink' => 'Inserir Hipervincle d\'imatge',
|
||||
'Italic' => 'Cursiva',
|
||||
'List' => 'Llista',
|
||||
'Please wait while uploading...' => 'Si us plau, espereu mentre es carreguen les dades ...',
|
||||
'Preview' => 'Previsualització',
|
||||
'Quote' => 'Cita',
|
||||
'Target' => 'Objectiu',
|
||||
'Title' => 'Títol',
|
||||
'Title of your link' => 'Títol del teu enllaç',
|
||||
'URL/Link' => 'URL/Enllaç',
|
||||
'code text here' => 'text del codi aquí',
|
||||
'emphasized text' => 'text subratllat',
|
||||
'enter image description here' => 'entra la descripció de l\'imatge aquí',
|
||||
'enter image title here' => 'entra el títol de l\'imatge aquí',
|
||||
'enter link description here' => 'entra la descripció de l\'enllaç aquí',
|
||||
'heading text' => 'text del títol',
|
||||
'list text here' => 'text de la llista aquí',
|
||||
'quote here' => 'escriu la cita aquí',
|
||||
'strong text' => 'text en negreta',
|
||||
);
|
||||
|
@ -5,7 +5,7 @@ return array (
|
||||
'Administration' => 'Administrace',
|
||||
'Back' => 'Zpět',
|
||||
'Back to dashboard' => 'Zpět na nástěnku',
|
||||
'Choose language:' => '',
|
||||
'Choose language:' => 'Vyberte jazyk:',
|
||||
'Collapse' => 'Sbalit',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Content Addon musí být buď instancí objektu HActiveRecordContent nebo HActiveRecordContentAddon!',
|
||||
'Could not determine content container!' => 'Nebylo možné zvolit obsahový kontejner.',
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Login</strong> required' => '',
|
||||
'<strong>Login</strong> required' => 'Je nutné <strong>být přihlášen(a)</strong>',
|
||||
);
|
||||
|
@ -1,32 +1,32 @@
|
||||
<?php
|
||||
return array (
|
||||
'Add image/file' => '',
|
||||
'Add link' => '',
|
||||
'Bold' => '',
|
||||
'Code' => '',
|
||||
'Enter a url (e.g. http://example.com)' => '',
|
||||
'Heading' => '',
|
||||
'Image' => '',
|
||||
'Image/File' => '',
|
||||
'Insert Hyperlink' => '',
|
||||
'Insert Image Hyperlink' => '',
|
||||
'Italic' => '',
|
||||
'List' => '',
|
||||
'Please wait while uploading...' => '',
|
||||
'Preview' => '',
|
||||
'Quote' => '',
|
||||
'Target' => '',
|
||||
'Title of your link' => '',
|
||||
'URL/Link' => '',
|
||||
'code text here' => '',
|
||||
'emphasized text' => '',
|
||||
'enter image description here' => '',
|
||||
'enter image title here' => '',
|
||||
'enter link description here' => '',
|
||||
'heading text' => '',
|
||||
'list text here' => '',
|
||||
'quote here' => '',
|
||||
'strong text' => '',
|
||||
'Add image/file' => 'Přidat obrázek/soubor',
|
||||
'Add link' => 'Přidat odkaz',
|
||||
'Bold' => 'Tučně',
|
||||
'Close' => 'Zavřít',
|
||||
'Title' => 'Název',
|
||||
'Code' => 'Kód',
|
||||
'Enter a url (e.g. http://example.com)' => 'Zadejte URL adresu (např. http://example.com)',
|
||||
'Heading' => 'Nadpis',
|
||||
'Image' => 'Obrázek',
|
||||
'Image/File' => 'Obrázek/soubor',
|
||||
'Insert Hyperlink' => 'Vložit odkaz',
|
||||
'Insert Image Hyperlink' => 'Vložit odkaz na obrázek',
|
||||
'Italic' => 'Kurzíva',
|
||||
'List' => 'Seznam',
|
||||
'Please wait while uploading...' => 'Prosím počkejte chvíli, nahrávám soubor...',
|
||||
'Preview' => 'Náhled',
|
||||
'Quote' => 'Citace',
|
||||
'Target' => 'Cíl odkazu',
|
||||
'Title' => 'Titulek',
|
||||
'Title of your link' => 'Napište titulek odkazu',
|
||||
'URL/Link' => 'URL adresa/odkaz',
|
||||
'code text here' => 'zde je místo pro kód',
|
||||
'emphasized text' => 'text kurzívou',
|
||||
'enter image description here' => 'zde je místo pro popis obrázku',
|
||||
'enter image title here' => 'zde je místo pro titulek obrázku',
|
||||
'enter link description here' => 'zde je místo pro popis odkazu',
|
||||
'heading text' => 'text nadpisu',
|
||||
'list text here' => 'odrážka',
|
||||
'quote here' => 'zde je místo pro citaci',
|
||||
'strong text' => 'tučný text',
|
||||
);
|
||||
|
@ -1,38 +1,38 @@
|
||||
<?php
|
||||
return array (
|
||||
'Back' => '',
|
||||
'Back to dashboard' => '',
|
||||
'Choose language:' => '',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '',
|
||||
'Could not determine content container!' => '',
|
||||
'Could not find content of addon!' => '',
|
||||
'Could not find requested module!' => '',
|
||||
'Language' => '',
|
||||
'Login' => '',
|
||||
'Module is not on this content container enabled!' => '',
|
||||
'Nothing found with your input.' => '',
|
||||
'<strong>Latest</strong> updates' => '<strong>Nyeste</ strong> opdateringer',
|
||||
'Account settings' => 'Kontoindstillinger',
|
||||
'Administration' => 'Administration',
|
||||
'Back' => 'Tilbage',
|
||||
'Back to dashboard' => 'Tilbage til dashboard',
|
||||
'Choose language:' => 'Vælg sprog:',
|
||||
'Collapse' => 'Kollaps',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Indholdskilde addon skal være del en af HActiveRecordContent eller HActiveRecordContentAddon!',
|
||||
'Could not determine content container!' => 'Kunne ikke fastslå indholdscontainer!',
|
||||
'Could not find content of addon!' => 'Kunne ikke finde addonindhold!',
|
||||
'Could not find requested module!' => 'Kunne ikke finde det ønskede modul!',
|
||||
'Error' => 'Fejl',
|
||||
'Expand' => 'Udvid',
|
||||
'Insufficent permissions to create content!' => 'Utilstrækkelig tilladelser til at skabe indhold!',
|
||||
'Insufficent permissions to create content!' => 'Utilstrækkelige tilladelser til at skabe indhold!',
|
||||
'Invalid request.' => 'Ugyldig anmodning.',
|
||||
'It looks like you may have taken the wrong turn.' => 'Det ser ud som du måske har taget den forkerte drejning.',
|
||||
'Keyword:' => 'Søgeord:',
|
||||
'Language' => 'Sprog',
|
||||
'Latest news' => 'Sidste nyt',
|
||||
'Login' => 'Log ind',
|
||||
'Logout' => 'Log ud',
|
||||
'Menu' => 'Menu',
|
||||
'Module is not on this content container enabled!' => 'Modulet er ikke aktiveret i denne indholdscontainer!',
|
||||
'My profile' => 'Min profil',
|
||||
'New profile image' => 'Nyt profilbillede',
|
||||
'Nothing found with your input.' => 'Ingenting fundet med din skrivelse.',
|
||||
'Oooops...' => 'Hovsa...',
|
||||
'Results' => 'Resultater',
|
||||
'Search' => 'Søg',
|
||||
'Search for users and spaces' => 'Søg efter brugere og rum',
|
||||
'Search for users and spaces' => 'Søg efter brugere eller sider',
|
||||
'Show more results' => 'Vis flere resultater',
|
||||
'Sorry, nothing found!' => 'Beklager, intet fundet!',
|
||||
'Space not found!' => 'Rum ikke fundet!',
|
||||
'Space not found!' => 'Side ikke fundet!',
|
||||
'User Approvals' => 'Bruger godkendelser',
|
||||
'User not found!' => 'Bruger ikke fundet!',
|
||||
'Welcome to %appName%' => 'Velkommen til %appName%',
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Login</strong> required' => '',
|
||||
'<strong>Login</strong> required' => '<strong>Log ind</strong> kræves',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Global {global} array cleaned using {method} method.' => '',
|
||||
'Global {global} array cleaned using {method} method.' => 'Global {global} array er rengjort ved brug af {method} metode.',
|
||||
);
|
||||
|
@ -1,32 +1,32 @@
|
||||
<?php
|
||||
return array (
|
||||
'Add image/file' => '',
|
||||
'Add link' => '',
|
||||
'Bold' => '',
|
||||
'Code' => '',
|
||||
'Enter a url (e.g. http://example.com)' => '',
|
||||
'Heading' => '',
|
||||
'Image' => '',
|
||||
'Image/File' => '',
|
||||
'Insert Hyperlink' => '',
|
||||
'Insert Image Hyperlink' => '',
|
||||
'Italic' => '',
|
||||
'List' => '',
|
||||
'Please wait while uploading...' => '',
|
||||
'Preview' => '',
|
||||
'Quote' => '',
|
||||
'Target' => '',
|
||||
'Title of your link' => '',
|
||||
'URL/Link' => '',
|
||||
'code text here' => '',
|
||||
'emphasized text' => '',
|
||||
'enter image description here' => '',
|
||||
'enter image title here' => '',
|
||||
'enter link description here' => '',
|
||||
'heading text' => '',
|
||||
'list text here' => '',
|
||||
'quote here' => '',
|
||||
'strong text' => '',
|
||||
'Add image/file' => 'Tilføj billede/fil',
|
||||
'Add link' => 'Tilføj link',
|
||||
'Bold' => 'Fed',
|
||||
'Close' => 'Luk',
|
||||
'Code' => 'Kode',
|
||||
'Enter a url (e.g. http://example.com)' => 'Indtast en url (e.g. http://example.com)',
|
||||
'Heading' => 'Overskrift',
|
||||
'Image' => 'Billede',
|
||||
'Image/File' => 'Billede/fil',
|
||||
'Insert Hyperlink' => 'Indsæt Hyperlink',
|
||||
'Insert Image Hyperlink' => 'Indsæt Billede Hyperlink',
|
||||
'Italic' => 'Kursiv',
|
||||
'List' => 'Liste',
|
||||
'Please wait while uploading...' => 'Vent venligst, uploader...',
|
||||
'Preview' => 'Forhåndsvisning',
|
||||
'Quote' => 'Citat',
|
||||
'Target' => 'Mål',
|
||||
'Title' => 'Titel',
|
||||
'Title of your link' => 'Titel til dit link',
|
||||
'URL/Link' => 'URL/Link',
|
||||
'code text here' => 'kode tekst her',
|
||||
'emphasized text' => 'understreget tekst',
|
||||
'enter image description here' => 'skriv billede beskrivelse her',
|
||||
'enter image title here' => 'skriv billede titel her',
|
||||
'enter link description here' => 'skriv link beskrivelse her',
|
||||
'heading text' => 'overskrifts tekst',
|
||||
'list text here' => 'liste tekst her',
|
||||
'quote here' => 'citat her',
|
||||
'strong text' => 'fed tekst',
|
||||
);
|
||||
|
@ -5,23 +5,23 @@ return array (
|
||||
'Bold' => 'Fett',
|
||||
'Close' => 'Schließen',
|
||||
'Code' => 'Code',
|
||||
'Enter a url (e.g. http://example.com)' => 'Trage eine URL ein (zB http://example.com)',
|
||||
'Enter a url (e.g. http://example.com)' => 'Trage eine URL ein (z.B. http://example.com)',
|
||||
'Heading' => 'Überschrift',
|
||||
'Image' => 'Bild',
|
||||
'Image/File' => 'Bild/Datei',
|
||||
'Insert Hyperlink' => 'Hyperlink einfügen',
|
||||
'Insert Image Hyperlink' => 'Hyperlink Bild einfügen ',
|
||||
'Italic' => '',
|
||||
'Italic' => 'Kursiv',
|
||||
'List' => 'Liste',
|
||||
'Please wait while uploading...' => '',
|
||||
'Please wait while uploading...' => 'Wird hochgeladen...',
|
||||
'Preview' => 'Vorschau',
|
||||
'Quote' => '',
|
||||
'Quote' => 'Zitat',
|
||||
'Target' => 'Ziel',
|
||||
'Title' => 'Titel',
|
||||
'Title of your link' => 'Link Name',
|
||||
'URL/Link' => 'URL/Link',
|
||||
'code text here' => '',
|
||||
'emphasized text' => '',
|
||||
'code text here' => 'Code hier einfügen',
|
||||
'emphasized text' => 'Hervorgehobener Text',
|
||||
'enter image description here' => '',
|
||||
'enter image title here' => '',
|
||||
'enter link description here' => '',
|
||||
|
@ -1,32 +1,32 @@
|
||||
<?php
|
||||
return array (
|
||||
'Bold' => '',
|
||||
'Code' => '',
|
||||
'Heading' => '',
|
||||
'Image' => '',
|
||||
'Image/File' => '',
|
||||
'Insert Hyperlink' => '',
|
||||
'Insert Image Hyperlink' => '',
|
||||
'Italic' => '',
|
||||
'List' => '',
|
||||
'Preview' => '',
|
||||
'Quote' => '',
|
||||
'Title of your link' => '',
|
||||
'URL/Link' => '',
|
||||
'code text here' => '',
|
||||
'emphasized text' => '',
|
||||
'enter image description here' => '',
|
||||
'enter image title here' => '',
|
||||
'enter link description here' => '',
|
||||
'heading text' => '',
|
||||
'list text here' => '',
|
||||
'quote here' => '',
|
||||
'strong text' => '',
|
||||
'Add image/file' => 'Añadir imagen/archivo',
|
||||
'Add link' => 'Añadir enlace',
|
||||
'Bold' => 'Negrita',
|
||||
'Close' => 'Cerrar',
|
||||
'Code' => 'Código',
|
||||
'Enter a url (e.g. http://example.com)' => 'Añade un enlace (ej. http://ejemplo.com)',
|
||||
'Heading' => 'Título',
|
||||
'Image' => 'Imagen',
|
||||
'Image/File' => 'Imagen/Archivo',
|
||||
'Insert Hyperlink' => 'Insertar hipervínculo',
|
||||
'Insert Image Hyperlink' => 'Insertar imagen',
|
||||
'Italic' => 'Cursiva',
|
||||
'List' => 'Lista',
|
||||
'Please wait while uploading...' => 'Por favor, espera mientras se sube...',
|
||||
'Preview' => 'Previsualizar',
|
||||
'Quote' => 'Cita',
|
||||
'Target' => 'Target',
|
||||
'Title' => 'Título',
|
||||
'Title of your link' => 'Título de tu enlace',
|
||||
'URL/Link' => 'URL/Enlace',
|
||||
'code text here' => 'Texto con código aquí',
|
||||
'emphasized text' => 'Texto subrayado',
|
||||
'enter image description here' => 'Escribe la descripción de la imagen aquí',
|
||||
'enter image title here' => 'Escribe el título de la imagen aquí',
|
||||
'enter link description here' => 'Escribe la descripción del enlace aquí',
|
||||
'heading text' => 'Texto de cabecera',
|
||||
'list text here' => 'Lista de texto aquí',
|
||||
'quote here' => 'Citar aquí',
|
||||
'strong text' => 'Texto en negrita',
|
||||
);
|
||||
|
@ -5,9 +5,9 @@ return array (
|
||||
'Administration' => 'مدیریت',
|
||||
'Back' => 'بازگشت',
|
||||
'Back to dashboard' => 'بازگشت به خانه',
|
||||
'Choose language:' => '',
|
||||
'Choose language:' => 'زبان را انتخاب کنید:',
|
||||
'Collapse' => 'جمع شدن',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!',
|
||||
'Could not determine content container!' => 'نگهدارندهی محتوا قابل شناسایی نیست!',
|
||||
'Could not find content of addon!' => 'محتوای افزونه پیدانشد!',
|
||||
'Could not find requested module!' => 'ماژول درخواستشده پیدانشد!',
|
||||
@ -17,9 +17,9 @@ return array (
|
||||
'Invalid request.' => 'درخواست نامعتبر.',
|
||||
'It looks like you may have taken the wrong turn.' => 'به نظر میرسد مسیر اشتباه را طی کردهاید.',
|
||||
'Keyword:' => 'کلیدواژه:',
|
||||
'Language' => '',
|
||||
'Language' => 'زبان',
|
||||
'Latest news' => 'آخرین اخبار',
|
||||
'Login' => '',
|
||||
'Login' => 'ورود',
|
||||
'Logout' => 'خروج',
|
||||
'Menu' => 'منو',
|
||||
'Module is not on this content container enabled!' => 'ماژول در این نگهدارندهی محتوا فعال نیست!',
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Login</strong> required' => '',
|
||||
'<strong>Login</strong> required' => '<strong>ورود</strong> لازم است',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Global {global} array cleaned using {method} method.' => '',
|
||||
'Global {global} array cleaned using {method} method.' => 'Global {global} array cleaned using {method} method.',
|
||||
);
|
||||
|
@ -1,32 +1,32 @@
|
||||
<?php
|
||||
return array (
|
||||
'Add image/file' => '',
|
||||
'Add link' => '',
|
||||
'Bold' => '',
|
||||
'Code' => '',
|
||||
'Enter a url (e.g. http://example.com)' => '',
|
||||
'Heading' => '',
|
||||
'Image' => '',
|
||||
'Image/File' => '',
|
||||
'Insert Hyperlink' => '',
|
||||
'Insert Image Hyperlink' => '',
|
||||
'Italic' => '',
|
||||
'List' => '',
|
||||
'Please wait while uploading...' => '',
|
||||
'Preview' => '',
|
||||
'Quote' => '',
|
||||
'Target' => '',
|
||||
'Title of your link' => '',
|
||||
'URL/Link' => '',
|
||||
'code text here' => '',
|
||||
'emphasized text' => '',
|
||||
'enter image description here' => '',
|
||||
'enter image title here' => '',
|
||||
'enter link description here' => '',
|
||||
'heading text' => '',
|
||||
'list text here' => '',
|
||||
'quote here' => '',
|
||||
'strong text' => '',
|
||||
'Add image/file' => 'اضافه کردن عکس/فایل',
|
||||
'Add link' => 'اضافه کردن لینک',
|
||||
'Bold' => 'پررنگ',
|
||||
'Close' => 'بستن',
|
||||
'Code' => 'کد',
|
||||
'Enter a url (e.g. http://example.com)' => 'یک آدرس وارد کنید (مثلا: http://example.com)',
|
||||
'Heading' => 'تیتر',
|
||||
'Image' => 'عکس',
|
||||
'Image/File' => 'عکس/فایل',
|
||||
'Insert Hyperlink' => 'هایپر لینک را وارد کنید',
|
||||
'Insert Image Hyperlink' => 'هایپر لینک عکس را وارد کنید',
|
||||
'Italic' => 'Italic',
|
||||
'List' => 'لیست',
|
||||
'Please wait while uploading...' => 'لطفا تا بارگذاری صبر کنید',
|
||||
'Preview' => 'پیشنمایش',
|
||||
'Quote' => 'نقل قول',
|
||||
'Target' => 'هدف',
|
||||
'Title' => 'عنوان',
|
||||
'Title of your link' => 'عنوان لینک شما',
|
||||
'URL/Link' => 'آدرس/لینک',
|
||||
'code text here' => 'متن را اینجا کد کنید',
|
||||
'emphasized text' => 'متن تاکیدشده',
|
||||
'enter image description here' => 'توضیحات عکی را اینجا وارد کنید',
|
||||
'enter image title here' => 'عنوان عکس را اینجا وارد کنید',
|
||||
'enter link description here' => 'توضیحات لینک را اینجا وارد کنید',
|
||||
'heading text' => 'متن تیتر',
|
||||
'list text here' => 'متن را اینجا لیست کنید',
|
||||
'quote here' => 'اینجا بیان کنید',
|
||||
'strong text' => 'متن پررنگ',
|
||||
);
|
||||
|
@ -5,7 +5,7 @@ return array (
|
||||
'Administration' => 'Administration',
|
||||
'Back' => 'Retour',
|
||||
'Back to dashboard' => 'Retour au tableau de bord',
|
||||
'Choose language:' => '',
|
||||
'Choose language:' => 'Langage :',
|
||||
'Collapse' => 'Réduire',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Le contenu d\'un add-on doit être une instance de HActiveRecordContent ou HActiveRecordContentAddon!',
|
||||
'Could not determine content container!' => 'Le contenu du conteneur ne peut être déterminé',
|
||||
@ -19,7 +19,7 @@ return array (
|
||||
'Keyword:' => 'Mot-clé:',
|
||||
'Language' => 'Langue',
|
||||
'Latest news' => 'Dernières nouvelles',
|
||||
'Login' => '',
|
||||
'Login' => 'Login',
|
||||
'Logout' => 'Se déconnecter',
|
||||
'Menu' => 'Menu',
|
||||
'Module is not on this content container enabled!' => 'Le module n\'est pas activé pour ce conteneur',
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Login</strong> required' => '',
|
||||
'<strong>Login</strong> required' => '<strong>Login</strong> requis',
|
||||
);
|
||||
|
@ -1,23 +1,25 @@
|
||||
<?php
|
||||
return array (
|
||||
'Add image/file' => '',
|
||||
'Add link' => '',
|
||||
'Bold' => '',
|
||||
'Code' => '',
|
||||
'Enter a url (e.g. http://example.com)' => '',
|
||||
'Heading' => '',
|
||||
'Image' => '',
|
||||
'Image/File' => '',
|
||||
'Insert Hyperlink' => '',
|
||||
'Insert Image Hyperlink' => '',
|
||||
'Italic' => '',
|
||||
'List' => '',
|
||||
'Please wait while uploading...' => '',
|
||||
'Preview' => '',
|
||||
'Quote' => '',
|
||||
'Target' => '',
|
||||
'Title of your link' => '',
|
||||
'URL/Link' => '',
|
||||
'Add image/file' => 'Ajouter une image/fichier',
|
||||
'Add link' => 'Ajouter un lien',
|
||||
'Bold' => 'Gras',
|
||||
'Close' => 'Fermer',
|
||||
'Code' => 'Code',
|
||||
'Enter a url (e.g. http://example.com)' => 'Entrez un URL',
|
||||
'Heading' => 'Entête',
|
||||
'Image' => 'Image',
|
||||
'Image/File' => 'Image/fichier',
|
||||
'Insert Hyperlink' => 'Insérer un lien',
|
||||
'Insert Image Hyperlink' => 'Insérer un lien vers image',
|
||||
'Italic' => 'Italique',
|
||||
'List' => 'Liste',
|
||||
'Please wait while uploading...' => 'Veuillez patienter pendant le chargement...',
|
||||
'Preview' => 'Prévisualiser',
|
||||
'Quote' => 'Citation',
|
||||
'Target' => 'Destination',
|
||||
'Title' => 'Titre',
|
||||
'Title of your link' => 'Titre de votre lien',
|
||||
'URL/Link' => 'URL/lien',
|
||||
'code text here' => '',
|
||||
'emphasized text' => '',
|
||||
'enter image description here' => '',
|
||||
@ -27,6 +29,4 @@ return array (
|
||||
'list text here' => '',
|
||||
'quote here' => '',
|
||||
'strong text' => '',
|
||||
'Close' => 'Fermer',
|
||||
'Title' => 'Titre',
|
||||
);
|
||||
|
41
protected/messages/id/base.php
Normal file
41
protected/messages/id/base.php
Normal file
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Latest</strong> updates' => '',
|
||||
'Account settings' => '',
|
||||
'Administration' => '',
|
||||
'Back' => '',
|
||||
'Back to dashboard' => '',
|
||||
'Choose language:' => '',
|
||||
'Collapse' => '',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '',
|
||||
'Could not determine content container!' => '',
|
||||
'Could not find content of addon!' => '',
|
||||
'Could not find requested module!' => '',
|
||||
'Error' => '',
|
||||
'Expand' => '',
|
||||
'Insufficent permissions to create content!' => '',
|
||||
'Invalid request.' => '',
|
||||
'It looks like you may have taken the wrong turn.' => '',
|
||||
'Keyword:' => '',
|
||||
'Language' => '',
|
||||
'Latest news' => '',
|
||||
'Login' => '',
|
||||
'Logout' => '',
|
||||
'Menu' => '',
|
||||
'Module is not on this content container enabled!' => '',
|
||||
'My profile' => '',
|
||||
'New profile image' => '',
|
||||
'Nothing found with your input.' => '',
|
||||
'Oooops...' => '',
|
||||
'Results' => '',
|
||||
'Search' => '',
|
||||
'Search for users and spaces' => '',
|
||||
'Show more results' => '',
|
||||
'Sorry, nothing found!' => '',
|
||||
'Space not found!' => '',
|
||||
'User Approvals' => '',
|
||||
'User not found!' => '',
|
||||
'Welcome to %appName%' => '',
|
||||
'You cannot create public visible content!' => '',
|
||||
'Your daily summary' => '',
|
||||
);
|
4
protected/messages/id/error.php
Normal file
4
protected/messages/id/error.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Login</strong> required' => '',
|
||||
);
|
4
protected/messages/id/security.php
Normal file
4
protected/messages/id/security.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'Global {global} array cleaned using {method} method.' => '',
|
||||
);
|
32
protected/messages/id/widgets_views_markdownEditor.php
Normal file
32
protected/messages/id/widgets_views_markdownEditor.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
return array (
|
||||
'Add image/file' => '',
|
||||
'Add link' => '',
|
||||
'Bold' => '',
|
||||
'Close' => '',
|
||||
'Code' => '',
|
||||
'Enter a url (e.g. http://example.com)' => '',
|
||||
'Heading' => '',
|
||||
'Image' => '',
|
||||
'Image/File' => '',
|
||||
'Insert Hyperlink' => '',
|
||||
'Insert Image Hyperlink' => '',
|
||||
'Italic' => '',
|
||||
'List' => '',
|
||||
'Please wait while uploading...' => '',
|
||||
'Preview' => '',
|
||||
'Quote' => '',
|
||||
'Target' => '',
|
||||
'Title' => '',
|
||||
'Title of your link' => '',
|
||||
'URL/Link' => '',
|
||||
'code text here' => '',
|
||||
'emphasized text' => '',
|
||||
'enter image description here' => '',
|
||||
'enter image title here' => '',
|
||||
'enter link description here' => '',
|
||||
'heading text' => '',
|
||||
'list text here' => '',
|
||||
'quote here' => '',
|
||||
'strong text' => '',
|
||||
);
|
41
protected/messages/ko/base.php
Normal file
41
protected/messages/ko/base.php
Normal file
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Latest</strong> updates' => '<strong>최신</strong> 업데이트',
|
||||
'Account settings' => '계정 설정',
|
||||
'Administration' => '관리',
|
||||
'Back' => '돌아가기',
|
||||
'Back to dashboard' => '대시보드로 돌아가기',
|
||||
'Choose language:' => '언어 선택:',
|
||||
'Collapse' => '접기',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Content Addon 소스는 반드시 HActiveRecordContent 또는 HActiveRecordContentAddon의 인스턴스여야 합니다!',
|
||||
'Could not determine content container!' => '컨텐츠 컨테이너를 결정할 수 없습니다!',
|
||||
'Could not find content of addon!' => '애드온 컨텐츠를 찾을 수 없습니다!',
|
||||
'Could not find requested module!' => '요청한 모듈을 찾을 수 없습니다!',
|
||||
'Error' => '오류',
|
||||
'Expand' => '펼치기',
|
||||
'Insufficent permissions to create content!' => '컨텐츠를 생성할 권한이 없습니다!',
|
||||
'Invalid request.' => '',
|
||||
'It looks like you may have taken the wrong turn.' => '',
|
||||
'Keyword:' => '',
|
||||
'Language' => '',
|
||||
'Latest news' => '',
|
||||
'Login' => '',
|
||||
'Logout' => '',
|
||||
'Menu' => '',
|
||||
'Module is not on this content container enabled!' => '',
|
||||
'My profile' => '',
|
||||
'New profile image' => '',
|
||||
'Nothing found with your input.' => '',
|
||||
'Oooops...' => '',
|
||||
'Results' => '',
|
||||
'Search' => '',
|
||||
'Search for users and spaces' => '',
|
||||
'Show more results' => '',
|
||||
'Sorry, nothing found!' => '',
|
||||
'Space not found!' => '',
|
||||
'User Approvals' => '',
|
||||
'User not found!' => '',
|
||||
'Welcome to %appName%' => '',
|
||||
'You cannot create public visible content!' => '',
|
||||
'Your daily summary' => '',
|
||||
);
|
4
protected/messages/ko/error.php
Normal file
4
protected/messages/ko/error.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Login</strong> required' => '',
|
||||
);
|
4
protected/messages/ko/security.php
Normal file
4
protected/messages/ko/security.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'Global {global} array cleaned using {method} method.' => '',
|
||||
);
|
32
protected/messages/ko/widgets_views_markdownEditor.php
Normal file
32
protected/messages/ko/widgets_views_markdownEditor.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
return array (
|
||||
'Add image/file' => '',
|
||||
'Add link' => '',
|
||||
'Bold' => '',
|
||||
'Close' => '',
|
||||
'Code' => '',
|
||||
'Enter a url (e.g. http://example.com)' => '',
|
||||
'Heading' => '',
|
||||
'Image' => '',
|
||||
'Image/File' => '',
|
||||
'Insert Hyperlink' => '',
|
||||
'Insert Image Hyperlink' => '',
|
||||
'Italic' => '',
|
||||
'List' => '',
|
||||
'Please wait while uploading...' => '',
|
||||
'Preview' => '',
|
||||
'Quote' => '',
|
||||
'Target' => '',
|
||||
'Title' => '',
|
||||
'Title of your link' => '',
|
||||
'URL/Link' => '',
|
||||
'code text here' => '',
|
||||
'emphasized text' => '',
|
||||
'enter image description here' => '',
|
||||
'enter image title here' => '',
|
||||
'enter link description here' => '',
|
||||
'heading text' => '',
|
||||
'list text here' => '',
|
||||
'quote here' => '',
|
||||
'strong text' => '',
|
||||
);
|
41
protected/messages/lt/base.php
Normal file
41
protected/messages/lt/base.php
Normal file
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Latest</strong> updates' => '',
|
||||
'Account settings' => '',
|
||||
'Administration' => '',
|
||||
'Back' => '',
|
||||
'Back to dashboard' => '',
|
||||
'Choose language:' => '',
|
||||
'Collapse' => '',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '',
|
||||
'Could not determine content container!' => '',
|
||||
'Could not find content of addon!' => '',
|
||||
'Could not find requested module!' => '',
|
||||
'Error' => '',
|
||||
'Expand' => '',
|
||||
'Insufficent permissions to create content!' => '',
|
||||
'Invalid request.' => '',
|
||||
'It looks like you may have taken the wrong turn.' => '',
|
||||
'Keyword:' => '',
|
||||
'Language' => '',
|
||||
'Latest news' => '',
|
||||
'Login' => '',
|
||||
'Logout' => '',
|
||||
'Menu' => '',
|
||||
'Module is not on this content container enabled!' => '',
|
||||
'My profile' => '',
|
||||
'New profile image' => '',
|
||||
'Nothing found with your input.' => '',
|
||||
'Oooops...' => '',
|
||||
'Results' => '',
|
||||
'Search' => '',
|
||||
'Search for users and spaces' => '',
|
||||
'Show more results' => '',
|
||||
'Sorry, nothing found!' => '',
|
||||
'Space not found!' => '',
|
||||
'User Approvals' => '',
|
||||
'User not found!' => '',
|
||||
'Welcome to %appName%' => '',
|
||||
'You cannot create public visible content!' => '',
|
||||
'Your daily summary' => '',
|
||||
);
|
4
protected/messages/lt/error.php
Normal file
4
protected/messages/lt/error.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Login</strong> required' => '',
|
||||
);
|
4
protected/messages/lt/security.php
Normal file
4
protected/messages/lt/security.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'Global {global} array cleaned using {method} method.' => '',
|
||||
);
|
32
protected/messages/lt/widgets_views_markdownEditor.php
Normal file
32
protected/messages/lt/widgets_views_markdownEditor.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
return array (
|
||||
'Add image/file' => '',
|
||||
'Add link' => '',
|
||||
'Bold' => '',
|
||||
'Close' => '',
|
||||
'Code' => '',
|
||||
'Enter a url (e.g. http://example.com)' => '',
|
||||
'Heading' => '',
|
||||
'Image' => '',
|
||||
'Image/File' => '',
|
||||
'Insert Hyperlink' => '',
|
||||
'Insert Image Hyperlink' => '',
|
||||
'Italic' => '',
|
||||
'List' => '',
|
||||
'Please wait while uploading...' => '',
|
||||
'Preview' => '',
|
||||
'Quote' => '',
|
||||
'Target' => '',
|
||||
'Title' => '',
|
||||
'Title of your link' => '',
|
||||
'URL/Link' => '',
|
||||
'code text here' => '',
|
||||
'emphasized text' => '',
|
||||
'enter image description here' => '',
|
||||
'enter image title here' => '',
|
||||
'enter link description here' => '',
|
||||
'heading text' => '',
|
||||
'list text here' => '',
|
||||
'quote here' => '',
|
||||
'strong text' => '',
|
||||
);
|
@ -5,8 +5,8 @@ return array (
|
||||
'Administration' => 'Administração',
|
||||
'Back' => 'Voltar',
|
||||
'Back to dashboard' => 'Voltar para o painel',
|
||||
'Choose language:' => '',
|
||||
'Collapse' => 'Colapso',
|
||||
'Choose language:' => 'Escolha o idioma:',
|
||||
'Collapse' => 'Minimizar',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Conteúdo fonte Addon deve ser instância de HActiveRecordContent ou HActiveRecordContentAddon!',
|
||||
'Could not determine content container!' => 'Não foi possível determinar o conteúdo!',
|
||||
'Could not find content of addon!' => 'Não foi possível encontrar o conteúdo !',
|
||||
@ -19,7 +19,7 @@ return array (
|
||||
'Keyword:' => 'Palavra-chave:',
|
||||
'Language' => 'Língua',
|
||||
'Latest news' => 'Últimas notícias',
|
||||
'Login' => '',
|
||||
'Login' => 'Login',
|
||||
'Logout' => 'Sair',
|
||||
'Menu' => 'Menu',
|
||||
'Module is not on this content container enabled!' => 'O módulo não está habilitado para este container!',
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Login</strong> required' => '',
|
||||
'<strong>Login</strong> required' => '<strong>Login</strong> Requerido',
|
||||
);
|
||||
|
@ -1,32 +1,32 @@
|
||||
<?php
|
||||
return array (
|
||||
'Bold' => '',
|
||||
'Code' => '',
|
||||
'Heading' => '',
|
||||
'Image' => '',
|
||||
'Image/File' => '',
|
||||
'Insert Hyperlink' => '',
|
||||
'Insert Image Hyperlink' => '',
|
||||
'Italic' => '',
|
||||
'List' => '',
|
||||
'Please wait while uploading...' => '',
|
||||
'Preview' => '',
|
||||
'Quote' => '',
|
||||
'Target' => '',
|
||||
'URL/Link' => '',
|
||||
'code text here' => '',
|
||||
'emphasized text' => '',
|
||||
'enter image description here' => '',
|
||||
'enter image title here' => '',
|
||||
'enter link description here' => '',
|
||||
'heading text' => '',
|
||||
'Add image/file' => 'Adicionar imagem / arquivo',
|
||||
'Add link' => 'Adicionar Link',
|
||||
'Bold' => 'Negrito',
|
||||
'Close' => 'Fechar',
|
||||
'Code' => 'Código',
|
||||
'Enter a url (e.g. http://example.com)' => 'Digite uma URL',
|
||||
'Heading' => 'Título',
|
||||
'Image' => 'Imagem',
|
||||
'Image/File' => 'Imagem/Arquivo',
|
||||
'Insert Hyperlink' => 'Inserir Hyperlink',
|
||||
'Insert Image Hyperlink' => 'Inserir imagem com Hyperlink',
|
||||
'Italic' => 'Itálico',
|
||||
'List' => 'Lista',
|
||||
'Please wait while uploading...' => 'Por favor aguarde enquanto o arquivo é carregado',
|
||||
'Preview' => 'Pré-visualizar',
|
||||
'Quote' => 'Cota',
|
||||
'Target' => 'Alvo',
|
||||
'Title' => 'Tìtulo',
|
||||
'Title of your link' => 'Título do seu link',
|
||||
'URL/Link' => 'URL/Link',
|
||||
'code text here' => 'Código aqui',
|
||||
'emphasized text' => 'Texto enfatizado',
|
||||
'enter image description here' => 'Insira a descrição da imagem aqui',
|
||||
'enter image title here' => 'Insira o título da imagem aqui',
|
||||
'enter link description here' => 'Insira descrição do link aqui',
|
||||
'heading text' => 'Texto do cabeçalho ',
|
||||
'list text here' => '',
|
||||
'quote here' => '',
|
||||
'strong text' => '',
|
||||
'Add image/file' => 'Adicionar imagem / arquivo',
|
||||
'Add link' => 'Adicionar Link',
|
||||
'Close' => 'Fechar',
|
||||
'Enter a url (e.g. http://example.com)' => 'Digite uma URL',
|
||||
'Title' => 'Tìtulo',
|
||||
'Title of your link' => 'Título do seu link',
|
||||
);
|
||||
|
@ -1,32 +1,32 @@
|
||||
<?php
|
||||
return array (
|
||||
'Bold' => '',
|
||||
'Code' => '',
|
||||
'Heading' => '',
|
||||
'Image' => '',
|
||||
'Image/File' => '',
|
||||
'Insert Hyperlink' => '',
|
||||
'Insert Image Hyperlink' => '',
|
||||
'Italic' => '',
|
||||
'List' => '',
|
||||
'Preview' => '',
|
||||
'Quote' => '',
|
||||
'URL/Link' => '',
|
||||
'code text here' => '',
|
||||
'emphasized text' => '',
|
||||
'enter image description here' => '',
|
||||
'enter image title here' => '',
|
||||
'enter link description here' => '',
|
||||
'heading text' => '',
|
||||
'list text here' => '',
|
||||
'quote here' => '',
|
||||
'strong text' => '',
|
||||
'Add image/file' => 'Adaugă imagine/fișier',
|
||||
'Add link' => 'Adaugă legătură',
|
||||
'Bold' => 'Îngroșat',
|
||||
'Close' => 'Închide',
|
||||
'Code' => 'Cod',
|
||||
'Enter a url (e.g. http://example.com)' => 'Introdu o legătură (ex: http://exemplu.ro)',
|
||||
'Heading' => 'Antet',
|
||||
'Image' => 'Imagine',
|
||||
'Image/File' => 'Imagine/Fișier',
|
||||
'Insert Hyperlink' => 'Inserează Hiperlegătură',
|
||||
'Insert Image Hyperlink' => 'Inserează Hiperlegătura Imaginii',
|
||||
'Italic' => 'Înclinat',
|
||||
'List' => 'Listă',
|
||||
'Please wait while uploading...' => 'Te rugăm să aștepți până se încarcă...',
|
||||
'Preview' => 'Previzualizare',
|
||||
'Quote' => 'Citat',
|
||||
'Target' => 'Țintă',
|
||||
'Title' => 'Titlul',
|
||||
'Title of your link' => 'Titlul legăturii tale',
|
||||
'URL/Link' => 'URL/Legătură',
|
||||
'code text here' => 'textul codului aici',
|
||||
'emphasized text' => 'text subliniat',
|
||||
'enter image description here' => 'introdu descrierea imaginii aici',
|
||||
'enter image title here' => 'introdu titlul imaginii aici',
|
||||
'enter link description here' => 'introdu descrierea legăturii aici',
|
||||
'heading text' => 'textul antetului',
|
||||
'list text here' => 'textul listei aici',
|
||||
'quote here' => 'citatul aici',
|
||||
'strong text' => 'text îngroșat',
|
||||
);
|
||||
|
@ -15,7 +15,7 @@ return array (
|
||||
'List' => 'Список',
|
||||
'Please wait while uploading...' => 'Пожалуйста, подождите пока загружается ...',
|
||||
'Preview' => 'Предпросмотр',
|
||||
'Quote' => 'Цитировать',
|
||||
'Quote' => 'Цитата',
|
||||
'Target' => 'Цель',
|
||||
'Title' => 'Заголовок',
|
||||
'Title of your link' => 'Название вашей ссылки',
|
||||
|
@ -1,28 +1,28 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Latest</strong> updates' => '',
|
||||
'Back' => '',
|
||||
'Choose language:' => '',
|
||||
'Account settings' => 'ตั้งค่าบัญชี',
|
||||
'Administration' => 'ผู้ดูแลระบบ',
|
||||
'Back' => 'กลับ',
|
||||
'Back to dashboard' => 'กลับสู่แดชบอร์ด',
|
||||
'Choose language:' => 'เลือกภาษา',
|
||||
'Collapse' => 'ย่อ',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '',
|
||||
'Could not determine content container!' => '',
|
||||
'Could not find content of addon!' => '',
|
||||
'Could not find requested module!' => '',
|
||||
'Language' => '',
|
||||
'Login' => '',
|
||||
'Module is not on this content container enabled!' => '',
|
||||
'Account settings' => 'ตั้งค่าบัญชี',
|
||||
'Administration' => 'ผู้ดูแลระบบ',
|
||||
'Back to dashboard' => 'กลับสู่แดชบอร์ด',
|
||||
'Collapse' => 'ย่อ',
|
||||
'Error' => 'พบข้อผิดพลาด',
|
||||
'Expand' => 'ขยาย',
|
||||
'Insufficent permissions to create content!' => 'คุณไม่มีสิทธิพอในการสร้างเนื้อหา',
|
||||
'Invalid request.' => 'การดำเนินการไม่ถูกต้อง',
|
||||
'It looks like you may have taken the wrong turn.' => 'ดูเหมือนว่าคุณได้พบข้อผิดพลาด',
|
||||
'Keyword:' => 'คำค้นหา:',
|
||||
'Language' => 'ภาษา',
|
||||
'Latest news' => 'ข่าวล่าสุด',
|
||||
'Login' => 'เข้าสู่ระบบ',
|
||||
'Logout' => 'ออกจากระบบ',
|
||||
'Menu' => 'เมนู',
|
||||
'Module is not on this content container enabled!' => '',
|
||||
'My profile' => 'โปรไฟล์ของฉัน',
|
||||
'New profile image' => 'รูปโปรไฟล์ใหม่',
|
||||
'Nothing found with your input.' => 'ไม่พบในสิ่งที่คุณต้องการค้านหา',
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Could not create activity for this object type!' => '',
|
||||
'Could not create activity for this object type!' => 'Kunne ikke oprette aktivitet for denne objekt type!',
|
||||
);
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'%displayName% created the new space %spaceName%' => '%displayName% skabt det nye rum %spaceName%',
|
||||
'%displayName% created this space.' => '%displayName% skabte dette rum.',
|
||||
'%displayName% created the new space %spaceName%' => '%displayName% har oprettet den nye side %spaceName%',
|
||||
'%displayName% created this space.' => '%displayName% oprettede denne side.',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'%displayName% joined the space %spaceName%' => '',
|
||||
'%displayName% joined this space.' => '',
|
||||
'%displayName% joined the space %spaceName%' => '%displayName% blev medlem på siden %spaceName%',
|
||||
'%displayName% joined this space.' => '%displayName% blev medlem af denne side.',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'%displayName% left the space %spaceName%' => '',
|
||||
'%displayName% left this space.' => '',
|
||||
'%displayName% left the space %spaceName%' => '%displayName% har forladt siden %spaceName%',
|
||||
'%displayName% left this space.' => '%displayName% har forladt denne side.',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'{user1} now follows {user2}.' => '',
|
||||
'{user1} now follows {user2}.' => '{user1} følger nu {user2}.',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'see online' => '',
|
||||
'via' => '',
|
||||
'see online' => 'se online',
|
||||
'via' => 'via',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Latest</strong> activities' => '',
|
||||
'There are no activities yet.' => '',
|
||||
'<strong>Latest</strong> activities' => '<strong>Seneste</strong> aktiviteter',
|
||||
'There are no activities yet.' => 'Der er ingen aktiviteter endnu.',
|
||||
);
|
||||
|
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'Could not create activity for this object type!' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'%displayName% created the new space %spaceName%' => '',
|
||||
'%displayName% created this space.' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'%displayName% joined the space %spaceName%' => '',
|
||||
'%displayName% joined this space.' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'%displayName% left the space %spaceName%' => '',
|
||||
'%displayName% left this space.' => '',
|
||||
);
|
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'{user1} now follows {user2}.' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'see online' => '',
|
||||
'via' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Latest</strong> activities' => '',
|
||||
'There are no activities yet.' => '',
|
||||
);
|
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'Could not create activity for this object type!' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'%displayName% created the new space %spaceName%' => '',
|
||||
'%displayName% created this space.' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'%displayName% joined the space %spaceName%' => '',
|
||||
'%displayName% joined this space.' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'%displayName% left the space %spaceName%' => '',
|
||||
'%displayName% left this space.' => '',
|
||||
);
|
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'{user1} now follows {user2}.' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'see online' => '',
|
||||
'via' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Latest</strong> activities' => '',
|
||||
'There are no activities yet.' => '',
|
||||
);
|
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'Could not create activity for this object type!' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'%displayName% created the new space %spaceName%' => '',
|
||||
'%displayName% created this space.' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'%displayName% joined the space %spaceName%' => '',
|
||||
'%displayName% joined this space.' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'%displayName% left the space %spaceName%' => '',
|
||||
'%displayName% left this space.' => '',
|
||||
);
|
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'{user1} now follows {user2}.' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'see online' => '',
|
||||
'via' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Latest</strong> activities' => '',
|
||||
'There are no activities yet.' => '',
|
||||
);
|
@ -4,22 +4,25 @@
|
||||
* @package humhub.modules_core.admin.controllers
|
||||
* @since 0.5
|
||||
*/
|
||||
class UserProfileController extends Controller {
|
||||
class UserProfileController extends Controller
|
||||
{
|
||||
|
||||
public $subLayout = "/_layout";
|
||||
|
||||
public function behaviors() {
|
||||
return array(
|
||||
'HReorderContentBehavior' => array(
|
||||
'class' => 'application.behaviors.HReorderContentBehavior',
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
public function behaviors()
|
||||
{
|
||||
return array(
|
||||
'HReorderContentBehavior' => array(
|
||||
'class' => 'application.behaviors.HReorderContentBehavior',
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array action filters
|
||||
*/
|
||||
public function filters() {
|
||||
public function filters()
|
||||
{
|
||||
return array(
|
||||
'accessControl', // perform access control for CRUD operations
|
||||
);
|
||||
@ -30,7 +33,8 @@ class UserProfileController extends Controller {
|
||||
* This method is used by the 'accessControl' filter.
|
||||
* @return array access control rules
|
||||
*/
|
||||
public function accessRules() {
|
||||
public function accessRules()
|
||||
{
|
||||
return array(
|
||||
array('allow',
|
||||
'expression' => 'Yii::app()->user->isAdmin()'
|
||||
@ -45,14 +49,16 @@ class UserProfileController extends Controller {
|
||||
* Shows overview of all
|
||||
*
|
||||
*/
|
||||
public function actionIndex() {
|
||||
public function actionIndex()
|
||||
{
|
||||
$this->render('index', array());
|
||||
}
|
||||
|
||||
/**
|
||||
* Edits a Profile Field Category
|
||||
*/
|
||||
public function actionEditCategory() {
|
||||
public function actionEditCategory()
|
||||
{
|
||||
|
||||
$id = (int) Yii::app()->request->getQuery('id');
|
||||
|
||||
@ -60,8 +66,8 @@ class UserProfileController extends Controller {
|
||||
if ($category == null)
|
||||
$category = new ProfileFieldCategory;
|
||||
|
||||
$category->translation_category = $category->getTranslationCategory();
|
||||
|
||||
$category->translation_category = $category->getTranslationCategory();
|
||||
|
||||
// uncomment the following code to enable ajax-based validation
|
||||
if (isset($_POST['ajax']) && $_POST['ajax'] === 'admin-userprofile-editcategory') {
|
||||
echo CActiveForm::validate($category);
|
||||
@ -84,7 +90,8 @@ class UserProfileController extends Controller {
|
||||
/**
|
||||
* Deletes a Profile Field Category
|
||||
*/
|
||||
public function actionDeleteCategory() {
|
||||
public function actionDeleteCategory()
|
||||
{
|
||||
|
||||
$this->forcePostRequest();
|
||||
|
||||
@ -102,7 +109,8 @@ class UserProfileController extends Controller {
|
||||
$this->redirect(Yii::app()->createUrl('//admin/userprofile'));
|
||||
}
|
||||
|
||||
public function actionEditField() {
|
||||
public function actionEditField()
|
||||
{
|
||||
|
||||
// XSS Protection
|
||||
$_POST = Yii::app()->input->stripClean($_POST);
|
||||
@ -116,7 +124,8 @@ class UserProfileController extends Controller {
|
||||
|
||||
// Get all Available Field Class Instances, also bind current profilefield to the type
|
||||
$profileFieldTypes = new ProfileFieldType();
|
||||
$fieldTypes = $profileFieldTypes->getTypeInstances();
|
||||
$fieldTypes = $profileFieldTypes->getTypeInstances($field);
|
||||
|
||||
// Build Form Definition
|
||||
$definition = array();
|
||||
|
||||
@ -183,14 +192,15 @@ class UserProfileController extends Controller {
|
||||
|
||||
$this->render('editField', array('form' => $form, 'field' => $field));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Reorder Fields action.
|
||||
* @uses behaviors.ReorderContentBehavior
|
||||
*/
|
||||
public function actionReorderFields() {
|
||||
// generate json response
|
||||
echo json_encode($this->reorderContent('ProfileField', 200, 'The item order was successfully changed.'));
|
||||
public function actionReorderFields()
|
||||
{
|
||||
// generate json response
|
||||
echo json_encode($this->reorderContent('ProfileField', 200, 'The item order was successfully changed.'));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -1,11 +1,11 @@
|
||||
<?php
|
||||
return array (
|
||||
'Could not extract module!' => '',
|
||||
'Could not fetch module list online! (%error%)' => '',
|
||||
'Could not get module info online! (%error%)' => '',
|
||||
'Download of module failed!' => '',
|
||||
'Module directory %modulePath% is not writeable!' => '',
|
||||
'Module directory for module %moduleId% already exists!' => '',
|
||||
'Module download failed! (%error%)' => '',
|
||||
'No compatible module version found!' => '',
|
||||
'Could not extract module!' => 'لم أتمكن من استخراج الموديول',
|
||||
'Could not fetch module list online! (%error%)' => 'لم أتمكن من الوصول لقائمة الموديولات على الشبكة (%error%)',
|
||||
'Could not get module info online! (%error%)' => 'لم أتمكن من الوصول لمعلومات الموديول على الشبكة (%error%)',
|
||||
'Download of module failed!' => 'حصل خطأ أثناء تحميل الموديول',
|
||||
'Module directory %modulePath% is not writeable!' => 'المجلد الذي يحتوي على الموديول غير قابل للكتابة %modulePath%',
|
||||
'Module directory for module %moduleId% already exists!' => 'المجلد الخاص بالموديول موجود مسبقاً %modulePath%',
|
||||
'Module download failed! (%error%)' => 'فشل تحميل الموديول! (%error%)',
|
||||
'No compatible module version found!' => 'لا توجد نسخة مناسبة للموديول!',
|
||||
);
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
return array (
|
||||
'Activated' => '',
|
||||
'No modules installed yet. Install some to enhance the functionality!' => '',
|
||||
'Version:' => '',
|
||||
'Activated' => 'تم التفعيل',
|
||||
'No modules installed yet. Install some to enhance the functionality!' => 'لا توجد موديولات بعد, قم بتحميل البعض لإضافة وظائف جديدة للموقع!',
|
||||
'Version:' => 'نسخة: ',
|
||||
);
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
return array (
|
||||
'Installed' => '',
|
||||
'No modules found!' => '',
|
||||
'Search' => '',
|
||||
'Installed' => 'تم التنصيب',
|
||||
'No modules found!' => 'لا توجد موديولات!',
|
||||
'Search' => 'بحث',
|
||||
);
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'All modules are up to date!' => '',
|
||||
'All modules are up to date!' => 'جميع الموديولات نسختها هي الأحدث!',
|
||||
);
|
||||
|
@ -1,8 +1,8 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>About</strong> HumHub' => '',
|
||||
'Currently installed version: %currentVersion%' => '',
|
||||
'Licences' => '',
|
||||
'There is a new update available! (Latest version: %version%)' => '',
|
||||
'This HumHub installation is up to date!' => '',
|
||||
'<strong>About</strong> HumHub' => 'عن <strong>HumHub</strong> ',
|
||||
'Currently installed version: %currentVersion%' => 'النسخة الحالية: %currentVersion%',
|
||||
'Licences' => 'الرخص',
|
||||
'There is a new update available! (Latest version: %version%)' => 'يوجد تحديث جديد! (النسخة الأحدث: %version% )',
|
||||
'This HumHub installation is up to date!' => 'نسخة HumHub هذه هي الأحدث. ',
|
||||
);
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'Accept' => '',
|
||||
'Decline' => '',
|
||||
'Accept' => 'موافقة',
|
||||
'Decline' => 'رفض',
|
||||
);
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
return array (
|
||||
'Accept user: <strong>{displayName}</strong> ' => '',
|
||||
'Cancel' => '',
|
||||
'Send & save' => '',
|
||||
'Accept user: <strong>{displayName}</strong> ' => 'الموافقة على العضو: <strong>{displayName}</strong> ',
|
||||
'Cancel' => 'إلغاء',
|
||||
'Send & save' => 'حفظ و إرسال',
|
||||
);
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'Cancel' => '',
|
||||
'Decline & delete user: <strong>{displayName}</strong>' => '',
|
||||
'Cancel' => 'إلغاء',
|
||||
'Decline & delete user: <strong>{displayName}</strong>' => 'رفض و حذف العضوية من : <strong>{displayName}</strong> ',
|
||||
);
|
||||
|
@ -1,8 +1,8 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Pending</strong> user approvals' => '',
|
||||
'Email' => '',
|
||||
'Here you see all users who have registered and still waiting for a approval.' => '',
|
||||
'Search for email' => '',
|
||||
'Search for username' => '',
|
||||
'<strong>Pending</strong> user approvals' => 'العضويات التي تنتظر الموافقة',
|
||||
'Email' => 'إيميل',
|
||||
'Here you see all users who have registered and still waiting for a approval.' => 'هنا توجد أسماء جميع الأعضاء الذين قاموا بالتسجيل و ينتظرون الموافقة',
|
||||
'Search for email' => 'البحث عن إيميل',
|
||||
'Search for username' => 'البحث عن إسم مستخدم',
|
||||
);
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Delete</strong> group' => '',
|
||||
'Delete group' => '',
|
||||
'To delete the group <strong>"{group}"</strong> you need to set an alternative group for existing users:' => '',
|
||||
'<strong>Delete</strong> group' => '<strong>حذف</strong> مجموعة',
|
||||
'Delete group' => 'حذف مجموعة',
|
||||
'To delete the group <strong>"{group}"</strong> you need to set an alternative group for existing users:' => 'لحذف المجموعة <strong>"{group}"</strong> يجب ان تحدد مجموعة بديلة للأعضاء الحاليين:',
|
||||
);
|
||||
|
@ -1,10 +1,10 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Create</strong> new group' => '',
|
||||
'<strong>Edit</strong> group' => '',
|
||||
'Delete' => '',
|
||||
'Description' => '',
|
||||
'Group name' => '',
|
||||
'Ldap DN' => '',
|
||||
'Save' => '',
|
||||
'<strong>Create</strong> new group' => 'بدء مجموعة <strong>جديدة</strong>',
|
||||
'<strong>Edit</strong> group' => '<strong>تعديل</strong> مجموعة',
|
||||
'Delete' => 'حذف',
|
||||
'Description' => 'توضيج',
|
||||
'Group name' => 'اسم المجموعة',
|
||||
'Ldap DN' => '@Ldap DN@',
|
||||
'Save' => 'حفظ',
|
||||
);
|
||||
|
@ -1,8 +1,8 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Manage</strong> groups' => '',
|
||||
'Description' => '',
|
||||
'Group name' => '',
|
||||
'Search for description' => '',
|
||||
'Search for group name' => '',
|
||||
'<strong>Manage</strong> groups' => '<strong>صيانة</strong> المجموعات',
|
||||
'Description' => 'الوصف',
|
||||
'Group name' => 'اسم المجموعة',
|
||||
'Search for description' => 'بحث عن وصف',
|
||||
'Search for group name' => 'بحث عن اسم مجموعة',
|
||||
);
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'Create new group' => '',
|
||||
'You can split users into different groups (for teams, departments etc.) and define standard spaces and admins for them.' => '',
|
||||
'Create new group' => 'بدء مجموعة جديدة',
|
||||
'You can split users into different groups (for teams, departments etc.) and define standard spaces and admins for them.' => 'يمكنك تقسيم الأعضاء إلى مجموعات مختلفة (حسب الفريق او القسم المهني, الخ) وتحديد باحات خاصة بهم يتحكم بها مشرفين خاصين.',
|
||||
);
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Error</strong> logging' => '',
|
||||
'Displaying {count} entries per page.' => '',
|
||||
'Flush entries' => '',
|
||||
'Total {count} entries found.' => '',
|
||||
'<strong>Error</strong> logging' => '<strong>خطأ</strong> في رصد المعلومات',
|
||||
'Displaying {count} entries per page.' => 'يتم عرض {count} في كل صفحة',
|
||||
'Flush entries' => '@Flush entries@',
|
||||
'Total {count} entries found.' => 'تم ايجاد {count} ',
|
||||
);
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
return array (
|
||||
'Available updates' => '',
|
||||
'Browse online' => '',
|
||||
'Installed' => '',
|
||||
'Modules extend the functionality of HumHub. Here you can install and manage modules from the HumHub Marketplace.' => '',
|
||||
'Available updates' => 'التحديثات المتاحة',
|
||||
'Browse online' => 'استعراض على الشبكة',
|
||||
'Installed' => 'تم التنصيب',
|
||||
'Modules extend the functionality of HumHub. Here you can install and manage modules from the HumHub Marketplace.' => 'الموديولات تزيد من فعالية HumHub, هنا يمكنك تنصيب و صيانة الموديولات من المركز التجاري الخاص بالنظام.',
|
||||
);
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Module</strong> details' => '',
|
||||
'This module doesn\'t provide further informations.' => '',
|
||||
'<strong>Module</strong> details' => 'معلومات <strong>الموديول</strong>',
|
||||
'This module doesn\'t provide further informations.' => 'هذا الموديول لا يحتوي على وصف إضافي',
|
||||
);
|
||||
|
@ -1,13 +1,13 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Modules</strong> directory' => '',
|
||||
'Are you sure? *ALL* module data will be lost!' => '',
|
||||
'Are you sure? *ALL* module related data and files will be lost!' => '',
|
||||
'Configure' => '',
|
||||
'Disable' => '',
|
||||
'Enable' => '',
|
||||
'More info' => '',
|
||||
'Processing...' => '',
|
||||
'Set as default' => '',
|
||||
'Uninstall' => '',
|
||||
'<strong>Modules</strong> directory' => 'مجلد <strong>الموديولات</strong>',
|
||||
'Are you sure? *ALL* module data will be lost!' => 'هل انت متأكد؟ جميع المعلومات الخاصة بالموديولات سيتم حذفها!',
|
||||
'Are you sure? *ALL* module related data and files will be lost!' => 'هل أنت متأكد؟ جميع المعلومات والملفات الخاصة بالموديولات سيتم حذفها!',
|
||||
'Configure' => 'إعدادات',
|
||||
'Disable' => 'إلغاء التفعيل',
|
||||
'Enable' => 'تفعيل',
|
||||
'More info' => 'معلومات',
|
||||
'Processing...' => 'جاري العمل...',
|
||||
'Set as default' => 'تحديد كوصع قياسي',
|
||||
'Uninstall' => 'إزالة تنصيب',
|
||||
);
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
return array (
|
||||
'Could not load category.' => '',
|
||||
'Could not load category.' => 'No es pot carregar la categoria.',
|
||||
'Delete' => 'Suprimeix',
|
||||
'Save' => 'Desa',
|
||||
'You can only delete empty categories!' => '',
|
||||
'You can only delete empty categories!' => 'Tan sols pots eliminar categories buides!',
|
||||
);
|
||||
|
@ -5,10 +5,10 @@ return array (
|
||||
'Encryption' => '',
|
||||
'Fetch/Update Users Automatically' => '',
|
||||
'Hostname' => '',
|
||||
'Login Filter' => '',
|
||||
'Login Filter' => 'Filtre d\'inici de sessió',
|
||||
'Password' => 'Contrasenya',
|
||||
'Port' => '',
|
||||
'Port' => 'Port',
|
||||
'User Filer' => '',
|
||||
'Username' => '',
|
||||
'Username' => 'Nom d\'usuari',
|
||||
'Username Attribute' => '',
|
||||
);
|
||||
|
@ -4,6 +4,6 @@ return array (
|
||||
'No Proxy Hosts' => '',
|
||||
'Password' => 'Heslo',
|
||||
'Port' => 'Port',
|
||||
'Server' => '',
|
||||
'Server' => 'Server',
|
||||
'User' => 'Uživatel',
|
||||
);
|
||||
|
@ -1,8 +1,8 @@
|
||||
<?php
|
||||
return array (
|
||||
'Currently installed version: %currentVersion%' => '',
|
||||
'Licences' => '',
|
||||
'There is a new update available! (Latest version: %version%)' => '',
|
||||
'This HumHub installation is up to date!' => '',
|
||||
'<strong>About</strong> HumHub' => '<strong>O projektu</strong> HumHub',
|
||||
'Currently installed version: %currentVersion%' => 'Nainstalovaná verze: %currentVersion%',
|
||||
'Licences' => 'Licence',
|
||||
'There is a new update available! (Latest version: %version%)' => 'Je dostupná aktualizace! (Poslední verze: %version%)',
|
||||
'This HumHub installation is up to date!' => 'Nainstalovaná verze HumHubu je aktuální!',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Module</strong> details' => '',
|
||||
'<strong>Module</strong> details' => '<strong>Podrobnosti</strong> o modulu',
|
||||
'This module doesn\'t provide further informations.' => 'Tento modul neposkytuje další informace.',
|
||||
);
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'Processing...' => '',
|
||||
'<strong>Modules</strong> directory' => '<strong>Seznam</strong> modulů',
|
||||
'Are you sure? *ALL* module data will be lost!' => 'Opravdu chcete smazat tento modul? *Veškerá* data modulu budou smazána!',
|
||||
'Are you sure? *ALL* module related data and files will be lost!' => 'Opravdu chcete smazat tento modul? *Veškerá* data a soubory modulu budou smazány.',
|
||||
@ -8,6 +7,7 @@ return array (
|
||||
'Disable' => 'Vypnout',
|
||||
'Enable' => 'Zapnout',
|
||||
'More info' => 'Více informací',
|
||||
'Processing...' => 'Provádím...',
|
||||
'Set as default' => 'Nastavit jako výchozí',
|
||||
'Uninstall' => 'Odinstalovat',
|
||||
);
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'There is a new HumHub Version (%version%) available.' => '',
|
||||
'There is a new HumHub Version (%version%) available.' => 'Je dostupná nová verze HumHubu (%version%).',
|
||||
);
|
||||
|
@ -1,9 +1,9 @@
|
||||
<?php
|
||||
return array (
|
||||
'Min value is 20 seconds. If not set, session will timeout after 1400 seconds (24 minutes) regardless of activity (default session timeout)' => '',
|
||||
'Only applicable when limited access for non-authenticated users is enabled. Only affects new users.' => '',
|
||||
'<strong>Authentication</strong> - Basic' => '<strong>Ověřování</strong> – Základní',
|
||||
'Basic' => 'Základní',
|
||||
'LDAP' => 'LDAP',
|
||||
'Min value is 20 seconds. If not set, session will timeout after 1400 seconds (24 minutes) regardless of activity (default session timeout)' => 'Nejmenší možná hodnota je 20 sekund. Není-li nastaveno, sezení vyprší po 1400 sekundách (24 minut; výchozí expirace sezení)',
|
||||
'Only applicable when limited access for non-authenticated users is enabled. Only affects new users.' => 'Použije se jen pokud je omezen přístup neautentizovaným uživatelům. Dotkne se pouze nově registrovaných uživatelů.',
|
||||
'Save' => 'Uložit',
|
||||
);
|
||||
|
@ -5,8 +5,8 @@ return array (
|
||||
'Basic' => 'Základní',
|
||||
'Defines the filter to apply, when login is attempted. %uid replaces the username in the login action. Example: "(sAMAccountName=%s)" or "(uid=%s)"' => 'Nastavení filtrů, které se mají aplikovat při pokusu o přihlášení. %uid nahrazuje uživatelské jméno. Např.: "(sAMAccountName=%s)" nebo "(uid=%s)"',
|
||||
'LDAP' => 'LDAP',
|
||||
'LDAP Attribute for Username. Example: "uid" or "sAMAccountName"' => '',
|
||||
'Limit access to users meeting this criteria. Example: "(objectClass=posixAccount)" or "(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))"' => '',
|
||||
'LDAP Attribute for Username. Example: "uid" or "sAMAccountName"' => 'LDAP atribut pro uživatelské jméno. Např. "uid" nebo "sAMAccountName"',
|
||||
'Limit access to users meeting this criteria. Example: "(objectClass=posixAccount)" or "(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))"' => 'Omezit přístup na základě daných kritérií. Např.: "(objectClass=posixAccount)" nebo "(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))"',
|
||||
'Save' => 'Uložit',
|
||||
'Status: Error! (Message: {message})' => 'Stav: chyba! (Odpověď: {message})',
|
||||
'Status: OK! ({userCount} Users)' => 'Stav: OK! ({userCount} uživatelů)',
|
||||
|
@ -1,28 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Comma separated list. Leave empty to show file list for all objects on wall.' => '',
|
||||
'If not set, height will default to 200px.' => '',
|
||||
'If not set, width will default to 200px.' => '',
|
||||
'<strong>File</strong> settings' => '<strong>Nastavení</strong> souborů',
|
||||
'Comma separated list. Leave empty to allow all.' => 'Jednotlivé přípony oddělte čárkou. Pro povolení všech přípon nechejte prázdné.',
|
||||
'Comma separated list. Leave empty to show file list for all objects on wall.' => 'Jednotlivé položky oddělte čárkou. Pro povolení všech položek nechejte prázdné.',
|
||||
'Current Image Libary: {currentImageLibary}' => 'Používaná knihovna pro zpracování obrázků: {currentImageLibrary}',
|
||||
'If not set, height will default to 200px.' => 'Není-li nastaveno, použije se výchozí výška 200px.',
|
||||
'If not set, width will default to 200px.' => 'Není-li nastaveno, použije se výchozí šířka 200px.',
|
||||
'PHP reported a maximum of {maxUploadSize} MB' => 'Nastavení maximální velikosti souboru v PHP: {maxUploadSize} MB',
|
||||
'Save' => 'Uložit',
|
||||
);
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Basic</strong> settings' => '<strong>Základní</strong> nastavení',
|
||||
'<strong>Confirm</strong> image deleting' => '',
|
||||
'<strong>Confirm</strong> image deleting' => '<strong>Potvrďte</strong> smazání obrázku',
|
||||
'Cancel' => 'Zrušit',
|
||||
'Dashboard' => 'Nástěnka',
|
||||
'Delete' => 'Smazat',
|
||||
'E.g. http://example.com/humhub' => 'Např. http://example.com/humhub',
|
||||
'New users will automatically added to these space(s).' => 'Do těchto prostorů budou automaticky přidání noví uživatelé.',
|
||||
'Save' => 'Uložit',
|
||||
'You\'re using no logo at the moment. Upload your logo now.' => '',
|
||||
'You\'re using no logo at the moment. Upload your logo now.' => 'V tuto chvíli se nezobrazuje žádné logo. Můžete nějaké nahrát.',
|
||||
);
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Proxy</strong> settings' => '',
|
||||
'<strong>Proxy</strong> settings' => 'Nastavení <strong>proxy</strong>',
|
||||
'Save' => 'Uložit',
|
||||
);
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
return array (
|
||||
'Account Request for \'{displayName}\' has been approved.' => '',
|
||||
'Account Request for \'{displayName}\' has been declined.' => '',
|
||||
'Account Request for \'{displayName}\' has been approved.' => 'Kontooprettelse for \'{displayName}\' er blevet godkendt.',
|
||||
'Account Request for \'{displayName}\' has been declined.' => 'Kontooprettelse for \'{displayName}\' er blevet afslået.',
|
||||
'Hello {displayName},<br><br>
|
||||
|
||||
your account has been activated.<br><br>
|
||||
@ -10,12 +10,25 @@ return array (
|
||||
<a href=\'{loginURL}\'>{loginURL}</a><br><br>
|
||||
|
||||
Kind Regards<br>
|
||||
{AdminName}<br><br>' => '',
|
||||
{AdminName}<br><br>' => 'Hej {displayName},<br><br>
|
||||
|
||||
din konto er blevet aktiveret.<br><br>
|
||||
|
||||
Klik her for at logge ind:<br>
|
||||
<a href=\'{loginURL}\'>{loginURL}</a><br><br>
|
||||
|
||||
Venlig hilsen<br>
|
||||
{AdminName}<br><br>',
|
||||
'Hello {displayName},<br><br>
|
||||
|
||||
your account request has been declined.<br><br>
|
||||
|
||||
Kind Regards<br>
|
||||
{AdminName}<br><br>' => '',
|
||||
{AdminName}<br><br>' => 'Hej {displayName},<br><br>
|
||||
|
||||
Din kontooprettelse er blevet afslået.<br><br>
|
||||
|
||||
Venlig hilsen<br>
|
||||
{AdminName}<br><br>',
|
||||
'User not found!' => 'Bruger ikke fundet!',
|
||||
);
|
||||
|
@ -1,23 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Could not find requested module!' => '',
|
||||
'Could not uninstall module first! Module is protected.' => '',
|
||||
'Module path %path% is not writeable!' => '',
|
||||
'Could not find requested module!' => 'Kunne ikke finde det ønskede modul!',
|
||||
'Could not uninstall module first! Module is protected.' => 'Kunne ikke afinstallere modulet! Modulet er beskyttet.',
|
||||
'Module path %path% is not writeable!' => 'Modul mappen %path% er ikke skrivbar!',
|
||||
);
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user