Merge branch 'v1.2-dev' of https://github.com/humhub/humhub into v1.2-dev

This commit is contained in:
buddha87 2017-01-04 14:59:38 +01:00
commit b6efd6c2f8
656 changed files with 9238 additions and 2895 deletions

View File

@ -33,7 +33,7 @@ class Application extends \yii\console\Application
if ($this->isDatabaseInstalled()) { if ($this->isDatabaseInstalled()) {
$baseUrl = Yii::$app->settings->get('baseUrl'); $baseUrl = Yii::$app->settings->get('baseUrl');
if ($baseUrl !== null) { if (!empty($baseUrl)) {
Yii::setAlias(("@web"), $baseUrl); Yii::setAlias(("@web"), $baseUrl);
$this->urlManager->scriptUrl = $baseUrl; $this->urlManager->scriptUrl = $baseUrl;
$this->urlManager->baseUrl = $baseUrl; $this->urlManager->baseUrl = $baseUrl;

View File

@ -90,6 +90,9 @@ return [
'class' => 'humhub\modules\user\authclient\GitHub', 'class' => 'humhub\modules\user\authclient\GitHub',
'clientId' => 'Your GitHub Client ID here', 'clientId' => 'Your GitHub Client ID here',
'clientSecret' => 'Your GitHub Client Secret here', 'clientSecret' => 'Your GitHub Client Secret here',
// require read access to the users email
// https://developer.github.com/v3/oauth/#scopes
'scope' => 'user:email',
], ],
], ],
], ],

View File

