# Conflicts:
#	protected/humhub/docs/CHANGELOG.md
This commit is contained in:
buddh4 2017-03-24 23:40:03 +01:00
commit 9805f531fe
228 changed files with 2425 additions and 1497 deletions

View File

@ -1,11 +1,14 @@
HumHub Change Log
=================
1.2.0-beta.3 in developement
1.2.0-beta.4 in developement
--------------------------------
- Fix: Notification count '0' visible after click on notification link
- Fix: Default space permissions not adopted
- Fix: Use of $permission->getId() instead of $permission->id in PermissionManager (allow dynamic permission ids)
- Fix: #2393 Markdown h4,h5,h6 broken
- Fix #2393: Markdown h4,h5,h6 broken
- Fix #2389: calculate max upload file size on PHP 7.1 (githubjeka)
- Fix: LDAP - Lost authclient ldap class configuration on user update
- Fix #2400: Space ownership transfer form shows wrong users
- Fix: Enable user approval without available registration groups or default group
- Fix: Activate 'User' navigation in Admin Menu "Administration -> User -> Settings"
@ -106,7 +109,6 @@ HumHub Change Log
- Enh: Added stream module defaultStreamSuppressQueryIgnore to ease overwrites
- Enh: Added 'archived' badge to archived spaces in directory
1.2.0-beta.2 (February 24, 2017)
--------------------------------
- Fix: TimeAgo locale not loaded in production mode, added AppDynamicAsset (luke-)

View File

@ -18,8 +18,8 @@ The access settings consists of:
- **Invite and request**: Users can request a space membership beside beeing invited.
- **Everyone can enter**: All members can join a space
- **Visibility**: Who can view the space content.
- **Public**: All Users (Members and Guests)
- **Members only**: Only members (no guests)
- **Public**: All Users (Registered and Guests users). Available when allow limited access for non-authenticated users (guests) by admin settings.
- **Public (registered only)**: All registered users in Humbub (no guests)
- **Private**: This space is invisible for non-space-members
## Invite User

View File