@ -205,7 +205,7 @@ class SelfTest
// Checks APC Extension // Checks APC Extension
$title = 'PHP - APC Support'; $title = 'PHP - APC Support';
if (function_exists('apc_add')) { if (function_exists('apc_add') || function_exists('apcu_add')) {
$checks[] = array( $checks[] = array(
'title' => Yii::t('base', $title), 'title' => Yii::t('base', $title),
'state' => 'OK' 'state' => 'OK'

View File

@ -29,4 +29,6 @@ return array (
'strong text' => '', 'strong text' => '',
'Close' => 'Zavřít', 'Close' => 'Zavřít',
'Title' => 'Titulek', 'Title' => 'Titulek',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'نص القائمة هنا', 'list text here' => 'نص القائمة هنا',
'quote here' => 'نص الاقتباس هنا', 'quote here' => 'نص الاقتباس هنا',
'strong text' => 'خط عريض', 'strong text' => 'خط عريض',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'list text here' => '', 'list text here' => '',
'quote here' => '', 'quote here' => '',
'strong text' => '', 'strong text' => '',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'text de la llista aquí', 'list text here' => 'text de la llista aquí',
'quote here' => 'escriu la cita aquí', 'quote here' => 'escriu la cita aquí',
'strong text' => 'text en negreta', 'strong text' => 'text en negreta',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'odrážka', 'list text here' => 'odrážka',
'quote here' => 'zde je místo pro citaci', 'quote here' => 'zde je místo pro citaci',
'strong text' => 'tučný text', 'strong text' => 'tučný text',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'liste tekst her', 'list text here' => 'liste tekst her',
'quote here' => 'citat her', 'quote here' => 'citat her',
'strong text' => 'fed tekst', 'strong text' => 'fed tekst',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -1,57 +1,40 @@
<?php <?php
/** return array (
* Message translations. '<strong>Latest</strong> updates' => '<strong>Letzte</strong> Aktualisierungen',
* 'Account settings' => 'Kontoeinstellungen',
* This file is automatically generated by 'yii message/extract' command. 'Administration' => 'Administration',
* It contains the localizable messages extracted from source code. 'Allow' => 'Erlauben',
* You may modify this file by translating the extracted messages. 'Back' => 'Zurück',
* 'Back to dashboard' => 'Zurück zur Übersicht',
* Each array element represents the translation (value) of a message (key). 'Choose language:' => 'Sprache wählen:',
* If the value is empty, the message is considered as not translated. 'Collapse' => 'Einklappen',
* Messages that no longer need translation will have their translations 'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Die Quelle des Addons muss eine Instanz von HActiveRecordContent oder HActiveRecordContentAddon sein!',
* enclosed between a pair of '@@' marks. 'Could not determine content container!' => 'Kann Content Container nicht finden.',
* 'Could not find content of addon!' => 'Der Inhalt des Addons konnte nicht gefunden werden!',
* Message string can be used with plural forms format. Check i18n section 'Default' => 'Standard',
* of the guide for details. 'Deny' => 'Ablehnen',
* 'Error' => 'Fehler',
* NOTE: this file must be saved in UTF-8 encoding. 'Expand' => 'Erweitern',
*/ 'It looks like you may have taken the wrong turn.' => 'Du hast womöglich den falschen Weg eingeschlagen.',
return [ 'Language' => 'Sprache',
'Show more' => '', 'Latest news' => 'Neuigkeiten',
'The date has to be in the past.' => '', 'Login' => 'Anmelden',
'Unsubscribe' => '', 'Logout' => 'Ausloggen',
'<strong>Latest</strong> updates' => '<strong>Letzte</strong> Aktualisierungen', 'Menu' => 'Menü',
'Account settings' => 'Kontoeinstellungen', 'Module is not enabled on this content container!' => 'Dieses Modul ist in diesem Content Container nicht aktiviert!',
'Administration' => 'Administration', 'My profile' => 'Mein Profil',
'Allow' => 'Erlauben', 'New profile image' => 'Neues Profilbild',
'Back' => 'Zurück', 'Next' => 'Nächster',
'Back to dashboard' => 'Zurück zur Übersicht', 'Ok' => 'Ok',
'Choose language:' => 'Sprache wählen:', 'Oooops...' => 'Uuuups...',
'Collapse' => 'Einklappen', 'Please type at least 3 characters' => 'Bitte wengistens 3 Zeichen eingeben',
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Die Quelle des Addons muss eine Instanz von HActiveRecordContent oder HActiveRecordContentAddon sein!', 'Save' => 'Speichern',
'Could not determine content container!' => 'Kann Content Container nicht finden.', 'Search' => 'Suchen',
'Could not find content of addon!' => 'Der Inhalt des Addons konnte nicht gefunden werden!', 'Search for users and spaces' => 'Suche nach Benutzern und Spaces',
'Default' => 'Standard', 'Show more' => 'Mehr anzeigen',
'Deny' => 'Ablehnen', 'Space not found!' => 'Space nicht gefunden!',
'Error' => 'Fehler', 'The date has to be in the past.' => 'Datum muss in der Vergangenheit liegen.',
'Expand' => 'Erweitern', 'Unsubscribe' => 'Abbestellen',
'It looks like you may have taken the wrong turn.' => 'Du hast womöglich den falschen Weg eingeschlagen.', 'User not found!' => 'Benutzer nicht gefunden!',
'Language' => 'Sprache', 'Your daily summary' => 'Deine tägliche Übersicht',
'Latest news' => 'Neuigkeiten', );
'Login' => 'Anmelden',
'Logout' => 'Ausloggen',
'Menu' => 'Menü',
'Module is not enabled on this content container!' => 'Dieses Modul ist in diesem Content Container nicht aktiviert!',
'My profile' => 'Mein Profil',
'New profile image' => 'Neues Profilbild',
'Next' => 'Nächster',
'Ok' => 'Ok',
'Oooops...' => 'Uuuups...',
'Please type at least 3 characters' => 'Bitte wengistens 3 Zeichen eingeben',
'Save' => 'Speichern',
'Search' => 'Suchen',
'Search for users and spaces' => 'Suche nach Benutzern und Spaces',
'Space not found!' => 'Space nicht gefunden!',
'User not found!' => 'Benutzer nicht gefunden!',
'Your daily summary' => 'Deine tägliche Übersicht',
];

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'Listen-Element ', 'list text here' => 'Listen-Element ',
'quote here' => 'Zitiere hier', 'quote here' => 'Zitiere hier',
'strong text' => 'Fetter Text', 'strong text' => 'Fetter Text',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'strong text' => '', 'strong text' => '',
'Close' => 'Κλείσιμο', 'Close' => 'Κλείσιμο',
'Title' => 'Τίτλος', 'Title' => 'Τίτλος',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -1,57 +1,40 @@
<?php <?php
/** return array (
* Message translations. '<strong>Latest</strong> updates' => '<strong>Últimas</strong> actualizaciones',
* 'Account settings' => 'Configuración de la cuenta',
* This file is automatically generated by 'yii message/extract' command. 'Administration' => 'Administración',
* It contains the localizable messages extracted from source code. 'Allow' => 'Permitir',
* You may modify this file by translating the extracted messages. 'Back' => 'Atrás',
* 'Back to dashboard' => 'Volver al Panel de Control',
* Each array element represents the translation (value) of a message (key). 'Choose language:' => 'Escoge idioma:',
* If the value is empty, the message is considered as not translated. 'Collapse' => 'Cerrar',
* Messages that no longer need translation will have their translations 'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '¡La fuente de Contenido del Complemento debe ser una instancia de HActiveRecordContent ó HActiveRecordContentAddon!',
* enclosed between a pair of '@@' marks. 'Could not determine content container!' => '¡No se pudo determinar el contenedor de contenido!',
* 'Could not find content of addon!' => '¡No se pudo encontrar el contenido del complemento!',
* Message string can be used with plural forms format. Check i18n section 'Default' => 'Por Defecto',
* of the guide for details. 'Deny' => 'Denegar',
* 'Error' => 'Error',
* NOTE: this file must be saved in UTF-8 encoding. 'Expand' => 'Ampliar',
*/ 'It looks like you may have taken the wrong turn.' => 'Parece que puede haber tomado el camino equivocado.',
return [ 'Language' => 'Idioma',
'Allow' => '', 'Latest news' => 'Últimas noticias',
'Default' => '', 'Login' => 'Iniciar sesión',
'Deny' => '', 'Logout' => 'Salir',
'Please type at least 3 characters' => '', 'Menu' => 'Menú',
'Show more' => '', 'Module is not enabled on this content container!' => 'El módulo no está habilitado en este contenedor de contenido!',
'The date has to be in the past.' => '', 'My profile' => 'Mi perfil',
'Unsubscribe' => '', 'New profile image' => 'Nueva imagen de perfil',
'<strong>Latest</strong> updates' => '<strong>Últimas</strong> actualizaciones', 'Next' => 'Siguiente',
'Account settings' => 'Configuración de la cuenta', 'Ok' => 'Ok',
'Administration' => 'Administración', 'Oooops...' => 'Oooops...',
'Back' => 'Atrás', 'Please type at least 3 characters' => 'Por favor escriba al menos 3 caracteres',
'Back to dashboard' => 'Volver al Panel de Control', 'Save' => 'Guardar',
'Choose language:' => 'Escoge idioma:', 'Search' => 'Buscar',
'Collapse' => 'Cerrar', 'Search for users and spaces' => 'Buscar usuarios y espacios',
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '¡La fuente de Contenido del Complemento debe ser una instancia de HActiveRecordContent ó HActiveRecordContentAddon!', 'Show more' => 'Mostrar más',
'Could not determine content container!' => '¡No se pudo determinar el contenedor de contenido!', 'Space not found!' => '¡Espacio no encontrado!',
'Could not find content of addon!' => '¡No se pudo encontrar el contenido del complemento!', 'The date has to be in the past.' => 'La fecha tiene que ser en el pasado.',
'Error' => 'Error', 'Unsubscribe' => 'Anular la suscripción',
'Expand' => 'Ampliar', 'User not found!' => '¡Usuario no encontrado!',
'It looks like you may have taken the wrong turn.' => 'Parece que puede haber tomado el camino equivocado.', 'Your daily summary' => 'Su resumen diario',
'Language' => 'Idioma', );
'Latest news' => 'Últimas noticias',
'Login' => 'Iniciar sesión',
'Logout' => 'Salir',
'Menu' => 'Menú',
'Module is not enabled on this content container!' => 'El módulo no está habilitado en este contenedor de contenido!',
'My profile' => 'Mi perfil',
'New profile image' => 'Nueva imagen de perfil',
'Next' => 'Siguiente',
'Ok' => 'Ok',
'Oooops...' => 'Oooops...',
'Save' => 'Guardar',
'Search' => 'Buscar',
'Search for users and spaces' => 'Buscar usuarios y espacios',
'Space not found!' => '¡Espacio no encontrado!',
'User not found!' => '¡Usuario no encontrado!',
'Your daily summary' => 'Su resumen diario',
];

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'Lista de texto aquí', 'list text here' => 'Lista de texto aquí',
'quote here' => 'Citar aquí', 'quote here' => 'Citar aquí',
'strong text' => 'Texto en negrita', 'strong text' => 'Texto en negrita',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'متن را اینجا لیست کنید', 'list text here' => 'متن را اینجا لیست کنید',
'quote here' => 'اینجا بیان کنید', 'quote here' => 'اینجا بیان کنید',
'strong text' => 'متن پررنگ', 'strong text' => 'متن پررنگ',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'texte de la liste ici', 'list text here' => 'texte de la liste ici',
'quote here' => 'citation ici', 'quote here' => 'citation ici',
'strong text' => 'texte gras', 'strong text' => 'texte gras',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -46,4 +46,6 @@ return [
'list text here' => '', 'list text here' => '',
'quote here' => '', 'quote here' => '',
'strong text' => '', 'strong text' => '',
'Unordered List' => '',
'Ordered List' => '',
]; ];

View File

@ -0,0 +1 @@
{"<strong>Latest</strong> updates":["<strong>Dènye</strong> Aktyalite"],"Account settings":["Anviwònman kont ou"],"Administration":["Administrasyon"],"Allow":["Otorize"],"Back":["Tounen"],"Back to dashboard":["Retounen nan tablodbò"],"Choose language:":["Chwazi yon lang:"],"Collapse":["Fèmen"],"Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!":["Content Addon sous dwe egzanp nan HActiveRecordContent oubyen HActiveRecordContentAddon!"],"Could not determine content container!":["Pa't kapab detèmine kontni veso a!"],"Could not find content of addon!":["Pa't kapab jwenn kontni addon nan!"],"Default":["Defo"],"Deny":["Refize"],"Error":["Erè"],"Expand":["Elaji"],"It looks like you may have taken the wrong turn.":["Sanble ke ou pran yon move wout."],"Language":["Lang"],"Latest news":["Dènye Nouvèl"],"Login":["Idantifye'w"],"Logout":["Dekonekte"],"Menu":["Meni"],"Module is not enabled on this content container!":["Modil la pa aktive pou konteni veso sa!"],"My profile":["Profil mwen"],"New profile image":["Nouvo foto profil"],"Next":["Apre"],"Ok":["Ok"],"Oooops...":["oh oh..."],"Please type at least 3 characters":["Tanpri tape omwen 3 karaktè"],"Save":["Sere"],"Search":["Chèche"],"Search for users and spaces":["Chèche itilizatè ak espas yo"],"Show more":["Montre plis"],"Space not found!":["Nou pa jwenn espas la!"],"The date has to be in the past.":["Dat la dwe pase deja."],"Unsubscribe":["Dezabòne"],"User not found!":["Nou pa jwenn itilizatè a!"],"Your daily summary":["Rezime chak jou ou"],"<strong>Login</strong> required":["<strong>Idantifikasyon ou</strong> rekòmande"],"An internal server error occurred.":["Gen yon erè ki pase nan sèvè a."],"You are not allowed to perform this action.":["Ou pa gen dwa pou'w fè aksyon sa a."],"Add image/file":["Ajoute foto/dosye"],"Add link":["Ajoute lyen"],"Bold":["Fonse"],"Close":["Fèmen"],"Code":["Kòd"],"Enter a url (e.g. http://example.com)":["Mete yon url (e.g http://example.com)"],"Heading":["Tit"],"Image":["Imaj"],"Image/File":["Imaj/Dosye"],"Insert Hyperlink":["Antre Ipèrtèkst la"],"Insert Image Hyperlink":["Antre Imaj Ipèrtèkst la"],"Italic":["Italik"],"List":["Lis"],"Please wait while uploading...":["Tanpri, ret tan'n pandan l'ap upload..."],"Preview":["Apèsi"],"Quote":["Sitasyon"],"Target":["Tagèt"],"Title":["Tit"],"Title of your link":["Tit Link ou a"],"URL/Link":["URL/Link"],"code text here":["Mete Kòd tèks ou a la"],"emphasized text":["Mete aksan sou tèks la"],"enter image description here":["Mete deskripsyon imaj la"],"enter image title here":["Mete tit imaj la"],"enter link description here":["Mete deskripsyon link lan la"],"heading text":["Tit tèks la"],"list text here":["Mete lis tèks ou a la"],"quote here":["Mete sitasyon an la"],"strong text":["Tèks gra"],"%displayName% created the new space %spaceName%":["%displayName% kreye yon nouvo espas nan %spaceName%"],"%displayName% created this space.":["%displayName% kreye espas sa."],"%displayName% joined the space %spaceName%":["%displayName% jwen'n espas %spaceName%"],"%displayName% joined this space.":["%displayName% jwen'n espas sa."],"%displayName% left the space %spaceName%":["%displayName% kite espas %spaceName%"],"%displayName% left this space.":["%displayName% kite espas sa."],"{user1} now follows {user2}.":["{user1} konnya ap swiv {user2}."],"see online":["wè online"],"via":["atravè"],"<strong>Latest</strong> activities":["<strong>Dènye</strong> aktivite"],"There are no activities yet.":["Pa gen oken'n aktivite ankò."]}

View File

@ -1,57 +1,40 @@
<?php <?php
/** return array (
* Message translations. '<strong>Latest</strong> updates' => '<strong>Dènye</strong> Aktyalite',
* 'Account settings' => 'Anviwònman kont ou',
* This file is automatically generated by 'yii message/extract' command. 'Administration' => 'Administrasyon',
* It contains the localizable messages extracted from source code. 'Allow' => 'Otorize',
* You may modify this file by translating the extracted messages. 'Back' => 'Tounen',
* 'Back to dashboard' => 'Retounen nan tablodbò',
* Each array element represents the translation (value) of a message (key). 'Choose language:' => 'Chwazi yon lang:',
* If the value is empty, the message is considered as not translated. 'Collapse' => 'Fèmen',
* Messages that no longer need translation will have their translations 'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Content Addon sous dwe egzanp nan HActiveRecordContent oubyen HActiveRecordContentAddon!',
* enclosed between a pair of '@@' marks. 'Could not determine content container!' => 'Pa\'t kapab detèmine kontni veso a!',
* 'Could not find content of addon!' => 'Pa\'t kapab jwenn kontni addon nan!',
* Message string can be used with plural forms format. Check i18n section 'Default' => 'Defo',
* of the guide for details. 'Deny' => 'Refize',
* 'Error' => 'Erè',
* NOTE: this file must be saved in UTF-8 encoding. 'Expand' => 'Elaji',
*/ 'It looks like you may have taken the wrong turn.' => 'Sanble ke ou pran yon move wout.',
return [ 'Language' => 'Lang',
'<strong>Latest</strong> updates' => '', 'Latest news' => 'Dènye Nouvèl',
'Account settings' => '', 'Login' => 'Idantifye\'w',
'Administration' => '', 'Logout' => 'Dekonekte',
'Allow' => '', 'Menu' => 'Meni',
'Back' => '', 'Module is not enabled on this content container!' => 'Modil la pa aktive pou konteni veso sa!',
'Back to dashboard' => '', 'My profile' => 'Profil mwen',
'Choose language:' => '', 'New profile image' => 'Nouvo foto profil',
'Collapse' => '', 'Next' => 'Apre',
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '', 'Ok' => 'Ok',
'Could not determine content container!' => '', 'Oooops...' => 'oh oh...',
'Could not find content of addon!' => '', 'Please type at least 3 characters' => 'Tanpri tape omwen 3 karaktè',
'Default' => '', 'Save' => 'Sere',
'Deny' => '', 'Search' => 'Chèche',
'Error' => '', 'Search for users and spaces' => 'Chèche itilizatè ak espas yo',
'Expand' => '', 'Show more' => 'Montre plis',
'It looks like you may have taken the wrong turn.' => '', 'Space not found!' => 'Nou pa jwenn espas la!',
'Language' => '', 'The date has to be in the past.' => 'Dat la dwe pase deja.',
'Latest news' => '', 'Unsubscribe' => 'Dezabòne',
'Login' => '', 'User not found!' => 'Nou pa jwenn itilizatè a!',
'Logout' => '', 'Your daily summary' => 'Rezime chak jou ou',
'Menu' => '', );
'Module is not enabled on this content container!' => '',
'My profile' => '',
'New profile image' => '',
'Next' => '',
'Ok' => '',
'Oooops...' => '',
'Please type at least 3 characters' => '',
'Save' => '',
'Search' => '',
'Search for users and spaces' => '',
'Show more' => '',
'Space not found!' => '',
'The date has to be in the past.' => '',
'Unsubscribe' => '',
'User not found!' => '',
'Your daily summary' => '',
];

View File

@ -1,23 +1,6 @@
<?php <?php
/** return array (
* Message translations. '<strong>Login</strong> required' => '<strong>Idantifikasyon ou</strong> rekòmande',
* 'An internal server error occurred.' => 'Gen yon erè ki pase nan sèvè a.',
* This file is automatically generated by 'yii message/extract' command. 'You are not allowed to perform this action.' => 'Ou pa gen dwa pou\'w fè aksyon sa a.',
* 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 [
'<strong>Login</strong> required' => '',
'An internal server error occurred.' => '',
'You are not allowed to perform this action.' => '',
];

View File

@ -1,49 +1,32 @@
<?php <?php
/** return array (
* Message translations. 'Add image/file' => 'Ajoute foto/dosye',
* 'Add link' => 'Ajoute lyen',
* This file is automatically generated by 'yii message/extract' command. 'Bold' => 'Fonse',
* It contains the localizable messages extracted from source code. 'Close' => 'Fèmen',
* You may modify this file by translating the extracted messages. 'Code' => 'Kòd',
* 'Enter a url (e.g. http://example.com)' => 'Mete yon url (e.g http://example.com)',
* Each array element represents the translation (value) of a message (key). 'Heading' => 'Tit',
* If the value is empty, the message is considered as not translated. 'Image' => 'Imaj',
* Messages that no longer need translation will have their translations 'Image/File' => 'Imaj/Dosye',
* enclosed between a pair of '@@' marks. 'Insert Hyperlink' => 'Antre Ipèrtèkst la',
* 'Insert Image Hyperlink' => 'Antre Imaj Ipèrtèkst la',
* Message string can be used with plural forms format. Check i18n section 'Italic' => 'Italik',
* of the guide for details. 'List' => 'Lis',
* 'Please wait while uploading...' => 'Tanpri, ret tan\'n pandan l\'ap upload...',
* NOTE: this file must be saved in UTF-8 encoding. 'Preview' => 'Apèsi',
*/ 'Quote' => 'Sitasyon',
return [ 'Target' => 'Tagèt',
'Add image/file' => '', 'Title' => 'Tit',
'Add link' => '', 'Title of your link' => 'Tit Link ou a',
'Bold' => '', 'URL/Link' => 'URL/Link',
'Close' => '', 'code text here' => 'Mete Kòd tèks ou a la',
'Code' => '', 'emphasized text' => 'Mete aksan sou tèks la',
'Enter a url (e.g. http://example.com)' => '', 'enter image description here' => 'Mete deskripsyon imaj la',
'Heading' => '', 'enter image title here' => 'Mete tit imaj la',
'Image' => '', 'enter link description here' => 'Mete deskripsyon link lan la',
'Image/File' => '', 'heading text' => 'Tit tèks la',
'Insert Hyperlink' => '', 'list text here' => 'Mete lis tèks ou a la',
'Insert Image Hyperlink' => '', 'quote here' => 'Mete sitasyon an la',
'Italic' => '', 'strong text' => 'Tèks gra',
'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' => '',
];

View File

@ -29,4 +29,6 @@ return array (
'list text here' => '', 'list text here' => '',
'quote here' => '', 'quote here' => '',
'strong text' => '', 'strong text' => '',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'text list disini', 'list text here' => 'text list disini',
'quote here' => 'quote disini', 'quote here' => 'quote disini',
'strong text' => '@@', 'strong text' => '@@',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -1,57 +1,40 @@
<?php <?php
/** return array (
* Message translations. '<strong>Latest</strong> updates' => '<strong>Ultimi</strong> aggiornamenti',
* 'Account settings' => 'Impostazioni account',
* This file is automatically generated by 'yii message/extract' command. 'Administration' => 'Amministrazione',
* It contains the localizable messages extracted from source code. 'Allow' => 'Consenti',
* You may modify this file by translating the extracted messages. 'Back' => 'Indietro',
* 'Back to dashboard' => 'Torna al pannello di controllo',
* Each array element represents the translation (value) of a message (key). 'Choose language:' => 'Scegli lingua:',
* If the value is empty, the message is considered as not translated. 'Collapse' => 'Chiudi',
* Messages that no longer need translation will have their translations 'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Il contenuto sorgente dell\'Addon deve essere un\'istanza di HActiveRecordContent o di HActiveRecordContentAddon!',
* enclosed between a pair of '@@' marks. 'Could not determine content container!' => 'Non posso determinare il contenuto del container!',
* 'Could not find content of addon!' => 'Impossibile trovare l\'addon richiesto!',
* Message string can be used with plural forms format. Check i18n section 'Default' => 'Predefinito',
* of the guide for details. 'Deny' => 'Rifiuta',
* 'Error' => 'Errore',
* NOTE: this file must be saved in UTF-8 encoding. 'Expand' => 'Espandi',
*/ 'It looks like you may have taken the wrong turn.' => 'Sembrerebbe che tu abbia preso una strada sbagliata.',
return [ 'Language' => 'Lingua',
'Show more' => '', 'Latest news' => 'Ultime notizie',
'The date has to be in the past.' => '', 'Login' => 'Login',
'Unsubscribe' => '', 'Logout' => 'Esci',
'<strong>Latest</strong> updates' => '<strong>Ultimi</strong> aggiornamenti', 'Menu' => 'Menu',
'Account settings' => 'Impostazioni account', 'Module is not enabled on this content container!' => 'Il modulo non è abilitato in questo contenitore!',
'Administration' => 'Amministrazione', 'My profile' => 'Il mio profilo',
'Allow' => 'Consenti', 'New profile image' => 'Nuova immagine profilo',
'Back' => 'Indietro', 'Next' => 'Avanti',
'Back to dashboard' => 'Torna al pannello di controllo', 'Ok' => 'Ok',
'Choose language:' => 'Scegli lingua:', 'Oooops...' => 'Oooops...',
'Collapse' => 'Chiudi', 'Please type at least 3 characters' => 'Prova a digitare almeno 3 caratteri',
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Il contenuto sorgente dell\'Addon deve essere un\'istanza di HActiveRecordContent o di HActiveRecordContentAddon!', 'Save' => 'Salva',
'Could not determine content container!' => 'Non posso determinare il contenuto del container!', 'Search' => 'Cerca',
'Could not find content of addon!' => 'Impossibile trovare l\'addon richiesto!', 'Search for users and spaces' => 'Cerca per utenti e space',
'Default' => 'Predefinito', 'Show more' => 'Mostra altro',
'Deny' => 'Rifiuta', 'Space not found!' => 'Space non trovato!',
'Error' => 'Errore', 'The date has to be in the past.' => 'La data deve essere nel passato.',
'Expand' => 'Espandi', 'Unsubscribe' => 'Cancella sottoscrizione',
'It looks like you may have taken the wrong turn.' => 'Sembrerebbe che tu abbia preso una strada sbagliata.', 'User not found!' => 'Utente non trovato!',
'Language' => 'Lingua', 'Your daily summary' => 'Il tuo riepilogo giornaliero',
'Latest news' => 'Ultime notizie', );
'Login' => 'Login',
'Logout' => 'Esci',
'Menu' => 'Menu',
'Module is not enabled on this content container!' => 'Il modulo non è abilitato in questo contenitore!',
'My profile' => 'Il mio profilo',
'New profile image' => 'Nuova immagine profilo',
'Next' => 'Avanti',
'Ok' => 'Ok',
'Oooops...' => 'Oooops...',
'Please type at least 3 characters' => 'Prova a digitare almeno 3 caratteri',
'Save' => 'Salva',
'Search' => 'Cerca',
'Search for users and spaces' => 'Cerca per utenti e space',
'Space not found!' => 'Space non trovato!',
'User not found!' => 'Utente non trovato!',
'Your daily summary' => 'Il tuo riepilogo giornaliero',
];

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'elemento lista', 'list text here' => 'elemento lista',
'quote here' => 'testo quotato', 'quote here' => 'testo quotato',
'strong text' => 'testo in grassetto', 'strong text' => 'testo in grassetto',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -1,57 +1,40 @@
<?php <?php
/** return array (
* Message translations. '<strong>Latest</strong> updates' => '<strong>最新</strong> 更新',
* 'Account settings' => 'アカウント設定',
* This file is automatically generated by 'yii message/extract' command. 'Administration' => '管理',
* It contains the localizable messages extracted from source code. 'Allow' => '許可',
* You may modify this file by translating the extracted messages. 'Back' => '戻る',
* 'Back to dashboard' => 'ダッシュボードへ戻る',
* Each array element represents the translation (value) of a message (key). 'Choose language:' => '言語を選択:',
* If the value is empty, the message is considered as not translated. 'Collapse' => '折りたたむ',
* Messages that no longer need translation will have their translations 'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'コンテンツアドオンソースは HActiveRecordContent または HActiveRecordContentAddon のインスタンスでなければなりません!',
* enclosed between a pair of '@@' marks. 'Could not determine content container!' => 'コンテンツコンテナを判別できませんでした!',
* 'Could not find content of addon!' => 'アドオンのコンテンツを見つけることができませんでした!',
* Message string can be used with plural forms format. Check i18n section 'Default' => 'デフォルト',
* of the guide for details. 'Deny' => '拒否',
* 'Error' => 'エラー',
* NOTE: this file must be saved in UTF-8 encoding. 'Expand' => '拡大',
*/ 'It looks like you may have taken the wrong turn.' => '間違った順番になっている可能性があります',
return [ 'Language' => '言語',
'Ok' => '', 'Latest news' => '最新ニュース',
'Show more' => '', 'Login' => 'ログイン',
'The date has to be in the past.' => '', 'Logout' => 'ログアウト',
'Unsubscribe' => '', 'Menu' => 'メニュー',
'<strong>Latest</strong> updates' => '<strong>最新</strong> 更新', 'Module is not enabled on this content container!' => 'このコンテンツコンテナに有効なモジュールがありません!',
'Account settings' => 'アカウント設定', 'My profile' => 'マイプロフィール',
'Administration' => '管理', 'New profile image' => '新しいプロフィール画像',
'Allow' => '許可', 'Next' => '次',
'Back' => '戻る', 'Ok' => 'はい',
'Back to dashboard' => 'ダッシュボードへ戻る', 'Oooops...' => 'おっと・・・',
'Choose language:' => '言語を選択:', 'Please type at least 3 characters' => '3 文字以上を入力してください',
'Collapse' => '折りたたむ', 'Save' => '保存',
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'コンテンツアドオンソースは HActiveRecordContent または HActiveRecordContentAddon のインスタンスでなければなりません!', 'Search' => '検索',
'Could not determine content container!' => 'コンテンツコンテナを判別できませんでした!', 'Search for users and spaces' => 'ユーザーまたはスペースの検索',
'Could not find content of addon!' => 'アドオンのコンテンツを見つけることができませんでした!', 'Show more' => 'もっと見せる',
'Default' => 'デフォルト', 'Space not found!' => 'スペースは見つかりませんでした',
'Deny' => '拒否', 'The date has to be in the past.' => '日付は過去である必要があります。',
'Error' => 'エラー', 'Unsubscribe' => '退会する',
'Expand' => '拡大', 'User not found!' => 'ユーザーは見つかりませんでした',
'It looks like you may have taken the wrong turn.' => '間違った順番になっている可能性があります', 'Your daily summary' => '本日の要約',
'Language' => '言語', );
'Latest news' => '最新ニュース',
'Login' => 'ログイン',
'Logout' => 'ログアウト',
'Menu' => 'メニュー',
'Module is not enabled on this content container!' => 'このコンテンツコンテナに有効なモジュールがありません!',
'My profile' => 'マイプロフィール',
'New profile image' => '新しいプロフィール画像',
'Next' => '次',
'Oooops...' => 'おっと・・・',
'Please type at least 3 characters' => '3 文字以上を入力してください',
'Save' => '保存',
'Search' => '検索',
'Search for users and spaces' => 'ユーザーまたはスペースの検索',
'Space not found!' => 'スペースは見つかりませんでした',
'User not found!' => 'ユーザーは見つかりませんでした',
'Your daily summary' => '本日の要約',
];

View File

@ -29,4 +29,6 @@ return array (
'strong text' => '', 'strong text' => '',
'Close' => '閉じる', 'Close' => '閉じる',
'Title' => 'タイトル', 'Title' => 'タイトル',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'list text here' => '리스트 내용을 여기에 적어주세요', 'list text here' => '리스트 내용을 여기에 적어주세요',
'quote here' => '인용 내용을 여기에 적어주세요', 'quote here' => '인용 내용을 여기에 적어주세요',
'strong text' => '볼드 문자', 'strong text' => '볼드 문자',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'Įrašyti tekstą čia', 'list text here' => 'Įrašyti tekstą čia',
'quote here' => 'Cituoti čia', 'quote here' => 'Cituoti čia',
'strong text' => 'Paryškintas tekstas', 'strong text' => 'Paryškintas tekstas',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,56 @@
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' 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 [
'Allow' => 'Izin',
'Default' => 'Asal',
'Deny' => 'Larang',
'Please type at least 3 characters' => 'Sila tulis sekurang-kurangnya 3 karakter',
'Show more' => 'Paparkan lagi',
'The date has to be in the past.' => 'Tarikh mestilah yang sudah berlalu',
'Unsubscribe' => 'Hentikan langganan',
'<strong>Latest</strong> updates' => 'Kemaskini <strong>terkini</strong>',
'Account settings' => 'Tetapan akaun',
'Administration' => 'Pengurusan',
'Back' => 'Kembali',
'Back to dashboard' => 'Kembali ke papan utama',
'Choose language:' => 'Pilih bahasa:',
'Collapse' => 'Tutup',
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Sumber kandungan addon mestilah daripada HActiveRecordContent atau HActiveRecordContentAddon!',
'Could not find content of addon!' => 'Kandungan addon tidak ditemui!',
'Error' => 'Kesalahan',
'Expand' => 'Buka',
'It looks like you may have taken the wrong turn.' => 'Anda telah tersilap langkah.',
'Language' => 'Bahasa',
'Latest news' => 'Berita terbaru',
'Login' => 'Log Masuk',
'Logout' => 'Log Keluar',
'Menu' => 'Menu',
'Module is not enabled on this content container!' => 'Modul tidak diaktikfkan pada bekas kandungan ini!',
'My profile' => 'Profil saya',
'New profile image' => 'Imej profil baru',
'Next' => 'Seterusnya',
'Ok' => 'Ok',
'Oooops...' => 'Oooops...',
'Save' => 'Simpan',
'Search' => 'Cari',
'Search for users and spaces' => 'Cari ahli dan ruangan',
'Space not found!' => 'Ruangan tidak ditemui!',
'User not found!' => 'Ahli tidak ditemui!',
'Your daily summary' => 'Ringkasan harian anda',
];

View File

@ -0,0 +1,6 @@
<?php
return array (
'<strong>Login</strong> required' => '<strong>Log masuk</strong> diwajibkan',
'An internal server error occurred.' => 'Satu kesalahan dalaman server berlaku.',
'You are not allowed to perform this action.' => 'Anda tidak dibenarkan melaksanakan tindakan ini.',
);

View File