@ -8,6 +8,8 @@
namespace humhub\libs;
use yii\base\InvalidParamException;
/**
* This class contains a lot of html helpers for the views
*
@ -140,9 +142,18 @@ class Helpers
*
* @param string $valueString
* @return int bytes
* @throws InvalidParamException
*/
public static function getBytesOfIniValue($valueString)
{
if ($valueString === null || $valueString === "") {
return 0;
}
if ($valueString === false) {
throw new InvalidParamException('Your configuration option of ini_get function does not exist.');
}
switch (substr($valueString, -1))
{
case 'M': case 'm': return (int)$valueString * 1048576;

View File

@ -8,6 +8,7 @@
namespace humhub\modules\admin\controllers;
use humhub\libs\Helpers;
use Yii;
use humhub\libs\ThemeHelper;
use humhub\models\UrlOembed;
@ -185,10 +186,10 @@ class SettingController extends Controller
}
// Determine PHP Upload Max FileSize
$maxUploadSize = \humhub\libs\Helpers::GetBytesOfPHPIniValue(ini_get('upload_max_filesize'));
$maxUploadSize = Helpers::getBytesOfIniValue(ini_get('upload_max_filesize'));
$fileSizeKey = 'upload_max_filesize';
if ($maxUploadSize > \humhub\libs\Helpers::GetBytesOfPHPIniValue(ini_get('post_max_size'))) {
$maxUploadSize = \humhub\libs\Helpers::GetBytesOfPHPIniValue(ini_get('post_max_size'));
if ($maxUploadSize > Helpers::getBytesOfIniValue(ini_get('post_max_size'))) {
$maxUploadSize = Helpers::getBytesOfIniValue(ini_get('post_max_size'));
$fileSizeKey = 'post_max_size';
}
@ -196,15 +197,20 @@ class SettingController extends Controller
$maxUploadSizeText = "(" . $fileSizeKey . "): " . $maxUploadSize;
// Determine currently used ImageLibary
$currentImageLibary = 'GD';
$currentImageLibrary = 'GD';
if (Yii::$app->getModule('file')->settings->get('imageMagickPath')) {
$currentImageLibary = 'ImageMagick';
$currentImageLibrary = 'ImageMagick';
}
return $this->render('file', ['model' => $form,
'maxUploadSize' => $maxUploadSize,
'maxUploadSizeText' => $maxUploadSizeText,
'currentImageLibary' => $currentImageLibary]);
return $this->render(
'file',
[
'model' => $form,
'maxUploadSize' => $maxUploadSize,
'maxUploadSizeText' => $maxUploadSizeText,
'currentImageLibrary' => $currentImageLibrary,
]
);
}
/**

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -36,7 +36,6 @@ return [
'Security' => '',
'Self test' => '',
'Statistics' => '',
'User posts' => '',
'Userprofiles' => '',
'Users' => '',
'Administration' => 'Administración',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,9 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '',
'File' => '',
'No caching (Testing only!)' => '',
'None - shows dropdown in user registration.' => '',
'Saved and flushed cache' => '',
'Saved' => ' ',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,10 +17,10 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '',
'APC(u)' => '',
'Cache Backend' => '',
'Default Expire Time (in seconds)' => '',
'File' => '',
'No caching (Testing only!)' => '',
'PHP APC Extension missing - Type not available!' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -24,7 +24,6 @@ return [
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'LDAP' => '',
'Notification Settings' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -22,6 +22,7 @@ return [
'LDAP Attribute for E-Mail Address. Default: &quotmail"' => '',
'LDAP Attribute for Username. Example: &quotuid" or "sAMAccountName"' => '',
'Limit access to users meeting this criteria. Example: &quot(objectClass=posixAccount)" or "(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))"' => '',
'Specify your LDAP-backend used to fetch user accounts.' => '',
'Status: Error! (Message: {message})' => '',
'Status: OK! ({userCount} Users)' => '',
'The default base DN used for searching for accounts.' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => '',
'Current Image Libary: {currentImageLibary}' => '',
'Current Image Library: {currentImageLibrary}' => '',
'If not set, height will default to 200px.' => '',
'If not set, width will default to 200px.' => '',
'PHP reported a maximum of {maxUploadSize} MB' => '',

View File

@ -1,28 +1,44 @@
<?php
return array (
'About' => 'عن',
'Add purchased module by licence key' => '',
'Admin' => '',
'Administration' => 'الإدارة',
'Approval' => '',
'Authentication' => '',
'Back to overview' => '',
'Basic' => '',
'Caching' => '',
'Cronjobs' => '',
'Design' => '',
'Files' => '',
'Groups' => 'المجموعات',
'Logging' => '',
'Mailing' => '',
'Modules' => 'الموديل',
'OEmbed providers' => '',
'Proxy' => '',
'Security' => 'الأمان',
'Self test' => '',
'Spaces' => 'الباحات',
'Statistics' => '',
'User posts' => '',
'Userprofiles' => '',
'Users' => '',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Add purchased module by licence key' => '',
'Admin' => '',
'Approval' => '',
'Authentication' => '',
'Back to overview' => '',
'Basic' => '',
'Caching' => '',
'Cronjobs' => '',
'Design' => '',
'Files' => '',
'Logging' => '',
'Mailing' => '',
'OEmbed providers' => '',
'Proxy' => '',
'Self test' => '',
'Statistics' => '',
'Userprofiles' => '',
'Users' => '',
'About' => 'عن',
'Administration' => 'الإدارة',
'Groups' => 'المجموعات',
'Modules' => 'الموديل',
'Security' => 'الأمان',
'Spaces' => 'الباحات',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,9 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '@APC@',
'File' => 'ملف',
'No caching (Testing only!)' => 'بدون حفظ للكاش (للتجربة فقط!)',
'None - shows dropdown in user registration.' => 'بدون - يعطي العضو قائمة منسدلة بالخيارات المتاحة عند التسجيل',
'Saved' => 'تم الحفظ',
'Saved and flushed cache' => 'تم الحفظ و مسح الكاش',

View File

@ -1,9 +1,26 @@
<?php
return array (
'APC' => '@APC@',
'Cache Backend' => '@Cache Backend@',
'Default Expire Time (in seconds)' => 'الوقت القياسي للإنتهاء (بالثواني)',
'File' => 'ملف',
'No caching (Testing only!)' => 'بدون حفظ للكاش (للتجربة فقط!)',
'PHP APC Extension missing - Type not available!' => '@PHP APC Extension missing - Type not available!@',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'APC(u)' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
'Cache Backend' => '@Cache Backend@',
'Default Expire Time (in seconds)' => 'الوقت القياسي للإنتهاء (بالثواني)',
'File' => 'ملف',
];

View File

@ -1,14 +1,30 @@
<?php
return array (
'Advanced Settings' => '',
'Appearance Settings' => '',
'General' => 'العام',
'General Settings' => '',
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'LDAP' => '@LADP@',
'Notification Settings' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Advanced Settings' => '',
'Appearance Settings' => '',
'General Settings' => '',
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',
'General' => 'العام',
'LDAP' => '@LADP@',
];

View File

@ -1,14 +1,32 @@
<?php
return array (
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => '',
'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;' => '',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => '',
'LDAP Attribute for Username. Example: &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;' => '',
'Save' => 'حفظ',
'Status: Error! (Message: {message})' => '',
'Status: OK! ({userCount} Users)' => '',
'The default base DN used for searching for accounts.' => '',
'The default credentials password (used only with username above).' => '',
'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.' => '',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => '',
'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;' => '',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => '',
'LDAP Attribute for Username. Example: &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;' => '',
'Specify your LDAP-backend used to fetch user accounts.' => '',
'Status: Error! (Message: {message})' => '',
'Status: OK! ({userCount} Users)' => '',
'The default base DN used for searching for accounts.' => '',
'The default credentials password (used only with username above).' => '',
'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.' => '',
'Save' => 'حفظ',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => '',
'Current Image Libary: {currentImageLibary}' => '',
'Current Image Library: {currentImageLibrary}' => '',
'If not set, height will default to 200px.' => '',
'If not set, width will default to 200px.' => '',
'PHP reported a maximum of {maxUploadSize} MB' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -38,7 +38,6 @@ return [
'Self test' => '',
'Spaces' => '',
'Statistics' => '',
'User posts' => '',
'Userprofiles' => '',
'Users' => '',
'Administration' => 'Администрация',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,9 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '',
'File' => '',
'No caching (Testing only!)' => '',
'None - shows dropdown in user registration.' => '',
'Saved' => '',
'Saved and flushed cache' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,10 +17,10 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '',
'APC(u)' => '',
'Cache Backend' => '',
'Default Expire Time (in seconds)' => '',
'File' => '',
'No caching (Testing only!)' => '',
'PHP APC Extension missing - Type not available!' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -24,7 +24,6 @@ return [
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'LDAP' => '',
'Notification Settings' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',

View File

@ -1,14 +1,32 @@
<?php
return array (
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => '',
'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;' => '',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => '',
'LDAP Attribute for Username. Example: &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;' => '',
'Save' => 'Запази',
'Status: Error! (Message: {message})' => '',
'Status: OK! ({userCount} Users)' => '',
'The default base DN used for searching for accounts.' => '',
'The default credentials password (used only with username above).' => '',
'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.' => '',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => '',
'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;' => '',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => '',
'LDAP Attribute for Username. Example: &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;' => '',
'Specify your LDAP-backend used to fetch user accounts.' => '',
'Status: Error! (Message: {message})' => '',
'Status: OK! ({userCount} Users)' => '',
'The default base DN used for searching for accounts.' => '',
'The default credentials password (used only with username above).' => '',
'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.' => '',
'Save' => 'Запази',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => '',
'Current Image Libary: {currentImageLibary}' => '',
'Current Image Library: {currentImageLibrary}' => '',
'If not set, height will default to 200px.' => '',
'If not set, width will default to 200px.' => '',
'PHP reported a maximum of {maxUploadSize} MB' => '',

View File

@ -1,28 +1,44 @@
<?php
return array (
'About' => 'Informació',
'Add purchased module by licence key' => '',
'Admin' => 'Administrador',
'Administration' => 'Administració',
'Approval' => '',
'Authentication' => '',
'Back to overview' => '',
'Basic' => '',
'Caching' => '',
'Cronjobs' => '',
'Design' => '',
'Files' => '',
'Groups' => 'Grups',
'Logging' => '',
'Mailing' => '',
'Modules' => 'Mòduls',
'OEmbed providers' => '',
'Proxy' => '',
'Security' => '',
'Self test' => '',
'Spaces' => 'Espais',
'Statistics' => '',
'User posts' => '',
'Userprofiles' => '',
'Users' => '',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Add purchased module by licence key' => '',
'Approval' => '',
'Authentication' => '',
'Back to overview' => '',
'Basic' => '',
'Caching' => '',
'Cronjobs' => '',
'Design' => '',
'Files' => '',
'Logging' => '',
'Mailing' => '',
'OEmbed providers' => '',
'Proxy' => '',
'Security' => '',
'Self test' => '',
'Statistics' => '',
'Userprofiles' => '',
'Users' => '',
'About' => 'Informació',
'Admin' => 'Administrador',
'Administration' => 'Administració',
'Groups' => 'Grups',
'Modules' => 'Mòduls',
'Spaces' => 'Espais',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,9 +18,6 @@
*/
return [
'None - shows dropdown in user registration.' => '',
'APC' => 'APC',
'File' => 'Arxiu',
'No caching (Testing only!)' => 'Sense memòria cau (Només proves!)',
'Saved' => 'Desat',
'Saved and flushed cache' => 'Desat i caché eliminat',
];

View File

@ -1,9 +1,26 @@
<?php
return array (
'APC' => 'APC',
'Cache Backend' => 'Cache del servidor',
'Default Expire Time (in seconds)' => 'Temps d\'expiració per defecte (en segons)',
'File' => 'Arxiu',
'No caching (Testing only!)' => 'Sense memòria cau (Només proves!)',
'PHP APC Extension missing - Type not available!' => '',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'APC(u)' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
'Cache Backend' => 'Cache del servidor',
'Default Expire Time (in seconds)' => 'Temps d\'expiració per defecte (en segons)',
'File' => 'Arxiu',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -24,7 +24,6 @@ return [
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'LDAP' => '',
'Notification Settings' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -22,6 +22,7 @@ return [
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => '',
'LDAP Attribute for Username. Example: &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;' => '',
'Specify your LDAP-backend used to fetch user accounts.' => '',
'Status: Error! (Message: {message})' => '',
'Status: OK! ({userCount} Users)' => '',
'The default base DN used for searching for accounts.' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => '',
'Current Image Libary: {currentImageLibary}' => '',
'Current Image Library: {currentImageLibrary}' => '',
'If not set, height will default to 200px.' => '',
'If not set, width will default to 200px.' => '',
'PHP reported a maximum of {maxUploadSize} MB' => '',

View File

@ -1,28 +1,44 @@
<?php
return array (
'About' => 'O mně',
'Add purchased module by licence key' => '',
'Admin' => 'Správce',
'Administration' => 'Administrace',
'Approval' => '',
'Authentication' => 'Ověřování',
'Back to overview' => '',
'Basic' => 'Základní',
'Caching' => 'Cache',
'Cronjobs' => '',
'Design' => 'Vzhled',
'Files' => 'Soubory',
'Groups' => 'Skupiny',
'Logging' => 'Protokol',
'Mailing' => 'Zasílání e-mailů',
'Modules' => 'Moduly',
'OEmbed providers' => '',
'Proxy' => '',
'Security' => 'Zabezpečení',
'Self test' => '',
'Spaces' => 'prostor(y)',
'Statistics' => 'Statistiky',
'User posts' => '',
'Userprofiles' => '',
'Users' => 'Uživatelé',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Add purchased module by licence key' => '',
'Approval' => '',
'Back to overview' => '',
'Cronjobs' => '',
'OEmbed providers' => '',
'Proxy' => '',
'Self test' => '',
'Userprofiles' => '',
'About' => 'O mně',
'Admin' => 'Správce',
'Administration' => 'Administrace',
'Authentication' => 'Ověřování',
'Basic' => 'Základní',
'Caching' => 'Cache',
'Design' => 'Vzhled',
'Files' => 'Soubory',
'Groups' => 'Skupiny',
'Logging' => 'Protokol',
'Mailing' => 'Zasílání e-mailů',
'Modules' => 'Moduly',
'Security' => 'Zabezpečení',
'Spaces' => 'prostor(y)',
'Statistics' => 'Statistiky',
'Users' => 'Uživatelé',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,9 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => 'APC',
'File' => 'Soubor',
'No caching (Testing only!)' => 'Bez cache (pouze pro testování!)',
'None - shows dropdown in user registration.' => 'Žádný zobrazit výběr při registraci uživatele.',
'Saved' => 'Uloženo',
'Saved and flushed cache' => 'Uloženo, cache vyprázdněna',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,10 +17,10 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => 'APC',
'APC(u)' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
'Cache Backend' => 'Systém vyrovnávací paměti',
'Default Expire Time (in seconds)' => 'Výchozí doba expirace (v sekundách)',
'File' => 'Soubor',
'No caching (Testing only!)' => 'Bez cache (pouze pro testování!)',
'PHP APC Extension missing - Type not available!' => 'Chybí PHP modul APC!',
];

View File

@ -1,14 +1,30 @@
<?php
return array (
'Advanced Settings' => '',
'Appearance Settings' => '',
'General' => 'Obecné',
'General Settings' => '',
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'LDAP' => 'LDAP',
'Notification Settings' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Advanced Settings' => '',
'Appearance Settings' => '',
'General Settings' => '',
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',
'General' => 'Obecné',
'LDAP' => 'LDAP',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,6 +18,7 @@
*/
return [
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => '',
'Specify your LDAP-backend used to fetch user accounts.' => '',
'The default base DN used for searching for accounts.' => '',
'The default credentials password (used only with username above).' => '',
'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.' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => 'Jednotlivé přípony oddělte čárkou. Pro povolení všech přípon nechejte prázdné.',
'Current Image Libary: {currentImageLibary}' => 'Používaná knihovna pro zpracování obrázků: {currentImageLibrary}',
'Current Image Library: {currentImageLibrary}' => 'Používaná knihovna pro zpracování obrázků: {currentImageLibrary}',
'If not set, height will default to 200px.' => 'Není-li nastaveno, použije se výchozí výška 200px.',
'If not set, width will default to 200px.' => 'Není-li nastaveno, použije se výchozí šířka 200px.',
'PHP reported a maximum of {maxUploadSize} MB' => 'Nastavení maximální velikosti souboru v PHP: {maxUploadSize} MB',

View File

@ -1,28 +1,44 @@
<?php
return array (
'About' => 'Om',
'Add purchased module by licence key' => 'Tilføj købt modul med licens nøgle',
'Admin' => 'Admin',
'Administration' => 'Administration',
'Approval' => '',
'Authentication' => 'Godkendelse',
'Back to overview' => '',
'Basic' => 'Basis',
'Caching' => 'Caching',
'Cronjobs' => '',
'Design' => 'Design',
'Files' => 'Filer',
'Groups' => 'Grupper',
'Logging' => 'Logging',
'Mailing' => 'Mailing',
'Modules' => 'Moduler',
'OEmbed providers' => '',
'Proxy' => 'Proxy',
'Security' => 'Sikkerhed',
'Self test' => '',
'Spaces' => 'Sider',
'Statistics' => 'Statistik',
'User posts' => '',
'Userprofiles' => '',
'Users' => 'Brugere',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Approval' => '',
'Back to overview' => '',
'Cronjobs' => '',
'OEmbed providers' => '',
'Self test' => '',
'Userprofiles' => '',
'About' => 'Om',
'Add purchased module by licence key' => 'Tilføj købt modul med licens nøgle',
'Admin' => 'Admin',
'Administration' => 'Administration',
'Authentication' => 'Godkendelse',
'Basic' => 'Basis',
'Caching' => 'Caching',
'Design' => 'Design',
'Files' => 'Filer',
'Groups' => 'Grupper',
'Logging' => 'Logging',
'Mailing' => 'Mailing',
'Modules' => 'Moduler',
'Proxy' => 'Proxy',
'Security' => 'Sikkerhed',
'Spaces' => 'Sider',
'Statistics' => 'Statistik',
'Users' => 'Brugere',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,9 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => 'APC',
'File' => 'Fil',
'No caching (Testing only!)' => 'Ingen cache (Kun test!)',
'None - shows dropdown in user registration.' => 'Ingen - viser dropdown i bruger-registrering',
'Saved' => 'Gemt',
'Saved and flushed cache' => 'Gemt og renset cache',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,10 +17,10 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => 'APC',
'APC(u)' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
'Cache Backend' => 'Cache Backend',
'Default Expire Time (in seconds)' => 'Standard udløbstid (i sekunder)',
'File' => 'Fil',
'No caching (Testing only!)' => 'Ingen cache (Kun test!)',
'PHP APC Extension missing - Type not available!' => 'PHP APC Udvidelse mangler - Type ikke tilgængelig!',
];

View File

@ -1,14 +1,30 @@
<?php
return array (
'Advanced Settings' => '',
'Appearance Settings' => '',
'General' => 'Generelt',
'General Settings' => '',
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'LDAP' => 'LDAP',
'Notification Settings' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Advanced Settings' => '',
'Appearance Settings' => '',
'General Settings' => '',
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',
'General' => 'Generelt',
'LDAP' => 'LDAP',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,6 +17,7 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Specify your LDAP-backend used to fetch user accounts.' => '',
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => 'En TLS/SSL er kraftig foretrukket i produktionsmiljøer for at modvirke adgangskoder fra at blive sendt i ren tekst.',
'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;' => 'Definerer filteret for at anvende, når der er forsøgt på at logge ind. %s udskrifter brugernavnet ved login. Eksempel: &quot;(sAMAccountName=%s)&quot; or &quot;(uid=%s)&quot;',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => 'LDAP Attribut for E-Mail adresse. Standard: &quotmail&quot;',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => 'Komma separeret liste. Lad den være tom for at tillade alle.',
'Current Image Libary: {currentImageLibary}' => 'Nuværende billede bibliotek: {currentImageLibary}',
'Current Image Library: {currentImageLibrary}' => 'Nuværende billede bibliotek: {currentImageLibrary}',
'If not set, height will default to 200px.' => 'Hvis det ikke er sat, så er standardhøjden 200px.',
'If not set, width will default to 200px.' => 'Hvis det ikke er sat, så er standardbredden 200px.',
'PHP reported a maximum of {maxUploadSize} MB' => 'PHP reporterer et maximum af {maxUploadSize} MB',

View File

@ -1,28 +1,44 @@
<?php
return array (
'About' => 'Benutzerdetails',
'Add purchased module by licence key' => 'Erworbene Module per Linzenschlüssel hinzufügen',
'Admin' => 'Administrator',
'Administration' => 'Administration',
'Approval' => 'Bestätigung',
'Authentication' => 'Authentifizierung',
'Back to overview' => 'Zurück zur Übersicht',
'Basic' => 'Allgemein',
'Caching' => 'Caching',
'Cronjobs' => 'Cronjobs',
'Design' => 'Design',
'Files' => 'Dateien',
'Groups' => 'Gruppen',
'Logging' => 'Protokollierung',
'Mailing' => 'E-Mails',
'Modules' => 'Module',
'OEmbed providers' => 'OEmbed-Provider',
'Proxy' => 'Proxy',
'Security' => 'Sicherheit',
'Self test' => 'Selbsttest',
'Spaces' => 'Spaces',
'Statistics' => 'Statistiken',
'User posts' => 'Benutzerbeiträge',
'Userprofiles' => 'Benutzerprofile',
'Users' => 'Benutzer',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'About' => 'Benutzerdetails',
'Add purchased module by licence key' => 'Erworbene Module per Linzenschlüssel hinzufügen',
'Admin' => 'Administrator',
'Administration' => 'Administration',
'Approval' => 'Bestätigung',
'Authentication' => 'Authentifizierung',
'Back to overview' => 'Zurück zur Übersicht',
'Basic' => 'Allgemein',
'Caching' => 'Caching',
'Cronjobs' => 'Cronjobs',
'Design' => 'Design',
'Files' => 'Dateien',
'Groups' => 'Gruppen',
'Logging' => 'Protokollierung',
'Mailing' => 'E-Mails',
'Modules' => 'Module',
'OEmbed providers' => 'OEmbed-Provider',
'Proxy' => 'Proxy',
'Security' => 'Sicherheit',
'Self test' => 'Selbsttest',
'Spaces' => 'Spaces',
'Statistics' => 'Statistiken',
'Userprofiles' => 'Benutzerprofile',
'Users' => 'Benutzer',
];

View File

@ -1,9 +1,23 @@
<?php
return array (
'APC' => 'APC',
'File' => 'Datei',
'No caching (Testing only!)' => 'Kein Caching (Nur zu Testzwecken!)',
'None - shows dropdown in user registration.' => 'Keine - bei der Registrierung Drop-Down Auswahl zeigen',
'Saved' => 'Gespeichert',
'Saved and flushed cache' => 'Gespeichert und Cache bereinigt',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'None - shows dropdown in user registration.' => 'Keine - bei der Registrierung Drop-Down Auswahl zeigen',
'Saved' => 'Gespeichert',
'Saved and flushed cache' => 'Gespeichert und Cache bereinigt',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,10 +17,10 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => 'APC',
'APC(u)' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
'Cache Backend' => 'Cache Backend',
'Default Expire Time (in seconds)' => 'Standardablaufzeit (in Sekunden)',
'File' => 'Datei',
'No caching (Testing only!)' => 'Kein Caching (nur für Testzwecke!)',
'PHP APC Extension missing - Type not available!' => 'PHP APC Erweiterung fehlt - Typ nicht verfügbar!',
];

View File

@ -1,14 +1,30 @@
<?php
return array (
'Advanced Settings' => 'Erweiterte Einstellungen',
'Appearance Settings' => 'Anzeige Einstellungen',
'General' => 'Allgemein',
'General Settings' => 'Allgemeine Einstellungen',
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => 'Hier kannst du Einstellungen zur Registrierung sowie Benutzereinstellungen deines Sozialen Netzwerks verwalten.',
'Here you can configure basic settings of your social network.' => 'Hier kannst du grundlegende Einstellungen deines sozialen Netzwerks konfigurieren.',
'LDAP' => 'LDAP',
'Notification Settings' => 'Benachrichtungseintstellungen',
'These settings refer to advanced topics of your social network.' => 'Diese Einstellungen betreffen fortgeschrittene Themen deines sozialen Netzwerkes.',
'These settings refer to the appearance of your social network.' => 'Diese Einstellungen beziehen sich auf die Darstellung deines Sozialen Netzwerks.',
'User Settings' => 'Benutzer Einstellungen',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Advanced Settings' => 'Erweiterte Einstellungen',
'Appearance Settings' => 'Anzeige Einstellungen',
'General' => 'Allgemein',
'General Settings' => 'Allgemeine Einstellungen',
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => 'Hier kannst du Einstellungen zur Registrierung sowie Benutzereinstellungen deines Sozialen Netzwerks verwalten.',
'Here you can configure basic settings of your social network.' => 'Hier kannst du grundlegende Einstellungen deines sozialen Netzwerks konfigurieren.',
'LDAP' => 'LDAP',
'These settings refer to advanced topics of your social network.' => 'Diese Einstellungen betreffen fortgeschrittene Themen deines sozialen Netzwerkes.',
'These settings refer to the appearance of your social network.' => 'Diese Einstellungen beziehen sich auf die Darstellung deines Sozialen Netzwerks.',
'User Settings' => 'Benutzer Einstellungen',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,6 +17,7 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Specify your LDAP-backend used to fetch user accounts.' => '',
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => 'TLS/SSL wird in Produktivumgebungen favorisiert, da dies die Übertragung von Passwörtern in Klartext verhindert.',
'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;' => 'Filter der angewendet wird, sobald sich ein Benutzer anmeldet. %s ersetzt den Benutzername während der Anmeldung. Beispiel: &quot;(sAMAccountName=%s)&quot; or &quot;(uid=%s)&quot;',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => 'LDAP Attribut für die E-Mail-Adresse. Standard: &quotmail&quot;',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => 'Komma separierte Liste (CSV). Leer lassen um alle zu erlauben.',
'Current Image Libary: {currentImageLibary}' => 'Derzeitige Bild Bibliothek: {currentImageLibary}',
'Current Image Library: {currentImageLibrary}' => 'Derzeitige Bild Bibliothek: {currentImageLibrary}',
'If not set, height will default to 200px.' => 'Ist dieser Wert nicht gesetzt, wird die Standard-Bildhöhe von 200px genutzt.',
'If not set, width will default to 200px.' => 'Ist dieser Wert nicht gesetzt, wird die Standard-Bildbreite von 200px genutzt.',
'PHP reported a maximum of {maxUploadSize} MB' => 'PHP meldet ein Maximum von {maxUploadSize} MB',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -37,7 +37,6 @@ return [
'Self test' => '',
'Spaces' => '',
'Statistics' => '',
'User posts' => '',
'Userprofiles' => '',
'Users' => '',
'Administration' => 'Διαχείρηση',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,10 +17,7 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '',
'None - shows dropdown in user registration.' => '',
'File' => 'Αρχείο',
'No caching (Testing only!)' => 'Προσωρινή μνήμη εκτός ( Για δοκιμαστικούς λόγους μόνο!)',
'Saved' => 'Αποθηκεύτηκε',
'Saved and flushed cache' => 'Αποθήκευση και άδειασμα προσωρινής μνήμης',
];

View File

@ -1,9 +1,26 @@
<?php
return array (
'APC' => '',
'Cache Backend' => '',
'Default Expire Time (in seconds)' => '',
'File' => 'Αρχείο',
'No caching (Testing only!)' => 'Προσωρινή μνήμη εκτός ( Για δοκιμαστικούς λόγους μόνο!)',
'PHP APC Extension missing - Type not available!' => '',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'APC(u)' => '',
'Cache Backend' => '',
'Default Expire Time (in seconds)' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
'File' => 'Αρχείο',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -23,7 +23,6 @@ return [
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'LDAP' => '',
'Notification Settings' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -22,6 +22,7 @@ return [
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => '',
'LDAP Attribute for Username. Example: &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;' => '',
'Specify your LDAP-backend used to fetch user accounts.' => '',
'Status: Error! (Message: {message})' => '',
'Status: OK! ({userCount} Users)' => '',
'The default base DN used for searching for accounts.' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => '',
'Current Image Libary: {currentImageLibary}' => '',
'Current Image Library: {currentImageLibrary}' => '',
'If not set, height will default to 200px.' => '',
'If not set, width will default to 200px.' => '',
'PHP reported a maximum of {maxUploadSize} MB' => '',

View File

@ -1,28 +1,44 @@
<?php
return array (
'About' => 'Acerca de',
'Add purchased module by licence key' => 'Agregar licencia de módulo comprado',
'Admin' => 'Administrador',
'Administration' => 'Administración',
'Approval' => 'Aprobación',
'Authentication' => 'Autenticación',
'Back to overview' => 'Regresar a la vista previa',
'Basic' => 'Básica',
'Caching' => 'Caché',
'Cronjobs' => 'Tareas programadas',
'Design' => 'Diseño',
'Files' => 'Archivos',
'Groups' => 'Grupos',
'Logging' => 'Registro',
'Mailing' => 'Correos',
'Modules' => 'Módulos',
'OEmbed providers' => 'Proveedores OEmbed',
'Proxy' => 'Proxy',
'Security' => 'Seguridad',
'Self test' => 'Auto prueba',
'Spaces' => 'Espacios',
'Statistics' => 'Estadísticas',
'User posts' => 'Publicaciones de usuario',
'Userprofiles' => 'Perfiles de usuario',
'Users' => 'Usuarios',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'About' => 'Acerca de',
'Add purchased module by licence key' => 'Agregar licencia de módulo comprado',
'Admin' => 'Administrador',
'Administration' => 'Administración',
'Approval' => 'Aprobación',
'Authentication' => 'Autenticación',
'Back to overview' => 'Regresar a la vista previa',
'Basic' => 'Básica',
'Caching' => 'Caché',
'Cronjobs' => 'Tareas programadas',
'Design' => 'Diseño',
'Files' => 'Archivos',
'Groups' => 'Grupos',
'Logging' => 'Registro',
'Mailing' => 'Correos',
'Modules' => 'Módulos',
'OEmbed providers' => 'Proveedores OEmbed',
'Proxy' => 'Proxy',
'Security' => 'Seguridad',
'Self test' => 'Auto prueba',
'Spaces' => 'Espacios',
'Statistics' => 'Estadísticas',
'Userprofiles' => 'Perfiles de usuario',
'Users' => 'Usuarios',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,9 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => 'APC',
'File' => 'Archivo',
'No caching (Testing only!)' => 'Sin caché (Solo pruebas!)',
'None - shows dropdown in user registration.' => 'Ninguno - muestra el desplegable en el registro de usuario',
'Saved' => 'Guardado',
'Saved and flushed cache' => 'Guardado y vaciada la caché',

View File

@ -1,9 +1,26 @@
<?php
return array (
'APC' => 'APC',
'Cache Backend' => 'Modo de caché',
'Default Expire Time (in seconds)' => 'Tiempo de expiración por defecto (en segundos)',
'File' => 'Archivo',
'No caching (Testing only!)' => 'Sin caché (Solo pruebas!)',
'PHP APC Extension missing - Type not available!' => '¡Falta la extensión PHP APC - El tipo no está disponible!',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'APC(u)' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
'Cache Backend' => 'Modo de caché',
'Default Expire Time (in seconds)' => 'Tiempo de expiración por defecto (en segundos)',
'File' => 'Archivo',
];

View File

@ -1,14 +1,30 @@
<?php
return array (
'Advanced Settings' => 'Ajustes avanzados',
'Appearance Settings' => 'Ajustes de apariencia',
'General' => 'General',
'General Settings' => 'Ajustes generales',
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => 'Aquí puede configurar el comportamiento de registro y la configuración de usuario adicional de su red social.',
'Here you can configure basic settings of your social network.' => 'Aquí puede configurar los ajustes básicos de su red social.',
'LDAP' => 'LDAP',
'Notification Settings' => 'Configuración de las notificaciones',
'These settings refer to advanced topics of your social network.' => 'Estos ajustes se refieren a temas avanzados de su red social.',
'These settings refer to the appearance of your social network.' => 'Estos ajustes se refieren a la apariencia de su red social.',
'User Settings' => 'Ajustes de usuario',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Advanced Settings' => 'Ajustes avanzados',
'Appearance Settings' => 'Ajustes de apariencia',
'General' => 'General',
'General Settings' => 'Ajustes generales',
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => 'Aquí puede configurar el comportamiento de registro y la configuración de usuario adicional de su red social.',
'Here you can configure basic settings of your social network.' => 'Aquí puede configurar los ajustes básicos de su red social.',
'LDAP' => 'LDAP',
'These settings refer to advanced topics of your social network.' => 'Estos ajustes se refieren a temas avanzados de su red social.',
'These settings refer to the appearance of your social network.' => 'Estos ajustes se refieren a la apariencia de su red social.',
'User Settings' => 'Ajustes de usuario',
];

View File

@ -1,14 +1,32 @@
<?php
return array (
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => 'Una conexión TLS/SSL es altamente recomendada en entornos de producción para evitar que las contraseñas se transmitan en texto claro.',
'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;' => 'Define el filtro que aplicar cuando se intenta iniciar sesión. %s reemplaza el nombre de usuario en la acción de iniciar sesión. Ejemplo: quot;(sAMAccountName=%s)&quot; o &quot;(uid=%s)&quot;',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => 'Atributo para dirección de correo LDAP. Default: &quotmail&quot;',
'LDAP Attribute for Username. Example: &quotuid&quot; or &quot;sAMAccountName&quot;' => 'Atributo LDAP para el nombre de usuario. Ejemplo: &quotuid&quot; o &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;' => 'Limita el acceso a usuarios que cumplan estos criterios. Ejemplo: &quot(objectClass=posixAccount)&quot; o &quot;(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))&quot;',
'Save' => 'Guardar',
'Status: Error! (Message: {message})' => 'Estado: ¡Error! (Mensaje: {message})',
'Status: OK! ({userCount} Users)' => 'Estado: ¡Correcto! ({userCount} usuarios)',
'The default base DN used for searching for accounts.' => 'El DN base por defecto usado para buscar cuentas.',
'The default credentials password (used only with username above).' => 'La contraseña de las credenciales por defecto (usada sólo con el nombre de usuario de arriba).',
'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.' => 'El nombre de usuario de las credenciales por defecto. Algunos servidores requieren que este esté en formato DN. Este tiene que estar en formato DN si el servidor LDAP requiere un DN para unirse y la unión debería ser posible con nombres de usuario simples.',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Specify your LDAP-backend used to fetch user accounts.' => '',
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => 'Una conexión TLS/SSL es altamente recomendada en entornos de producción para evitar que las contraseñas se transmitan en texto claro.',
'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;' => 'Define el filtro que aplicar cuando se intenta iniciar sesión. %s reemplaza el nombre de usuario en la acción de iniciar sesión. Ejemplo: quot;(sAMAccountName=%s)&quot; o &quot;(uid=%s)&quot;',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => 'Atributo para dirección de correo LDAP. Default: &quotmail&quot;',
'LDAP Attribute for Username. Example: &quotuid&quot; or &quot;sAMAccountName&quot;' => 'Atributo LDAP para el nombre de usuario. Ejemplo: &quotuid&quot; o &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;' => 'Limita el acceso a usuarios que cumplan estos criterios. Ejemplo: &quot(objectClass=posixAccount)&quot; o &quot;(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))&quot;',
'Save' => 'Guardar',
'Status: Error! (Message: {message})' => 'Estado: ¡Error! (Mensaje: {message})',
'Status: OK! ({userCount} Users)' => 'Estado: ¡Correcto! ({userCount} usuarios)',
'The default base DN used for searching for accounts.' => 'El DN base por defecto usado para buscar cuentas.',
'The default credentials password (used only with username above).' => 'La contraseña de las credenciales por defecto (usada sólo con el nombre de usuario de arriba).',
'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.' => 'El nombre de usuario de las credenciales por defecto. Algunos servidores requieren que este esté en formato DN. Este tiene que estar en formato DN si el servidor LDAP requiere un DN para unirse y la unión debería ser posible con nombres de usuario simples.',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => 'Lista separada por comas. Deja en blanco para permitir todos',
'Current Image Libary: {currentImageLibary}' => 'Librería de imagenes actual: {currentImageLibary}',
'Current Image Library: {currentImageLibrary}' => 'Librería de imagenes actual: {currentImageLibrary}',
'If not set, height will default to 200px.' => 'Si no se ajusta, la altura por defecto será de 200 píxeles.',
'If not set, width will default to 200px.' => 'Si no se ajusta, el ancho por defecto será de 200 píxeles.',
'PHP reported a maximum of {maxUploadSize} MB' => 'PHP reportó un máximo de {maxUploadSize} MB',

View File

@ -1,28 +1,44 @@
<?php
return array (
'About' => 'درباره‌ی',
'Add purchased module by licence key' => ' اضافه كردن ماژول خريداري شده را بوسيله لايسنس',
'Admin' => 'مدير كل',
'Administration' => 'مدیریت',
'Approval' => 'تصويب',
'Authentication' => 'احراز هويت',
'Back to overview' => 'برگشت به دید کلی',
'Basic' => 'پايه',
'Caching' => 'دخیره در حافظه‌ی موقت',
'Cronjobs' => 'كرون جاب',
'Design' => 'طراحي',
'Files' => 'فایل‌ها',
'Groups' => 'گروه‌ها',
'Logging' => 'ورود',
'Mailing' => 'ارسال ايميل',
'Modules' => 'ماژول‌ها',
'OEmbed providers' => 'ارائه دهدگان OEmbed ',
'Proxy' => 'پراکسی',
'Security' => 'امنيت',
'Self test' => 'تست خود',
'Spaces' => 'انجمن‌ها',
'Statistics' => 'آمار',
'User posts' => 'پست هاي كاربر',
'Userprofiles' => 'پروفايل هاي كاربري',
'Users' => 'کاربران',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'About' => 'درباره‌ی',
'Add purchased module by licence key' => ' اضافه كردن ماژول خريداري شده را بوسيله لايسنس',
'Admin' => 'مدير كل',
'Administration' => 'مدیریت',
'Approval' => 'تصويب',
'Authentication' => 'احراز هويت',
'Back to overview' => 'برگشت به دید کلی',
'Basic' => 'پايه',
'Caching' => 'دخیره در حافظه‌ی موقت',
'Cronjobs' => 'كرون جاب',
'Design' => 'طراحي',
'Files' => 'فایل‌ها',
'Groups' => 'گروه‌ها',
'Logging' => 'ورود',
'Mailing' => 'ارسال ايميل',
'Modules' => 'ماژول‌ها',
'OEmbed providers' => 'ارائه دهدگان OEmbed ',
'Proxy' => 'پراکسی',
'Security' => 'امنيت',
'Self test' => 'تست خود',
'Spaces' => 'انجمن‌ها',
'Statistics' => 'آمار',
'Userprofiles' => 'پروفايل هاي كاربري',
'Users' => 'کاربران',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,9 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => 'APC',
'File' => 'فایل',
'No caching (Testing only!)' => 'عدم ذخیره در حافظه‌ی موقت (فقط تست!)',
'None - shows dropdown in user registration.' => 'None - shows dropdown in user registration.',
'Saved' => 'ذخیره شد.',
'Saved and flushed cache' => 'ذخیره شد و حافظه‌ی موقت خالی شد.',

View File

@ -1,9 +1,26 @@
<?php
return array (
'APC' => 'APC',
'Cache Backend' => 'ذخیره‌ی اطلاعات سمت سرور در حافظه‌ی موقت',
'Default Expire Time (in seconds)' => 'زمان انقضای پیش‌فرض (ثانیه)',
'File' => 'فايل',
'No caching (Testing only!)' => 'بدون حافظه موقت(جهت تست)',
'PHP APC Extension missing - Type not available!' => 'PHP APC Extension وجود ندارد - نوع قابل دسترسی نیست!',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'APC(u)' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
'Cache Backend' => 'ذخیره‌ی اطلاعات سمت سرور در حافظه‌ی موقت',
'Default Expire Time (in seconds)' => 'زمان انقضای پیش‌فرض (ثانیه)',
'File' => 'فايل',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,7 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Notification Settings' => '',
'Advanced Settings' => 'تنظیمات پیشرفته',
'Appearance Settings' => 'تنظیمان ظاهر',
'General' => 'کلی',

View File

@ -1,14 +1,32 @@
<?php
return array (
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => 'SSL/TSL به شدت در تولید محیط‌ها مورد توجه است تا از جابجایی گذرواژه‌ها در متن واضح جلوگیری شود.',
'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;' => '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;',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => 'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;',
'LDAP Attribute for Username. Example: &quotuid&quot; or &quot;sAMAccountName&quot;' => 'صفت LDAP برای نام کاربری. مثال: &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;' => 'دسترسی کاربرانی را که دارای این شرط هستند محدود کن. مثال: &quot(objectClass=posixAccount)&quot; or &quot;(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))&quot;',
'Save' => 'ذخیره',
'Status: Error! (Message: {message})' => 'وضعیت: خطا! (پیغام: {message} )',
'Status: OK! ({userCount} Users)' => 'وضعیت: بدون مشکل! ({userCount} کاربر)',
'The default base DN used for searching for accounts.' => 'DN پیش‌فرض استفاده‌شده برای جستجوی حساب‌های کاربری',
'The default credentials password (used only with username above).' => 'گذرواژه‌ی پیش‌فرض اسناد(استفاده‌شده تنها با نام کاربری بالا) ',
'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.' => 'نام کاربری پیش‌فرض اسناد. برخی سرور ها این را با فرم DN نیاز دارند. در صورتی که سرور LDAP نیاز به bind کردن داشته‌باشد باید با فرم DN داده‌شود تا bind کردن برای نام‌های کاربری ساده امکان‌پذیر باشد.',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Specify your LDAP-backend used to fetch user accounts.' => '',
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => 'SSL/TSL به شدت در تولید محیط‌ها مورد توجه است تا از جابجایی گذرواژه‌ها در متن واضح جلوگیری شود.',
'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;' => '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;',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => 'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;',
'LDAP Attribute for Username. Example: &quotuid&quot; or &quot;sAMAccountName&quot;' => 'صفت LDAP برای نام کاربری. مثال: &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;' => 'دسترسی کاربرانی را که دارای این شرط هستند محدود کن. مثال: &quot(objectClass=posixAccount)&quot; or &quot;(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))&quot;',
'Save' => 'ذخیره',
'Status: Error! (Message: {message})' => 'وضعیت: خطا! (پیغام: {message} )',
'Status: OK! ({userCount} Users)' => 'وضعیت: بدون مشکل! ({userCount} کاربر)',
'The default base DN used for searching for accounts.' => 'DN پیش‌فرض استفاده‌شده برای جستجوی حساب‌های کاربری',
'The default credentials password (used only with username above).' => 'گذرواژه‌ی پیش‌فرض اسناد(استفاده‌شده تنها با نام کاربری بالا) ',
'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.' => 'نام کاربری پیش‌فرض اسناد. برخی سرور ها این را با فرم DN نیاز دارند. در صورتی که سرور LDAP نیاز به bind کردن داشته‌باشد باید با فرم DN داده‌شود تا bind کردن برای نام‌های کاربری ساده امکان‌پذیر باشد.',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => 'لیست جدا‌شده با کاما. برای اجازه‌ی همه خالی بگذارید.',
'Current Image Libary: {currentImageLibary}' => 'کتابخانه‌ی عکس کنونی: {currentImageLibary}',
'Current Image Library: {currentImageLibrary}' => 'کتابخانه‌ی عکس کنونی: {currentImageLibrary}',
'If not set, height will default to 200px.' => 'در صورت مشخص نکردن، ارتفاع مقدار پیش‌فرض ۲۰۰ پیکسل خواهد بود.',
'If not set, width will default to 200px.' => 'در صورت مشخص نکردن، عرض مقدار پیش‌فرض ۲۰۰ پیکسل خواهد بود.',
'PHP reported a maximum of {maxUploadSize} MB' => 'PHP ماکزیمم را {maxUploadSize} مگابایت گزارش کرد.',

View File

@ -1,28 +1,44 @@
<?php
return array (
'About' => 'À propos',
'Add purchased module by licence key' => 'Ajouter un module acheté par sa clé de licence',
'Admin' => 'Admin',
'Administration' => 'Administration',
'Approval' => 'Approbation',
'Authentication' => 'Authentification',
'Back to overview' => 'Retour à l\'aperçu',
'Basic' => 'Général',
'Caching' => 'Cache',
'Cronjobs' => 'Cronjobs',
'Design' => 'Design',
'Files' => 'Fichiers',
'Groups' => 'Groupes',
'Logging' => 'Connexion',
'Mailing' => 'Envoi de mail',
'Modules' => 'Modules',
'OEmbed providers' => 'Fournisseurs OEmbed',
'Proxy' => 'Serveur Proxy',
'Security' => 'Sécurité',
'Self test' => 'Test automatique',
'Spaces' => 'Espaces',
'Statistics' => 'Statistiques',
'User posts' => 'Contenus de l\'utilisateur',
'Userprofiles' => 'Profils utilisateur',
'Users' => 'Utilisateurs',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'About' => 'À propos',
'Add purchased module by licence key' => 'Ajouter un module acheté par sa clé de licence',
'Admin' => 'Admin',
'Administration' => 'Administration',
'Approval' => 'Approbation',
'Authentication' => 'Authentification',
'Back to overview' => 'Retour à l\'aperçu',
'Basic' => 'Général',
'Caching' => 'Cache',
'Cronjobs' => 'Cronjobs',
'Design' => 'Design',
'Files' => 'Fichiers',
'Groups' => 'Groupes',
'Logging' => 'Connexion',
'Mailing' => 'Envoi de mail',
'Modules' => 'Modules',
'OEmbed providers' => 'Fournisseurs OEmbed',
'Proxy' => 'Serveur Proxy',
'Security' => 'Sécurité',
'Self test' => 'Test automatique',
'Spaces' => 'Espaces',
'Statistics' => 'Statistiques',
'Userprofiles' => 'Profils utilisateur',
'Users' => 'Utilisateurs',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,9 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => 'APC',
'File' => 'Fichier',
'No caching (Testing only!)' => 'Aucune cache (Test seulement)',
'None - shows dropdown in user registration.' => 'Aucun - Combo déroulante lors de l\'enregistrement.',
'Saved' => 'Sauvegardé',
'Saved and flushed cache' => 'Sauvegardé et cache purgée',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,10 +17,10 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => 'APC',
'APC(u)' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
'Cache Backend' => 'Type de mémoire cache',
'Default Expire Time (in seconds)' => 'Temps d\'expiration par défaut (en secondes)',
'File' => 'Fichier',
'No caching (Testing only!)' => 'Pas de cache',
'PHP APC Extension missing - Type not available!' => 'Extension PHP APC non trouvée - Service non disponible !',
];

View File

@ -1,14 +1,30 @@
<?php
return array (
'Advanced Settings' => 'Paramètres avancés',
'Appearance Settings' => 'Paramètres d\'apparence',
'General' => 'Général',
'General Settings' => 'Paramètres généraux',
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => 'Ici, vous pouvez configurer le comportement d\'enregistrement et les paramètres utilisateur supplémentaires de votre réseau social.',
'Here you can configure basic settings of your social network.' => 'Vous pouvez configurer ici les paramètres basiques de votre réseau social.',
'LDAP' => 'LDAP',
'Notification Settings' => 'Paramètre des notifications',
'These settings refer to advanced topics of your social network.' => 'Ces paramètres concernent les sujets avancés de votre réseau social.',
'These settings refer to the appearance of your social network.' => 'Ces paramètres concernent l\'apparence de votre réseau social.',
'User Settings' => 'Paramètres d\'utilisateur',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Advanced Settings' => 'Paramètres avancés',
'Appearance Settings' => 'Paramètres d\'apparence',
'General' => 'Général',
'General Settings' => 'Paramètres généraux',
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => 'Ici, vous pouvez configurer le comportement d\'enregistrement et les paramètres utilisateur supplémentaires de votre réseau social.',
'Here you can configure basic settings of your social network.' => 'Vous pouvez configurer ici les paramètres basiques de votre réseau social.',
'LDAP' => 'LDAP',
'These settings refer to advanced topics of your social network.' => 'Ces paramètres concernent les sujets avancés de votre réseau social.',
'These settings refer to the appearance of your social network.' => 'Ces paramètres concernent l\'apparence de votre réseau social.',
'User Settings' => 'Paramètres d\'utilisateur',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,6 +17,7 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'Specify your LDAP-backend used to fetch user accounts.' => '',
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => 'L\'utilisation du protocole TLS/SSL est fortement recommandé dans les environnements de production pour prévenir de la transmission des mots de passe en clair.',
'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;' => 'Définit le filtre à appliquer, lors d\'une tentative de connexion. %s remplace le nom d\'utilisateur lors de la connexion. Exemple : &quot;(sAMAccountName=%s)&quot; or &quot;(uid=%s)&quot;',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => 'Attribut LDAP pour l\'adresse e-mail. Par défaut : &quotmail&quot;',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => 'Liste séparée par des virgules. Laissez vide pour tout autoriser.',
'Current Image Libary: {currentImageLibary}' => 'Librairie d\'image courante : {currentImageLibary}',
'Current Image Library: {currentImageLibrary}' => 'Librairie d\'image courante : {currentImageLibrary}',
'If not set, height will default to 200px.' => 'Si non définie, la hauteur sera par défaut de 200px.',
'If not set, width will default to 200px.' => 'Si non définie, la largeur sera par défaut de 200px.',
'PHP reported a maximum of {maxUploadSize} MB' => 'PHP informe un maximum d\'Upload de {maxUploadSize} Mo',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -39,7 +39,6 @@ return [
'Self test' => '',
'Spaces' => '',
'Statistics' => '',
'User posts' => '',
'Userprofiles' => '',
'Users' => '',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,9 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '',
'File' => '',
'No caching (Testing only!)' => '',
'None - shows dropdown in user registration.' => '',
'Saved' => '',
'Saved and flushed cache' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,10 +17,10 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '',
'APC(u)' => '',
'Cache Backend' => '',
'Default Expire Time (in seconds)' => '',
'File' => '',
'No caching (Testing only!)' => '',
'PHP APC Extension missing - Type not available!' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -24,7 +24,6 @@ return [
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'LDAP' => '',
'Notification Settings' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -23,6 +23,7 @@ return [
'LDAP Attribute for Username. Example: &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;' => '',
'Save' => '',
'Specify your LDAP-backend used to fetch user accounts.' => '',
'Status: Error! (Message: {message})' => '',
'Status: OK! ({userCount} Users)' => '',
'The default base DN used for searching for accounts.' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => '',
'Current Image Libary: {currentImageLibary}' => '',
'Current Image Library: {currentImageLibrary}' => '',
'If not set, height will default to 200px.' => '',
'If not set, width will default to 200px.' => '',
'PHP reported a maximum of {maxUploadSize} MB' => '',

View File

@ -1,28 +1,44 @@
<?php
return array (
'About' => '',
'Add purchased module by licence key' => '',
'Admin' => '',
'Administration' => 'Administrasyon',
'Approval' => '',
'Authentication' => '',
'Back to overview' => '',
'Basic' => '',
'Caching' => '',
'Cronjobs' => '',
'Design' => '',
'Files' => '',
'Groups' => '',
'Logging' => '',
'Mailing' => '',
'Modules' => '',
'OEmbed providers' => '',
'Proxy' => '',
'Security' => '',
'Self test' => '',
'Spaces' => '',
'Statistics' => '',
'User posts' => '',
'Userprofiles' => '',
'Users' => '',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'About' => '',
'Add purchased module by licence key' => '',
'Admin' => '',
'Approval' => '',
'Authentication' => '',
'Back to overview' => '',
'Basic' => '',
'Caching' => '',
'Cronjobs' => '',
'Design' => '',
'Files' => '',
'Groups' => '',
'Logging' => '',
'Mailing' => '',
'Modules' => '',
'OEmbed providers' => '',
'Proxy' => '',
'Security' => '',
'Self test' => '',
'Spaces' => '',
'Statistics' => '',
'Userprofiles' => '',
'Users' => '',
'Administration' => 'Administrasyon',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,9 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '',
'File' => '',
'No caching (Testing only!)' => '',
'None - shows dropdown in user registration.' => '',
'Saved' => '',
'Saved and flushed cache' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,10 +17,10 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '',
'APC(u)' => '',
'Cache Backend' => '',
'Default Expire Time (in seconds)' => '',
'File' => '',
'No caching (Testing only!)' => '',
'PHP APC Extension missing - Type not available!' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -24,7 +24,6 @@ return [
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'LDAP' => '',
'Notification Settings' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',

View File

@ -1,14 +1,32 @@
<?php
return array (
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => '',
'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;' => '',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => '',
'LDAP Attribute for Username. Example: &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;' => '',
'Save' => 'Sere',
'Status: Error! (Message: {message})' => '',
'Status: OK! ({userCount} Users)' => '',
'The default base DN used for searching for accounts.' => '',
'The default credentials password (used only with username above).' => '',
'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.' => '',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => '',
'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;' => '',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => '',
'LDAP Attribute for Username. Example: &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;' => '',
'Specify your LDAP-backend used to fetch user accounts.' => '',
'Status: Error! (Message: {message})' => '',
'Status: OK! ({userCount} Users)' => '',
'The default base DN used for searching for accounts.' => '',
'The default credentials password (used only with username above).' => '',
'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.' => '',
'Save' => 'Sere',
];

View File

@ -1,9 +1,26 @@
<?php
return array (
'Comma separated list. Leave empty to allow all.' => '',
'Current Image Libary: {currentImageLibary}' => '',
'If not set, height will default to 200px.' => '',
'If not set, width will default to 200px.' => '',
'PHP reported a maximum of {maxUploadSize} MB' => '',
'Save' => 'Sere',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Comma separated list. Leave empty to allow all.' => '',
'Current Image Library: {currentImageLibrary}' => '',
'If not set, height will default to 200px.' => '',
'If not set, width will default to 200px.' => '',
'PHP reported a maximum of {maxUploadSize} MB' => '',
'Save' => 'Sere',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -38,7 +38,6 @@ return [
'Self test' => '',
'Spaces' => '',
'Statistics' => '',
'User posts' => '',
'Userprofiles' => '',
'Users' => '',
'Administration' => 'Adminisztráció',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,9 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '',
'File' => '',
'No caching (Testing only!)' => '',
'None - shows dropdown in user registration.' => '',
'Saved' => '',
'Saved and flushed cache' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,10 +17,10 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '',
'APC(u)' => '',
'Cache Backend' => '',
'Default Expire Time (in seconds)' => '',
'File' => '',
'No caching (Testing only!)' => '',
'PHP APC Extension missing - Type not available!' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -24,7 +24,6 @@ return [
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'LDAP' => '',
'Notification Settings' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -23,6 +23,7 @@ return [
'LDAP Attribute for Username. Example: &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;' => '',
'Save' => '',
'Specify your LDAP-backend used to fetch user accounts.' => '',
'Status: Error! (Message: {message})' => '',
'Status: OK! ({userCount} Users)' => '',
'The default base DN used for searching for accounts.' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => '',
'Current Image Libary: {currentImageLibary}' => '',
'Current Image Library: {currentImageLibrary}' => '',
'If not set, height will default to 200px.' => '',
'If not set, width will default to 200px.' => '',
'PHP reported a maximum of {maxUploadSize} MB' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -38,7 +38,6 @@ return [
'Self test' => '',
'Spaces' => '',
'Statistics' => '',
'User posts' => '',
'Userprofiles' => '',
'Users' => '',
'Administration' => 'Administrasi',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,9 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '',
'File' => '',
'No caching (Testing only!)' => '',
'None - shows dropdown in user registration.' => '',
'Saved' => '',
'Saved and flushed cache' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,10 +17,10 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => '',
'APC(u)' => '',
'Cache Backend' => '',
'Default Expire Time (in seconds)' => '',
'File' => '',
'No caching (Testing only!)' => '',
'PHP APC Extension missing - Type not available!' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -24,7 +24,6 @@ return [
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'LDAP' => '',
'Notification Settings' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',

View File

@ -1,14 +1,32 @@
<?php
return array (
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => '',
'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;' => '',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => '',
'LDAP Attribute for Username. Example: &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;' => '',
'Save' => 'Simpan',
'Status: Error! (Message: {message})' => '',
'Status: OK! ({userCount} Users)' => '',
'The default base DN used for searching for accounts.' => '',
'The default credentials password (used only with username above).' => '',
'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.' => '',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => '',
'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;' => '',
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => '',
'LDAP Attribute for Username. Example: &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;' => '',
'Specify your LDAP-backend used to fetch user accounts.' => '',
'Status: Error! (Message: {message})' => '',
'Status: OK! ({userCount} Users)' => '',
'The default base DN used for searching for accounts.' => '',
'The default credentials password (used only with username above).' => '',
'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.' => '',
'Save' => 'Simpan',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,7 +18,7 @@
*/
return [
'Comma separated list. Leave empty to allow all.' => '',
'Current Image Libary: {currentImageLibary}' => '',
'Current Image Library: {currentImageLibrary}' => '',
'If not set, height will default to 200px.' => '',
'If not set, width will default to 200px.' => '',
'PHP reported a maximum of {maxUploadSize} MB' => '',

View File

@ -1,28 +1,44 @@
<?php
return array (
'About' => 'Informazioni',
'Add purchased module by licence key' => '',
'Admin' => 'Amministrazione',
'Administration' => 'Amministrazione',
'Approval' => 'Approvazione',
'Authentication' => 'Autenticazione',
'Back to overview' => '',
'Basic' => 'Di base',
'Caching' => '',
'Cronjobs' => '',
'Design' => 'Design',
'Files' => 'File',
'Groups' => 'Gruppi',
'Logging' => 'Logging',
'Mailing' => 'Mail',
'Modules' => 'Moduli',
'OEmbed providers' => '',
'Proxy' => 'Proxy',
'Security' => 'Sicurezza',
'Self test' => '',
'Spaces' => 'Space',
'Statistics' => 'Statistiche',
'User posts' => 'Post degli utenti',
'Userprofiles' => 'Profili utente',
'Users' => 'Utenti',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'Add purchased module by licence key' => '',
'Back to overview' => '',
'Caching' => '',
'Cronjobs' => '',
'OEmbed providers' => '',
'Self test' => '',
'About' => 'Informazioni',
'Admin' => 'Amministrazione',
'Administration' => 'Amministrazione',
'Approval' => 'Approvazione',
'Authentication' => 'Autenticazione',
'Basic' => 'Di base',
'Design' => 'Design',
'Files' => 'File',
'Groups' => 'Gruppi',
'Logging' => 'Logging',
'Mailing' => 'Mail',
'Modules' => 'Moduli',
'Proxy' => 'Proxy',
'Security' => 'Sicurezza',
'Spaces' => 'Space',
'Statistics' => 'Statistiche',
'Userprofiles' => 'Profili utente',
'Users' => 'Utenti',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -17,9 +17,6 @@
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'APC' => 'APC',
'File' => 'File',
'No caching (Testing only!)' => 'No caching (Solo per test!)',
'None - shows dropdown in user registration.' => 'Nessuno - mostra discesa nella registrazione dell\'utente',
'Saved' => 'Salvato',
'Saved and flushed cache' => 'Cache salvata e attivata',

View File

@ -1,9 +1,26 @@
<?php
return array (
'APC' => 'APC',
'Cache Backend' => 'Cache Backend',
'Default Expire Time (in seconds)' => 'Tempo di scadenza predefinito (in secondi)',
'File' => 'File',
'No caching (Testing only!)' => 'No caching (Solo per test!)',
'PHP APC Extension missing - Type not available!' => 'Estensione PHP APC mancante - Tipo non disponibile!',
);
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract-module' 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 [
'APC(u)' => '',
'No caching' => '',
'PHP APC(u) Extension missing - Type not available!' => '',
'Cache Backend' => 'Cache Backend',
'Default Expire Time (in seconds)' => 'Tempo di scadenza predefinito (in secondi)',
'File' => 'File',
];

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -23,7 +23,6 @@ return [
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
'Here you can configure basic settings of your social network.' => '',
'LDAP' => '',
'Notification Settings' => '',
'These settings refer to advanced topics of your social network.' => '',
'These settings refer to the appearance of your social network.' => '',
'User Settings' => '',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -18,6 +18,7 @@
*/
return [
'LDAP Attribute for E-Mail Address. Default: &quotmail&quot;' => '',
'Specify your LDAP-backend used to fetch user accounts.' => '',
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => 'TLS/SSL è fortemente richiesto in ambienti di produzione per prevenire la trasmissione di password con testo in chiaro.',
'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;' => 'Definisce il filtro da applicare quando si tenta di accedere. Sostituisce %s al nome utente nell\'azione di accesso. Esempio: &quot;(sAMAccountName=%s)&quot; o &quot;(uid=%s)&quot;',
'LDAP Attribute for Username. Example: &quotuid&quot; or &quot;sAMAccountName&quot;' => 'Attributo LDAP per lo username. Esempio: &quotuid&quot; o &quot;sAMAccountName&quot;',

View File

@ -2,7 +2,7 @@
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* This file is automatically generated by 'yii message/extract-module' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
@ -20,7 +20,7 @@ return [
'Comma separated list. Leave empty to allow all.' => '',
'If not set, height will default to 200px.' => '',
'If not set, width will default to 200px.' => '',
'Current Image Libary: {currentImageLibary}' => 'Image Libary corrente: {currentImageLibary}',
'Current Image Library: {currentImageLibrary}' => 'Image Libary corrente: {currentImageLibrary}',
'PHP reported a maximum of {maxUploadSize} MB' => 'PHP impostato ad un massimo di {maxUploadSize} MB',
'Save' => 'Salva',
];

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