@ -0,0 +1,32 @@
<?php
return array (
'Add image/file' => 'Tambah imej/fail',
'Add link' => 'Tambah pautan',
'Bold' => 'Tebal',
'Close' => 'Tutup',
'Code' => 'Kod',
'Enter a url (e.g. http://example.com)' => 'Masukkan url (cth. https://hub.sch.my)',
'Heading' => 'Kepala',
'Image' => 'Imej',
'Image/File' => 'Imej/Fail',
'Insert Hyperlink' => 'Masukkan Pautan Hiper',
'Insert Image Hyperlink' => 'Masukkan Pautan Imej',
'Italic' => 'Senget',
'List' => 'Senarai',
'Please wait while uploading...' => 'Sila tunggu sementara memuatnaik...',
'Preview' => 'Semak',
'Quote' => 'Ungkap',
'Target' => 'Sasar',
'Title' => 'Tajuk',
'Title of your link' => 'Tajuk pautan anda',
'URL/Link' => 'URL/Pautan',
'code text here' => 'teks kod di sini',
'emphasized text' => 'teks dicerahkan',
'enter image description here' => 'masukkan deskripsi imej di sini',
'enter image title here' => 'masukkan tajuk imej di sini',
'enter link description here' => 'masukkan deskripsi pautan di sini',
'heading text' => 'teks kepala',
'list text here' => 'teks bagi senarai di sini',
'quote here' => 'ungkap di sini',
'strong text' => 'teks tebal',
);

View File

@ -29,4 +29,6 @@ return array (
'list text here' => '', 'list text here' => '',
'quote here' => '', 'quote here' => '',
'strong text' => '', 'strong text' => '',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'Lijsttekst', 'list text here' => 'Lijsttekst',
'quote here' => 'quote hier plaatsen', 'quote here' => 'quote hier plaatsen',
'strong text' => 'belangrijke tekst', 'strong text' => 'belangrijke tekst',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -1,57 +1,40 @@
<?php <?php
/** return array (
* Message translations. '<strong>Latest</strong> updates' => '<strong>Najnowsze</strong> aktualizacje',
* 'Account settings' => 'Ustawienia konta',
* This file is automatically generated by 'yii message/extract' command. 'Administration' => 'Administracja',
* It contains the localizable messages extracted from source code. 'Allow' => 'Zezwól',
* You may modify this file by translating the extracted messages. 'Back' => 'Wstecz',
* 'Back to dashboard' => 'Powrót do pulpitu',
* Each array element represents the translation (value) of a message (key). 'Choose language:' => 'Wybierz język:',
* If the value is empty, the message is considered as not translated. 'Collapse' => 'Zwiń',
* Messages that no longer need translation will have their translations 'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Źródło zawartości dodatku musi być instancją HActiveRecordContent lub HActiveRecordContentAddon!',
* enclosed between a pair of '@@' marks. 'Could not determine content container!' => 'Nie można określić kontenera!',
* 'Could not find content of addon!' => 'Nie znaleziono zawartości dodatku!',
* Message string can be used with plural forms format. Check i18n section 'Default' => 'Domyślny',
* of the guide for details. 'Deny' => 'Blokuj',
* 'Error' => 'Błąd',
* NOTE: this file must be saved in UTF-8 encoding. 'Expand' => 'Rozwiń',
*/ 'It looks like you may have taken the wrong turn.' => 'Chyba zabłądziłeś.',
return [ 'Language' => 'Język',
'Show more' => '', 'Latest news' => 'Najnowsze wiadomości',
'The date has to be in the past.' => '', 'Login' => 'Login',
'Unsubscribe' => '', 'Logout' => 'Wyloguj',
'<strong>Latest</strong> updates' => '<strong>Najnowsze</strong> aktualizacje', 'Menu' => 'Menu',
'Account settings' => 'Ustawienia konta', 'Module is not enabled on this content container!' => 'Moduł w tym kontenerze nie jest uruchomiony!',
'Administration' => 'Administracja', 'My profile' => 'Mój profil',
'Allow' => 'Zezwól', 'New profile image' => 'Nowe zdjęcie profilowe',
'Back' => 'Wstecz', 'Next' => 'Dalej',
'Back to dashboard' => 'Powrót do pulpitu', 'Ok' => 'Ok',
'Choose language:' => 'Wybierz język:', 'Oooops...' => 'Upsss...',
'Collapse' => 'Zwiń', 'Please type at least 3 characters' => 'Wpisz przynajmniej 3 znaki',
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Źródło zawartości dodatku musi być instancją HActiveRecordContent lub HActiveRecordContentAddon!', 'Save' => 'Zapisz',
'Could not determine content container!' => 'Nie można określić kontenera!', 'Search' => 'Szukaj',
'Could not find content of addon!' => 'Nie znaleziono zawartości dodatku!', 'Search for users and spaces' => 'Szukaj użytkowników i stref',
'Default' => 'Domyślny', 'Show more' => 'Pokaż więcej',
'Deny' => 'Blokuj', 'Space not found!' => 'Nie znaleziono strefy!',
'Error' => 'Błąd', 'The date has to be in the past.' => 'Wpisana data musi być wcześniejsza.',
'Expand' => 'Rozwiń', 'Unsubscribe' => 'Anuluj subskrybcję',
'It looks like you may have taken the wrong turn.' => 'Chyba zabłądziłeś.', 'User not found!' => 'Użytkownik nie został znaleziony',
'Language' => 'Język', 'Your daily summary' => 'Podsumowanie dzienne',
'Latest news' => 'Najnowsze wiadomości', );
'Login' => 'Login',
'Logout' => 'Wyloguj',
'Menu' => 'Menu',
'Module is not enabled on this content container!' => 'Moduł w tym kontenerze nie jest uruchomiony!',
'My profile' => 'Mój profil',
'New profile image' => 'Nowe zdjęcie profilowe',
'Next' => 'Dalej',
'Ok' => 'Ok',
'Oooops...' => 'Uuups...',
'Please type at least 3 characters' => 'Wpisz przynajmniej 3 znaki',
'Save' => 'Zapisz',
'Search' => 'Szukaj',
'Search for users and spaces' => 'Szukaj użytkowników i stref',
'Space not found!' => 'Nie znaleziono strefy!',
'User not found!' => 'Użytkownik nie został znaleziony',
'Your daily summary' => 'Podsumowanie dzienne',
];

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'tutaj wpisz listę', 'list text here' => 'tutaj wpisz listę',
'quote here' => 'tutaj wpisz cytat', 'quote here' => 'tutaj wpisz cytat',
'strong text' => 'pogrubiony tekst', 'strong text' => 'pogrubiony tekst',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'strong text' => 'texto forte', 'strong text' => 'texto forte',
'Close' => 'Fechar', 'Close' => 'Fechar',
'Title' => 'Título', 'Title' => 'Título',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -1,57 +1,40 @@
<?php <?php
/** return array (
* Message translations. '<strong>Latest</strong> updates' => 'Atualizações',
* 'Account settings' => 'Configurações da conta',
* This file is automatically generated by 'yii message/extract' command. 'Administration' => 'Administração',
* It contains the localizable messages extracted from source code. 'Allow' => 'Permitir',
* You may modify this file by translating the extracted messages. 'Back' => 'Voltar',
* 'Back to dashboard' => 'Voltar para o painel',
* Each array element represents the translation (value) of a message (key). 'Choose language:' => 'Escolha o idioma:',
* If the value is empty, the message is considered as not translated. 'Collapse' => 'Minimizar',
* Messages that no longer need translation will have their translations 'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Conteúdo fonte Addon deve ser instância de HActiveRecordContent ou HActiveRecordContentAddon!',
* enclosed between a pair of '@@' marks. '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 !',
* Message string can be used with plural forms format. Check i18n section 'Default' => 'Padrão',
* of the guide for details. 'Deny' => 'Recusar',
* 'Error' => 'Erro',
* NOTE: this file must be saved in UTF-8 encoding. 'Expand' => 'Expandir',
*/ 'It looks like you may have taken the wrong turn.' => 'Parece que você pode ter tomado o caminho errado.',
return [ 'Language' => 'Língua',
'Show more' => '', 'Latest news' => 'Últimas notícias',
'The date has to be in the past.' => '', 'Login' => 'Login',
'Unsubscribe' => '', 'Logout' => 'Sair',
'<strong>Latest</strong> updates' => 'Atualizações', 'Menu' => 'Menu',
'Account settings' => 'Configurações da conta', 'Module is not enabled on this content container!' => 'O módulo não está habilitado para este container!',
'Administration' => 'Administração', 'My profile' => 'Meu perfil',
'Allow' => 'Permitir', 'New profile image' => 'Nova imagem de perfil',
'Back' => 'Voltar', 'Next' => 'Avançar',
'Back to dashboard' => 'Voltar para o painel', 'Ok' => 'Ok',
'Choose language:' => 'Escolha o idioma:', 'Oooops...' => 'Oooops...',
'Collapse' => 'Minimizar', 'Please type at least 3 characters' => 'Por favor digite pelo menos 3 caracteres',
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Conteúdo fonte Addon deve ser instância de HActiveRecordContent ou HActiveRecordContentAddon!', 'Save' => 'Salvar',
'Could not determine content container!' => 'Não foi possível determinar o conteúdo!', 'Search' => 'Busca',
'Could not find content of addon!' => 'Não foi possível encontrar o conteúdo !', 'Search for users and spaces' => 'Busca por usuários e espaços',
'Default' => 'Padrão', 'Show more' => 'Mostrar mais',
'Deny' => 'Recusar', 'Space not found!' => 'Espaço não encontrado!',
'Error' => 'Erro', 'The date has to be in the past.' => 'A data tem de ser no passado.',
'Expand' => 'Expandir', 'Unsubscribe' => 'Desinscrever',
'It looks like you may have taken the wrong turn.' => 'Parece que você pode ter tomado o caminho errado.', 'User not found!' => 'Usuário não encontrado!',
'Language' => 'Língua', 'Your daily summary' => 'Seu resumo diário',
'Latest news' => 'Últimas notícias', );
'Login' => 'Login',
'Logout' => 'Sair',
'Menu' => 'Menu',
'Module is not enabled on this content container!' => 'O módulo não está habilitado para este container!',
'My profile' => 'Meu perfil',
'New profile image' => 'Nova imagem de perfil',
'Next' => 'Avançar',
'Ok' => 'Ok',
'Oooops...' => 'Oooops...',
'Please type at least 3 characters' => 'Por favor digite pelo menos 3 caracteres',
'Save' => 'Salvar',
'Search' => 'Busca',
'Search for users and spaces' => 'Busca por usuários e espaços',
'Space not found!' => 'Espaço não encontrado!',
'User not found!' => 'Usuário não encontrado!',
'Your daily summary' => 'Seu resumo diário',
];

View File

@ -24,9 +24,11 @@ return array (
'emphasized text' => 'Texto enfatizado', 'emphasized text' => 'Texto enfatizado',
'enter image description here' => 'Insira a descrição da imagem aqui', 'enter image description here' => 'Insira a descrição da imagem aqui',
'enter image title here' => 'Insira o título da imagem aqui', 'enter image title here' => 'Insira o título da imagem aqui',
'enter link description here' => 'Insira descrição do link aqui', 'enter link description here' => 'Insira a descrição do link aqui',
'heading text' => 'Texto do cabeçalho ', 'heading text' => 'Texto do cabeçalho ',
'list text here' => 'Listar texto aqui', 'list text here' => 'Listar texto aqui',
'quote here' => 'Citação aqui', 'quote here' => 'Citação aqui',
'strong text' => 'Negrito', 'strong text' => 'Negrito',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'textul listei aici', 'list text here' => 'textul listei aici',
'quote here' => 'citatul aici', 'quote here' => 'citatul aici',
'strong text' => 'text îngroșat', 'strong text' => 'text îngroșat',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'текстовый список здесь', 'list text here' => 'текстовый список здесь',
'quote here' => 'процитировать', 'quote here' => 'процитировать',
'strong text' => 'выделенный текст', 'strong text' => 'выделенный текст',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'list text here' => '여기에 리스트 내용을 입력해주세요', 'list text here' => '여기에 리스트 내용을 입력해주세요',
'quote here' => '여기에 인용할 내용을 입력해주세요', 'quote here' => '여기에 인용할 내용을 입력해주세요',
'strong text' => '굵은 텍스트', 'strong text' => '굵은 텍스트',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'quote here' => '', 'quote here' => '',
'strong text' => '', 'strong text' => '',
'Close' => 'Stäng', 'Close' => 'Stäng',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'strong text' => '', 'strong text' => '',
'Close' => 'ปิด', 'Close' => 'ปิด',
'Title' => 'Título', 'Title' => 'Título',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -1,57 +1,40 @@
<?php <?php
/** return array (
* Message translations. '<strong>Latest</strong> updates' => '<strong>Son</strong> güncellemeler',
* 'Account settings' => 'Hesap ayarları',
* This file is automatically generated by 'yii message/extract' command. 'Administration' => 'Yönetim',
* It contains the localizable messages extracted from source code. 'Allow' => 'İzin ver',
* You may modify this file by translating the extracted messages. 'Back' => 'Geri',
* 'Back to dashboard' => 'Panele geri dön',
* Each array element represents the translation (value) of a message (key). 'Choose language:' => 'Dil Seçin:',
* If the value is empty, the message is considered as not translated. 'Collapse' => 'Gizle',
* Messages that no longer need translation will have their translations 'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'İçerik eklenti kaynağı HActiveRecordContent ya da HActiveRecordAddon şeklinde olmalı!',
* enclosed between a pair of '@@' marks. 'Could not determine content container!' => 'İçerik kabı saptanamıyor!',
* 'Could not find content of addon!' => 'Eklenti içeriği bulunamadı!',
* Message string can be used with plural forms format. Check i18n section 'Default' => 'Standart',
* of the guide for details. 'Deny' => 'Reddet',
* 'Error' => 'Hata',
* NOTE: this file must be saved in UTF-8 encoding. 'Expand' => 'Göster',
*/ 'It looks like you may have taken the wrong turn.' => 'Yanlış bir geridönüş var gibi görünüyor.',
return [ 'Language' => 'Dil',
'Show more' => '', 'Latest news' => 'Güncel haberler',
'The date has to be in the past.' => '', 'Login' => 'Giriş',
'Unsubscribe' => '', 'Logout' => ıkış',
'<strong>Latest</strong> updates' => '<strong>Son</strong> güncellemeler', 'Menu' => 'Menü',
'Account settings' => 'Hesap ayarları', 'Module is not enabled on this content container!' => 'Etkin içerik kabı üzerinde modül etkin değil!',
'Administration' => 'Yönetim', 'My profile' => 'Profilim',
'Allow' => 'İzin ver', 'New profile image' => 'Yeni profil resmi',
'Back' => 'Geri', 'Next' => 'İleri',
'Back to dashboard' => 'Panele geri dön', 'Ok' => 'Tamam',
'Choose language:' => 'Dil Seçin:', 'Oooops...' => 'Hata...',
'Collapse' => 'Gizle', 'Please type at least 3 characters' => 'Lütfen en az 3 karakter giriniz',
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'İçerik eklenti kaynağı HActiveRecordContent ya da HActiveRecordAddon şeklinde olmalı!', 'Save' => 'Kaydet',
'Could not determine content container!' => 'İçerik kabı saptanamıyor!', 'Search' => 'Arama',
'Could not find content of addon!' => 'Eklenti içeriği bulunamadı!', 'Search for users and spaces' => 'Kullanıcı ve alanlarda ara',
'Default' => 'Standart', 'Show more' => 'Daha fazla göster',
'Deny' => 'Reddet', 'Space not found!' => 'Alan bulunamadı!',
'Error' => 'Hata', 'The date has to be in the past.' => 'Tarihin geçmişte olması gerekiyor.',
'Expand' => 'Göster', 'Unsubscribe' => 'Abonelikten çık',
'It looks like you may have taken the wrong turn.' => 'Yanlış bir geridönüş var gibi görünüyor.', 'User not found!' => 'Kullanıcı bulunamadı!',
'Language' => 'Dil', 'Your daily summary' => 'Günlük özet',
'Latest news' => 'Güncel haberler', );
'Login' => 'Giriş',
'Logout' => ıkış',
'Menu' => 'Menü',
'Module is not enabled on this content container!' => 'Etkin içerik kabı üzerinde modül etkin değil!',
'My profile' => 'Profilim',
'New profile image' => 'Yeni profil resmi',
'Next' => 'İleri',
'Ok' => 'Tamam',
'Oooops...' => 'Hata...',
'Please type at least 3 characters' => 'Lütfen en az 3 karakter giriniz',
'Save' => 'Kaydet',
'Search' => 'Arama',
'Search for users and spaces' => 'Kullanıcı ve alanlarda ara',
'Space not found!' => 'Alan bulunamadı!',
'User not found!' => 'Kullanıcı bulunamadı!',
'Your daily summary' => 'Günlük özet',
];

View File

@ -29,4 +29,6 @@ return array (
'list text here' => 'metin listesi girin', 'list text here' => 'metin listesi girin',
'quote here' => 'alıntı girin', 'quote here' => 'alıntı girin',
'strong text' => 'kalın metin', 'strong text' => 'kalın metin',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'list text here' => '', 'list text here' => '',
'quote here' => '', 'quote here' => '',
'strong text' => '', 'strong text' => '',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -29,4 +29,6 @@ return array (
'list text here' => '', 'list text here' => '',
'quote here' => '', 'quote here' => '',
'strong text' => '', 'strong text' => '',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -29,4 +29,6 @@ return array (
'strong text' => '', 'strong text' => '',
'Close' => 'Đóng', 'Close' => 'Đóng',
'Title' => 'Tiêu đề', 'Title' => 'Tiêu đề',
'Unordered List' => '',
'Ordered List' => '',
); );

File diff suppressed because one or more lines are too long

View File

@ -17,23 +17,23 @@
* NOTE: this file must be saved in UTF-8 encoding. * NOTE: this file must be saved in UTF-8 encoding.
*/ */
return [ return [
'<strong>Latest</strong> updates' => '', '<strong>Latest</strong> updates' => '<strong>最近</strong> 更新',
'Allow' => '', 'Allow' => '允许',
'Choose language:' => '', 'Choose language:' => '选择语言',
'Could not determine content container!' => '', 'Could not determine content container!' => '检测不到内容器!',
'Could not find content of addon!' => '', 'Could not find content of addon!' => '找不到内容的插件!',
'Default' => '', 'Default' => '默认',
'Deny' => '', 'Deny' => '拒绝',
'It looks like you may have taken the wrong turn.' => '', 'It looks like you may have taken the wrong turn.' => '看来出错了。',
'Login' => '', 'Login' => '登录',
'Module is not enabled on this content container!' => '', 'Module is not enabled on this content container!' => '该内容容器上没有启用模块!',
'Next' => '', 'Next' => '下一步',
'Oooops...' => '', 'Oooops...' => '糟糕...',
'Please type at least 3 characters' => '', 'Please type at least 3 characters' => '请至少输入3个字符',
'Show more' => '', 'Show more' => '展示更多',
'The date has to be in the past.' => '', 'The date has to be in the past.' => '必须为过去的日期。',
'Unsubscribe' => '', 'Unsubscribe' => '退订',
'Your daily summary' => '', 'Your daily summary' => '你的日常',
'Account settings' => '帐户设置', 'Account settings' => '帐户设置',
'Administration' => '管理', 'Administration' => '管理',
'Back' => '返回', 'Back' => '返回',
@ -51,7 +51,7 @@ return [
'Ok' => 'Ok', 'Ok' => 'Ok',
'Save' => '保存', 'Save' => '保存',
'Search' => '搜索', 'Search' => '搜索',
'Search for users and spaces' => '搜索用户或版块', 'Search for users and spaces' => '搜索用户或空间',
'Space not found!' => '没找到版块', 'Space not found!' => '没找到空间',
'User not found!' => '没找到用户', 'User not found!' => '没找到用户',
]; ];

View File

@ -17,7 +17,7 @@
* NOTE: this file must be saved in UTF-8 encoding. * NOTE: this file must be saved in UTF-8 encoding.
*/ */
return [ return [
'<strong>Login</strong> required' => '', '<strong>Login</strong> required' => '<strong>必须</strong> 登录',
'An internal server error occurred.' => '', 'An internal server error occurred.' => '发生了一个内部错误。',
'You are not allowed to perform this action.' => '', 'You are not allowed to perform this action.' => '你没有权限执行此操作。',
]; ];

View File

@ -1,32 +1,34 @@
<?php <?php
return array ( return array (
'Add image/file' => '', 'Add image/file' => '添加 图片/文件',
'Add link' => '', 'Add link' => '增加链接',
'Bold' => '', 'Bold' => '加粗',
'Code' => '', 'Code' => '代码',
'Enter a url (e.g. http://example.com)' => '', 'Enter a url (e.g. http://example.com)' => '输入一个url(例如 http://example.com)',
'Heading' => '', 'Heading' => '标题',
'Image' => '', 'Image' => '图片',
'Image/File' => '', 'Image/File' => '图片/文件',
'Insert Hyperlink' => '', 'Insert Hyperlink' => '插入超链接',
'Insert Image Hyperlink' => '', 'Insert Image Hyperlink' => '插入图片超链接',
'Italic' => '', 'Italic' => '斜体',
'List' => '', 'List' => '列表',
'Please wait while uploading...' => '', 'Please wait while uploading...' => '请稍候正在上传中...',
'Preview' => '', 'Preview' => '预览',
'Quote' => '', 'Quote' => '引用',
'Target' => '', 'Target' => '目标',
'Title of your link' => '', 'Title of your link' => '链接的标题',
'URL/Link' => '', 'URL/Link' => 'URL/链接',
'code text here' => '', 'code text here' => '代码在这里',
'emphasized text' => '', 'emphasized text' => '强调文本',
'enter image description here' => '', 'enter image description here' => '在这里输入图像描述',
'enter image title here' => '', 'enter image title here' => '在这里输入图像标题',
'enter link description here' => '', 'enter link description here' => '在这里输入链接描述',
'heading text' => '', 'heading text' => '标题文本',
'list text here' => '', 'list text here' => '列表在这里',
'quote here' => '', 'quote here' => '这里引用',
'strong text' => '', 'strong text' => '加粗文本',
'Close' => '关闭', 'Close' => '关闭',
'Title' => '标题', 'Title' => '标题',
'Unordered List' => '无序列表',
'Ordered List' => '有序列表',
); );

View File

@ -29,4 +29,6 @@ return array (
'quote here' => '', 'quote here' => '',
'strong text' => '', 'strong text' => '',
'Title' => '標題', 'Title' => '標題',
'Unordered List' => '',
'Ordered List' => '',
); );

View File

@ -1,22 +1,5 @@
<?php <?php
/** return array (
* Message translations. '%displayName% created the new space %spaceName%' => '%displayName% kreye yon nouvo espas nan %spaceName%',
* '%displayName% created this space.' => '%displayName% kreye espas sa.',
* This file is automatically generated by 'yii message/extract' 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 [
'%displayName% created the new space %spaceName%' => '',
'%displayName% created this space.' => '',
];

View File

@ -1,22 +1,5 @@
<?php <?php
/** return array (
* Message translations. '%displayName% joined the space %spaceName%' => '%displayName% jwen\'n espas %spaceName%',
* '%displayName% joined this space.' => '%displayName% jwen\'n espas sa.',
* This file is automatically generated by 'yii message/extract' 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 [
'%displayName% joined the space %spaceName%' => '',
'%displayName% joined this space.' => '',
];

View File

@ -1,22 +1,5 @@
<?php <?php
/** return array (
* Message translations. '%displayName% left the space %spaceName%' => '%displayName% kite espas %spaceName%',
* '%displayName% left this space.' => '%displayName% kite espas sa.',
* This file is automatically generated by 'yii message/extract' 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 [
'%displayName% left the space %spaceName%' => '',
'%displayName% left this space.' => '',
];

View File

@ -1,21 +1,4 @@
<?php <?php
/** return array (
* Message translations. '{user1} now follows {user2}.' => '{user1} konnya ap swiv {user2}.',
* );
* This file is automatically generated by 'yii message/extract' 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 [
'{user1} now follows {user2}.' => '',
];

View File

@ -1,22 +1,5 @@
<?php <?php
/** return array (
* Message translations. 'see online' => 'wè online',
* 'via' => 'atravè',
* This file is automatically generated by 'yii message/extract' 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 [
'see online' => '',
'via' => '',
];

View File

@ -1,22 +1,5 @@
<?php <?php
/** return array (
* Message translations. '<strong>Latest</strong> activities' => '<strong>Dènye</strong> aktivite',
* 'There are no activities yet.' => 'Pa gen oken\'n aktivite ankò.',
* This file is automatically generated by 'yii message/extract' 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 [
'<strong>Latest</strong> activities' => '',
'There are no activities yet.' => '',
];

View File

@ -17,6 +17,6 @@
* NOTE, this file must be saved in UTF-8 encoding. * NOTE, this file must be saved in UTF-8 encoding.
*/ */
return array ( return array (
'%displayName% created the new space %spaceName%' => '%displayName% 创建版块 %spaceName%', '%displayName% created the new space %spaceName%' => '%displayName% 创建空间 %spaceName%',
'%displayName% created this space.' => '%displayName% 创建这个版块.', '%displayName% created this space.' => '%displayName% 创建这个空间.',
); );

View File

@ -17,6 +17,6 @@
* NOTE, this file must be saved in UTF-8 encoding. * NOTE, this file must be saved in UTF-8 encoding.
*/ */
return array ( return array (
'%displayName% joined the space %spaceName%' => '%displayName% 加入版块 %spaceName%', '%displayName% joined the space %spaceName%' => '%displayName% 加入空间 %spaceName%',
'%displayName% joined this space.' => '%displayName% 加入这个版块.', '%displayName% joined this space.' => '%displayName% 加入这个空间.',
); );

View File

@ -17,6 +17,6 @@
* NOTE, this file must be saved in UTF-8 encoding. * NOTE, this file must be saved in UTF-8 encoding.
*/ */
return array ( return array (
'%displayName% left the space %spaceName%' => '%displayName% 离开版块 %spaceName%', '%displayName% left the space %spaceName%' => '%displayName% 离开空间 %spaceName%',
'%displayName% left this space.' => '%displayName% 离开这个版块', '%displayName% left this space.' => '%displayName% 离开这个空间',
); );

View File

@ -9,6 +9,7 @@
namespace humhub\modules\admin; namespace humhub\modules\admin;
use Yii; use Yii;
use humhub\modules\admin\models\Log;
/** /**
@ -46,6 +47,15 @@ class Events extends \yii\base\Object
{ {
$controller = $event->sender; $controller = $event->sender;
$controller->stdout("Deleting old logs... ");
$settings = Yii::$app->settings;
$timeAgo = strtotime($settings->get('logsDateLimit'));
$deleted = Log::deleteAll(['<', 'log_time', $timeAgo]);
$controller->stdout('done - ' . $deleted . ' records deleted.' . PHP_EOL, \yii\helpers\Console::FG_GREEN);
if (!Yii::$app->getModule('admin')->dailyCheckForNewVersion) { if (!Yii::$app->getModule('admin')->dailyCheckForNewVersion) {
return; return;
} }

View File

@ -12,6 +12,7 @@ use Yii;
use humhub\libs\ThemeHelper; use humhub\libs\ThemeHelper;
use humhub\models\UrlOembed; use humhub\models\UrlOembed;
use humhub\modules\admin\components\Controller; use humhub\modules\admin\components\Controller;
use humhub\modules\admin\models\Log;
use humhub\modules\notification\models\forms\NotificationSettings; use humhub\modules\notification\models\forms\NotificationSettings;
/** /**
@ -239,6 +240,39 @@ class SettingController extends Controller
return $this->render('oembed', array('providers' => $providers)); return $this->render('oembed', array('providers' => $providers));
} }
public function actionLogs()
{
$logsCount = Log::find()->count();
$dating = Log::find()
->orderBy('log_time', 'asc')
->limit(1)
->one();
// I wish..
if ($dating) {
$dating = date('Y-m-d H:i:s', $dating->log_time);
} else {
$dating = "the begining of time";
}
$form = new \humhub\modules\admin\models\forms\LogsSettingsForm;
$limitAgeOptions = $form->options;
if ($form->load(Yii::$app->request->post()) && $form->validate() && $form->save()) {
$timeAgo = strtotime($form->logsDateLimit);
Log::deleteAll(['<', 'log_time', $timeAgo]);
Yii::$app->getSession()->setFlash('data-saved', Yii::t('AdminModule.controllers_SettingController', 'Saved'));
return $this->redirect(['/admin/setting/logs']);
}
return $this->render('logs', array(
'logsCount' => $logsCount,
'model' => $form,
'limitAgeOptions' => $limitAgeOptions,
'dating' => $dating
));
}
/** /**
* Add or edit an OEmbed Provider * Add or edit an OEmbed Provider
*/ */

View File

@ -1,35 +1,18 @@
<?php <?php
/** return array (
* Message translations. 'Base URL' => 'Basis URL',
* 'Date input format' => 'Datumsformat',
* This file is automatically generated by 'yii message/extract' command. 'Default language' => 'Standardsprache',
* It contains the localizable messages extracted from source code. 'Default space' => 'Standardspace',
* You may modify this file by translating the extracted messages. 'Default stream content order' => 'Standard Reihenfolge des Streams',
* 'Enable user friendship system' => 'Aktivieren des Freundschaftssystem unter Benutzern',
* Each array element represents the translation (value) of a message (key). 'Horizontal scrolling images on a mobile device' => 'Horizontal blätternde Bilder auf einem Mobilgerät ',
* If the value is empty, the message is considered as not translated. 'Invalid space' => 'Ungültiger Space',
* Messages that no longer need translation will have their translations 'Logo upload' => 'Logo hochladen',
* enclosed between a pair of '@@' marks. 'Name of the application' => 'Name der Anwendung',
* 'Server Timezone' => 'Zeitzone des Servers',
* Message string can be used with plural forms format. Check i18n section 'Show introduction tour for new users' => 'Zeige Einführungstour für neue Benutzer',
* of the guide for details. 'Show user profile post form on dashboard' => 'Zeige Eingabeformular für die Benutzeraktivitäten in der Übersicht',
* 'Sort by creation date' => 'Nach Erstelldatum sortieren',
* NOTE: this file must be saved in UTF-8 encoding. 'Sort by update date' => 'Nach letzter Aktualisierung sortieren',
*/ );
return [
'Horizontal scrolling images on a mobile device' => '',
'Base URL' => 'Basis URL',
'Date input format' => 'Datumsformat',
'Default language' => 'Standardsprache',
'Default space' => 'Standardspace',
'Default stream content order' => 'Standard Reihenfolge des Streams',
'Enable user friendship system' => 'Aktivieren des Freundschaftssystem unter Benutzern',
'Invalid space' => 'Ungültiger Space',
'Logo upload' => 'Logo hochladen',
'Name of the application' => 'Name der Anwendung',
'Server Timezone' => 'Zeitzone des Servers',
'Show introduction tour for new users' => 'Zeige Einführungstour für neue Benutzer',
'Show user profile post form on dashboard' => 'Zeige Eingabeformular für die Benutzeraktivitäten in der Übersicht',
'Sort by creation date' => 'Nach Erstelldatum sortieren',
'Sort by update date' => 'Nach letzter Aktualisierung sortieren',
];

View File

@ -1,6 +1,6 @@
<?php <?php
return array ( return array (
'Ok' => 'Ok', 'Ok' => 'Ok',
'The HumHub developers provide no support for third-party modules and neighter give any guarantee about the suitability, functionality or security of this module.' => '', 'The HumHub developers provide no support for third-party modules and neighter give any guarantee about the suitability, functionality or security of this module.' => 'Die HumHub-Entwickler bieten keine Unterstützung für Module von Drittanbietern und geben keinerlei Garantie für die Eignung, Funktionalität oder Sicherheit dieses Moduls.',
'Third-party disclaimer' => 'Third-party Disclaimer', 'Third-party disclaimer' => 'Haftungsausschluss von Drittanbietern',
); );

View File

@ -1,14 +1,14 @@
<?php <?php
return array ( return array (
'Activities' => 'Aktivitäten', 'Activities' => 'Aktivitäten',
'Activities provide an overview of taken actions in context of a space or other users. (e.g. a new post was written or a new member joined the space).' => '', 'Activities provide an overview of taken actions in context of a space or other users. (e.g. a new post was written or a new member joined the space).' => 'Aktivitäten bieten einen Überblick über Aktionen im Rahmen eines Spaces oder anderer Benutzer. (Z. B. eine neue Nachricht wurde geschrieben oder ein neues Mitglied trat dem Space bei).',
'Always' => 'Immer', 'Always' => 'Immer',
'Daily summary' => 'Tägliche Zusammenfassung', 'Daily summary' => 'Tägliche Zusammenfassung',
'Define the default behaviour for sending user e-mails. These settings can be overwritten by users in their account settings.' => '', 'Define the default behaviour for sending user e-mails. These settings can be overwritten by users in their account settings.' => 'Definieren Sie das Standardverhalten für das Versenden von Benutzer-E-Mails. Diese Einstellungen können von Benutzern in ihren Kontoeinstellungen überschrieben werden.',
'General' => 'Allgemein', 'General' => 'Allgemein',
'Never' => 'Nie', 'Never' => 'Nie',
'Notifications' => 'Benachrichtigungen', 'Notifications' => 'Benachrichtigungen',
'Notifications are user related information (e.g. new comments on own posts or a new follower). Notifications will also be created when an user-action is required (e.g. friendship request).' => '', 'Notifications are user related information (e.g. new comments on own posts or a new follower). Notifications will also be created when an user-action is required (e.g. friendship request).' => 'Benachrichtigungen sind benutzerbezogene Informationen (z. B. neue Kommentare zu eigenen Beiträgen oder einen neuen Nachfolger). Benachrichtigungen werden auch erstellt, wenn eine Benutzeraktion erforderlich ist (z. B. Freundschaftsanforderung).',
'Save' => 'Speichern', 'Save' => 'Speichern',
'Server Settings' => 'Server Einstellungen', 'Server Settings' => 'Server Einstellungen',
'When I´m offline' => 'Wenn ich offline bin', 'When I´m offline' => 'Wenn ich offline bin',

View File

@ -1,27 +1,10 @@
<?php <?php
/** return array (
* Message translations. '<strong>Manage</strong> spaces' => '<strong>Verwalten</strong> der Spaces',
* 'Actions' => 'Aktionen',
* This file is automatically generated by 'yii message/extract' command. 'Here you can define your default settings for new spaces. These settings can be overwritten for each individual space.' => 'Hier können die allgemeinen Einstellungen für neue Spaces festlegen. Diese Einstellungen können für jeden einzelnen Space überschrieben werden. ',
* It contains the localizable messages extracted from source code. 'Overview' => 'Übersicht',
* You may modify this file by translating the extracted messages. 'Settings' => 'Einstellungen',
* 'Spaces' => 'Spaces',
* Each array element represents the translation (value) of a message (key). 'This overview contains a list of each space with actions to view, edit and delete spaces.' => 'Diese Übersicht enthält eine Liste mit allen Spaces mit der Möglichkeit sie an zu zeigen, zu editieren oder zu löschen',
* 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 [
'Spaces' => '',
'<strong>Manage</strong> spaces' => '<strong>Verwalten</strong> der Spaces',
'Actions' => 'Aktionen',
'Here you can define your default settings for new spaces. These settings can be overwritten for each individual space.' => 'Hier kannst die allgemeinen Einstellungen für neue Spaces festlegen. Diese Einstellungen können für jeden einzelnen Space überschrieben werden. ',
'Overview' => 'Übersicht',
'Settings' => 'Einstellungen',
'This overview contains a list of each space with actions to view, edit and delete spaces.' => 'Diese Übersicht enthält eine Liste mit allen Spaces mit der Möglichkeit sie an zu zeigen, zu editieren oder zu löschen',
];

View File

@ -1,22 +1,5 @@
<?php <?php
/** return array (
* Message translations. 'Save' => 'Speichern',
* 'Space Settings' => 'Space Einstellungen',
* This file is automatically generated by 'yii message/extract' 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 [
'Space Settings' => '',
'Save' => 'Speichern',
];

View File

@ -2,26 +2,26 @@
return array ( return array (
'About' => 'Informazioni', 'About' => 'Informazioni',
'Add purchased module by licence key' => '', 'Add purchased module by licence key' => '',
'Admin' => '', 'Admin' => 'Amministrazione',
'Administration' => 'Amministrazione', 'Administration' => 'Amministrazione',
'Approval' => 'Approvazione', 'Approval' => 'Approvazione',
'Authentication' => 'Autenticazione', 'Authentication' => 'Autenticazione',
'Basic' => 'Di base', 'Basic' => 'Di base',
'Caching' => '', 'Caching' => '',
'Cronjobs' => '', 'Cronjobs' => '',
'Design' => '', 'Design' => 'Design',
'Files' => 'File', 'Files' => 'File',
'Groups' => 'Gruppi', 'Groups' => 'Gruppi',
'Logging' => '', 'Logging' => '',
'Mailing' => '', 'Mailing' => '',
'Modules' => 'Moduli', 'Modules' => 'Moduli',
'OEmbed providers' => '', 'OEmbed providers' => '',
'Proxy' => '', 'Proxy' => 'Proxy',
'Security' => 'Sicurezza', 'Security' => 'Sicurezza',
'Self test' => '', 'Self test' => '',
'Spaces' => 'Space', 'Spaces' => 'Space',
'Statistics' => 'Statistiche', 'Statistics' => 'Statistiche',
'User posts' => '', 'User posts' => 'Post degli utenti',
'Userprofiles' => '', 'Userprofiles' => 'Profili utente',
'Users' => 'Persone', 'Users' => 'Utenti',
); );

View File

@ -1,23 +1,6 @@
<?php <?php
/** return array (
* Message translations. 'Group not found!' => 'Gruppo non trovato!',
* 'Group user not found!' => '',
* This file is automatically generated by 'yii message/extract' command. 'No value found!' => 'Valore non trovato!',
* 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 [
'Group user not found!' => '',
'No value found!' => '',
'Group not found!' => 'Gruppo non trovato!',
];

View File

@ -2,26 +2,26 @@
return array ( return array (
'About' => 'O mnie', 'About' => 'O mnie',
'Add purchased module by licence key' => 'Dodaj zakupiony moduł wprowadzając klucz licencyjny', 'Add purchased module by licence key' => 'Dodaj zakupiony moduł wprowadzając klucz licencyjny',
'Admin' => '', 'Admin' => 'Admin',
'Administration' => 'Administracja', 'Administration' => 'Administracja',
'Approval' => '', 'Approval' => 'Zatwierdzanie',
'Authentication' => '', 'Authentication' => 'Uwieżytelnianie',
'Basic' => 'Podstawowe', 'Basic' => 'Podstawowe',
'Caching' => 'Cache', 'Caching' => 'Cache',
'Cronjobs' => '', 'Cronjobs' => 'Zadania cron',
'Design' => '', 'Design' => 'Wygląd',
'Files' => 'Pliki', 'Files' => 'Pliki',
'Groups' => 'Grupy ', 'Groups' => 'Grupy ',
'Logging' => '', 'Logging' => 'Logowanie',
'Mailing' => '', 'Mailing' => 'Mailing',
'Modules' => 'Moduły', 'Modules' => 'Moduły',
'OEmbed providers' => '', 'OEmbed providers' => 'Dostawcy OEmbed',
'Proxy' => 'Serwer Proxy', 'Proxy' => 'Serwer Proxy',
'Security' => '', 'Security' => 'Bezpieczeństwo',
'Self test' => '', 'Self test' => 'Auto test',
'Spaces' => 'Strefy', 'Spaces' => 'Strefy',
'Statistics' => 'Statystyki', 'Statistics' => 'Statystyki',
'User posts' => '', 'User posts' => 'Wpisy użytkowników',
'Userprofiles' => '', 'Userprofiles' => 'Profile użytkowników',
'Users' => 'Użytkownicy', 'Users' => 'Użytkownicy',
); );

View File

@ -1,35 +1,18 @@
<?php <?php
/** return array (
* Message translations. 'Base URL' => 'URL base',
* 'Date input format' => 'Formato de data',
* This file is automatically generated by 'yii message/extract' command. 'Default language' => 'Idioma padrão',
* It contains the localizable messages extracted from source code. 'Default space' => 'Espaço padrão',
* You may modify this file by translating the extracted messages. 'Default stream content order' => 'Ordem padrão do stream',
* 'Enable user friendship system' => 'Habilitar interface simplificada para o usuário.',
* Each array element represents the translation (value) of a message (key). 'Horizontal scrolling images on a mobile device' => 'Imagens de rolagem horizontal em um dispositivo móvel',
* If the value is empty, the message is considered as not translated. 'Invalid space' => 'Espaço inválido',
* Messages that no longer need translation will have their translations 'Logo upload' => 'Enviar logomarca',
* enclosed between a pair of '@@' marks. 'Name of the application' => 'Nome da aplicação',
* 'Server Timezone' => 'Fuso horário do servidor',
* Message string can be used with plural forms format. Check i18n section 'Show introduction tour for new users' => 'Mostrar tour de introdução para novos usuários',
* of the guide for details. 'Show user profile post form on dashboard' => 'Possibilitar ao usuário postar no painel',
* 'Sort by creation date' => 'Classificar por data de criação',
* NOTE: this file must be saved in UTF-8 encoding. 'Sort by update date' => 'Classificar por data de atualização',
*/ );
return [
'Horizontal scrolling images on a mobile device' => '',
'Base URL' => 'URL base',
'Date input format' => 'Formato de data',
'Default language' => 'Idioma padrão',
'Default space' => 'Espaço padrão',
'Default stream content order' => 'Orden padrão do stream',
'Enable user friendship system' => 'Habilitar interface simplificada para o usuário.',
'Invalid space' => 'Espaço inválido',
'Logo upload' => 'Enviar logomarca',
'Name of the application' => 'Nome da aplicação',
'Server Timezone' => 'Fuso horário do servidor',
'Show introduction tour for new users' => 'Mostrar tour de introdução para novos usuários',
'Show user profile post form on dashboard' => 'Possibilitar ao usuário postar no painel',
'Sort by creation date' => 'Classificar por data de criação',
'Sort by update date' => 'Classificar por data de atualização',
];

View File

@ -1,6 +1,6 @@
<?php <?php
return array ( return array (
'About HumHub' => 'Sobre Humhub', 'About HumHub' => 'Sobre HumHub',
'CronJobs' => 'Cronjobs', 'CronJobs' => 'Cronjobs',
'Database' => 'Banco de dados', 'Database' => 'Banco de dados',
'Logging' => '', 'Logging' => '',

View File

@ -1,25 +1,8 @@
<?php <?php
/** return array (
* Message translations. 'Min value is 20 seconds. If not set, session will timeout after 1400 seconds (24 minutes) regardless of activity (default session timeout)' => 'Valor mínimo é de 20 segundos. Se não for definido, a sessão será interrompida após 1400 segundo (24 minutos), independentemente da atividade (tempo limite de sessão padrão)',
* 'Only applicable when limited access for non-authenticated users is enabled. Only affects new users.' => 'Apenas aplicável quando o acesso limitado para usuários não-autenticados está habilitado. Afeta apenas novos usuários.',
* This file is automatically generated by 'yii message/extract' command. 'Save' => 'Salvar',
* It contains the localizable messages extracted from source code. 'Visible for members only' => 'Visível apenas para membros',
* You may modify this file by translating the extracted messages. 'Visible for members+guests' => 'Vísivel para membros e visitantes',
* );
* 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 [
'Visible for members only' => '',
'Visible for members+guests' => '',
'Min value is 20 seconds. If not set, session will timeout after 1400 seconds (24 minutes) regardless of activity (default session timeout)' => 'Valor mínimo é de 20 segundos. Se não for definido, a sessão será interrompida após 1400 segundo (24 minutos), independentemente da atividade (tempo limite de sessão padrão)',
'Only applicable when limited access for non-authenticated users is enabled. Only affects new users.' => 'Apenas aplicável quando o acesso limitado para usuários não-autenticados está habilitado. Afeta apenas novos usuários.',
'Save' => 'Salvar',
];

View File

@ -1,30 +1,13 @@
<?php <?php
/** return array (
* Message translations. '<strong>Confirm</strong> image deleting' => '<strong>Confirme</strong> a exclusão da imagem',
* 'Cancel' => 'Cancelar',
* This file is automatically generated by 'yii message/extract' command. 'Dashboard' => 'Painel',
* It contains the localizable messages extracted from source code. 'Delete' => 'Apagar',
* You may modify this file by translating the extracted messages. 'E.g. http://example.com/humhub' => 'P. ex. http://exemplo.com.br/humhub',
* 'Friendship' => 'Amizades',
* Each array element represents the translation (value) of a message (key). 'New users will automatically be added to these space(s).' => 'Novos usuário serão adicionados automaticamente a este(s) espaço(s).',
* If the value is empty, the message is considered as not translated. 'Save' => 'Salvar',
* Messages that no longer need translation will have their translations 'Wall entry layout' => '',
* enclosed between a pair of '@@' marks. 'You\'re using no logo at the moment. Upload your logo now.' => 'Você não está usando uma logomarca atualmente. Envie sua logomarca agora.',
* );
* 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 [
'Wall entry layout' => '',
'<strong>Confirm</strong> image deleting' => '<strong>Confirme</strong> apagar a imagem',
'Cancel' => 'Cancelar',
'Dashboard' => 'Painel',
'Delete' => 'Apagar',
'E.g. http://example.com/humhub' => 'P. ex. http://exemplo.com.br/humhub',
'Friendship' => 'Amizades',
'New users will automatically be added to these space(s).' => 'Novos usuário serão adicionados automaticamente a este(s) espaço(s).',
'Save' => 'Salvar',
'You\'re using no logo at the moment. Upload your logo now.' => 'Você não está usando uma logomarca atualmente. Envie sua logomarca agora.',
];

View File

@ -1,27 +1,10 @@
<?php <?php
/** return array (
* Message translations. '<strong>Manage</strong> spaces' => '<strong>Gerenciar</strong> espaços',
* 'Actions' => 'Ações',
* This file is automatically generated by 'yii message/extract' command. 'Here you can define your default settings for new spaces. These settings can be overwritten for each individual space.' => 'Aqui você pode definir as configurações padrão para novos espaços. Essas configurações podem ser alteradas individualmente para cada espaço.',
* It contains the localizable messages extracted from source code. 'Overview' => 'Visão Global',
* You may modify this file by translating the extracted messages. 'Settings' => 'Configurações',
* 'Spaces' => 'Espaços',
* Each array element represents the translation (value) of a message (key). 'This overview contains a list of each space with actions to view, edit and delete spaces.' => 'Esta Visão Global contém uma lista de ações para cada espaço como visualizar, editar e excluir espaços.',
* 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 [
'Spaces' => '',
'<strong>Manage</strong> spaces' => 'Gerenciar <strong>Espaços</strong>',
'Actions' => 'Ações',
'Here you can define your default settings for new spaces. These settings can be overwritten for each individual space.' => 'Aqui você pode definir as configurações padrão para novos espaços. Essas configurações podem ser alteradas individualmente para cada espaço.',
'Overview' => 'Visão Global',
'Settings' => 'Configurações',
'This overview contains a list of each space with actions to view, edit and delete spaces.' => 'Esta Visão Global contém uma lista de ações para cada espaço como visualizar, editar e excluir espaços.',
];

View File

@ -1,22 +1,5 @@
<?php <?php
/** return array (
* Message translations. 'Save' => 'Salvar',
* 'Space Settings' => 'Configurações do Espaço',
* This file is automatically generated by 'yii message/extract' 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 [
'Space Settings' => '',
'Save' => 'Salvar',
];

View File

@ -1,35 +1,18 @@
<?php <?php
/** return array (
* Message translations. 'Base URL' => 'Temel URL',
* 'Date input format' => 'Tarih giriş formatı',
* This file is automatically generated by 'yii message/extract' command. 'Default language' => 'Varsayılan dil',
* It contains the localizable messages extracted from source code. 'Default space' => 'Varsayılan alan',
* You may modify this file by translating the extracted messages. 'Default stream content order' => 'Varsayılan akış içeriği sırası',
* 'Enable user friendship system' => 'Arkadaşlık sistemini etkinleştir',
* Each array element represents the translation (value) of a message (key). 'Horizontal scrolling images on a mobile device' => 'Mobil cihazda yatay kaydırma görüntüleri',
* If the value is empty, the message is considered as not translated. 'Invalid space' => 'Geçersiz alan',
* Messages that no longer need translation will have their translations 'Logo upload' => 'Logo Yükle',
* enclosed between a pair of '@@' marks. 'Name of the application' => 'Uygulama adı',
* 'Server Timezone' => 'Sunucu Saat Dilimi',
* Message string can be used with plural forms format. Check i18n section 'Show introduction tour for new users' => 'Yeni kullanıcılar için tanıtım turu göster',
* of the guide for details. 'Show user profile post form on dashboard' => 'Panoda kullanıcı profil paylaşım alanı',
* 'Sort by creation date' => 'Oluşturma tarihine göre sırala',
* NOTE: this file must be saved in UTF-8 encoding. 'Sort by update date' => 'Güncelleme tarihine göre sırala',
*/ );
return [
'Horizontal scrolling images on a mobile device' => '',
'Base URL' => 'Temel URL',
'Date input format' => 'Tarih giriş formatı',
'Default language' => 'Varsayılan dil',
'Default space' => 'Varsayılan alan',
'Default stream content order' => 'Varsayılan akış içeriği sırası',
'Enable user friendship system' => 'Arkadaşlık sistemini etkinleştir',
'Invalid space' => 'Geçersiz alan',
'Logo upload' => 'Logo Yükle',
'Name of the application' => 'Uygulama adı',
'Server Timezone' => 'Sunucu Saat Dilimi',
'Show introduction tour for new users' => 'Yeni kullanıcılar için tanıtım turu göster',
'Show user profile post form on dashboard' => 'Panoda kullanıcı profil paylaşım alanı',
'Sort by creation date' => 'Oluşturma tarihine göre sırala',
'Sort by update date' => 'Güncelleme tarihine göre sırala',
];

View File

@ -1,6 +1,6 @@
<?php <?php
return array ( return array (
'Ok' => 'Tamam', 'Ok' => 'Tamam',
'The HumHub developers provide no support for third-party modules and neighter give any guarantee about the suitability, functionality or security of this module.' => '', 'The HumHub developers provide no support for third-party modules and neighter give any guarantee about the suitability, functionality or security of this module.' => 'HumHub geliştiricileri üçüncü taraf modülleri için hiçbir destek sağlamaz ve bu modülün uygunluğu, işlevselliği veya güvenliği konusunda herhangi bir garanti vermez.',
'Third-party disclaimer' => '', 'Third-party disclaimer' => 'Üçüncü taraf reddi',
); );

View File

@ -1,21 +1,4 @@
<?php <?php
/** return array (
* Message translations. 'There is a new HumHub Version ({version}) available.' => 'Yeni bir ({version}) HumHub Sürümü mevcut.',
* );
* This file is automatically generated by 'yii message/extract' 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 [
'There is a new HumHub Version ({version}) available.' => '',
];

View File

@ -6,11 +6,11 @@ return array (
Ayarları', Ayarları',
'General' => 'Genel', 'General' => 'Genel',
'General Settings' => 'Genel Ayarlar', 'General Settings' => 'Genel Ayarlar',
'Here you can configurate the e-mail behaviour and mail-server settings of your social network.' => '', 'Here you can configurate the e-mail behaviour and mail-server settings of your social network.' => 'Sosyal ağınızın e-posta davranışını ve posta sunucusu ayarlarını yapılandırabilirsiniz.',
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '', 'Here you can configurate the registration behaviour and additinal user settings of your social network.' => 'Sosyal ağınızın kayıt davranışını ve ek kullanıcı ayarlarını yapılandırabilirsiniz.',
'Here you can configure basic settings of your social network.' => '', 'Here you can configure basic settings of your social network.' => 'Sosyal ağınızın temel ayarlarını yapılandırabilirsiniz.',
'LDAP' => 'LDAP', 'LDAP' => 'LDAP',
'These settings refer to advanced topics of your social network.' => '', 'These settings refer to advanced topics of your social network.' => 'Bu ayarlar, sosyal ağınızın gelişmiş konularını belirtir.',
'These settings refer to the appearance of your social network.' => '', 'These settings refer to the appearance of your social network.' => 'Bu ayarlar sosyal ağınızın görünümüne atıfta bulunmaktadır.',
'User Settings' => 'Kullanıcı Ayarları', 'User Settings' => 'Kullanıcı Ayarları',
); );

View File

@ -3,5 +3,5 @@ return array (
'Create new group' => 'Yeni Grup Oluştur', 'Create new group' => 'Yeni Grup Oluştur',
'Members' => 'Üyeler', 'Members' => 'Üyeler',
'Permissions' => 'İzinler', 'Permissions' => 'İzinler',
'Users can be assigned to different groups (e.g. teams, departments etc.) with specific standard spaces, group managers and permissions.' => '', 'Users can be assigned to different groups (e.g. teams, departments etc.) with specific standard spaces, group managers and permissions.' => 'Kullanıcılar belirli standart alanlar, grup yöneticileri ve izinlerle farklı gruplara (ör. Ekipler, bölümler vb.) atanabilir.',
); );

View File

@ -1,25 +1,8 @@
<?php <?php
/** return array (
* Message translations. 'Min value is 20 seconds. If not set, session will timeout after 1400 seconds (24 minutes) regardless of activity (default session timeout)' => 'Minumum 20 saniyedir. 1400 saniye (24 dakika) (varsayılan oturum zaman aşımı) sonra zaman aşımına olacaktır.',
* 'Only applicable when limited access for non-authenticated users is enabled. Only affects new users.' => 'Kimliği doğrulanmış kullanıcılar için sınırlı erişim etkin olduğunda geçerli olur. Sadece yeni kullanıcılar etkiler.',
* This file is automatically generated by 'yii message/extract' command. 'Save' => 'Kaydet',
* It contains the localizable messages extracted from source code. 'Visible for members only' => 'Sadece üyelere görünür',
* You may modify this file by translating the extracted messages. 'Visible for members+guests' => 'Üyeler + misafirler için görünür',
* );
* 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 [
'Visible for members only' => '',
'Visible for members+guests' => '',
'Min value is 20 seconds. If not set, session will timeout after 1400 seconds (24 minutes) regardless of activity (default session timeout)' => 'Minumum 20 saniyedir. 1400 saniye (24 dakika) (varsayılan oturum zaman aşımı) sonra zaman aşımına olacaktır.',
'Only applicable when limited access for non-authenticated users is enabled. Only affects new users.' => 'Kimliği doğrulanmış kullanıcılar için sınırlı erişim etkin olduğunda geçerli olur. Sadece yeni kullanıcılar etkiler.',
'Save' => 'Kaydet',
];

View File

@ -1,31 +1,14 @@
<?php <?php
/** return array (
* Message translations. 'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => 'SSL / TLS açık metin olarak iletilir şifreleri önlemek için üretim ortamlarında tercih edilir.',
* 'Defines the filter to apply, when login is attempted. %s replaces the username in the login action. Example: &quot;(sAMAccountName=%s)&quot; or &quot;(uid=%s)&quot;' => 'Giriş denendiğinde, uygulamak için filtreyi tanımlar. % uid giriş eylem adı değiştirir. Örnek: &quot;(sAMAccountName=%s)&quot; or &quot;(uid=%s)&quot;',
* This file is automatically generated by 'yii message/extract' command. 'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => 'E-Posta Adresi için LDAP Özniteliği. Varsayılan: &quotmail&quot;',
* It contains the localizable messages extracted from source code. 'LDAP Attribute for Username. Example: &quotuid&quot; or &quot;sAMAccountName&quot;' => 'Kullanıcı adı için LDAP özelliği. Örnek: &quotuid&quot; or &quot;sAMAccountName&quot;',
* You may modify this file by translating the extracted messages. 'Limit access to users meeting this criteria. Example: &quot(objectClass=posixAccount)&quot; or &quot;(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))&quot;' => 'Bu kriterleri karşılayan kullanıcılara erişim sınırlandırma. Örnek: &quot(objectClass=posixAccount)&quot; or &quot;(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))&quot;',
* 'Save' => 'Kaydet',
* Each array element represents the translation (value) of a message (key). 'Status: Error! (Message: {message})' => 'Durum: Hata! (Mesaj: {message})',
* If the value is empty, the message is considered as not translated. 'Status: OK! ({userCount} Users)' => 'Durum: TAMAM! ( {usercount} Kullanıcılar)',
* Messages that no longer need translation will have their translations 'The default base DN used for searching for accounts.' => 'Hesaplar için yapılan aramada varsayılan temel DN kullan.',
* enclosed between a pair of '@@' marks. 'The default credentials password (used only with username above).' => 'Varsayılan kimlik şifresi (Sadece kullanıcı adı ile kullanılır)',
* 'The default credentials username. Some servers require that this be in DN form. This must be given in DN form if the LDAP server requires a DN to bind and binding should be possible with simple usernames.' => 'Varsayılan kimlik ismi. Bazı sunucular bu DN formda olmasını gerektirir.LDAP sunucusu bağlamak ve bağlayıcı basit kullanıcı adları ile mümkün olmalıdır DN gerektiriyorsa, bu DN şeklinde verilmelidir.',
* 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 [
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => '',
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => 'SSL / TLS açık metin olarak iletilir şifreleri önlemek için üretim ortamlarında tercih edilir.',
'Defines the filter to apply, when login is attempted. %s replaces the username in the login action. Example: &quot;(sAMAccountName=%s)&quot; or &quot;(uid=%s)&quot;' => 'Giriş denendiğinde, uygulamak için filtreyi tanımlar. % uid giriş eylem adı değiştirir. Örnek: &quot;(sAMAccountName=%s)&quot; or &quot;(uid=%s)&quot;',
'LDAP Attribute for Username. Example: &quotuid&quot; or &quot;sAMAccountName&quot;' => 'Kullanıcı adı için LDAP özelliği. Örnek: &quotuid&quot; or &quot;sAMAccountName&quot;',
'Limit access to users meeting this criteria. Example: &quot(objectClass=posixAccount)&quot; or &quot;(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))&quot;' => 'Bu kriterleri karşılayan kullanıcılara erişim sınırlandırma. Örnek: &quot(objectClass=posixAccount)&quot; or &quot;(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))&quot;',
'Save' => 'Kaydet',
'Status: Error! (Message: {message})' => 'Durum: Hata! (Mesaj: {message})',
'Status: OK! ({userCount} Users)' => 'Durum: TAMAM! ( {usercount} Kullanıcılar)',
'The default base DN used for searching for accounts.' => 'Hesaplar için yapılan aramada varsayılan temel DN kullan.',
'The default credentials password (used only with username above).' => 'Varsayılan kimlik şifresi (Sadece kullanıcı adı ile kullanılır)',
'The default credentials username. Some servers require that this be in DN form. This must be given in DN form if the LDAP server requires a DN to bind and binding should be possible with simple usernames.' => 'Varsayılan kimlik ismi. Bazı sunucular bu DN formda olmasını gerektirir.LDAP sunucusu bağlamak ve bağlayıcı basit kullanıcı adları ile mümkün olmalıdır DN gerektiriyorsa, bu DN şeklinde verilmelidir.',
];

Some files were not shown because too many files have changed in this diff Show More