mirror of
https://github.com/humhub/humhub.git
synced 2025-04-21 15:41:54 +02:00
Merge branch 'develop' of https://github.com/humhub/humhub into develop
This commit is contained in:
commit
1d50ad897c
@ -27,13 +27,15 @@ Yii::import('application.vendors.yii.cli.commands.shell.*');
|
||||
* @package humhub.commands
|
||||
* @since 0.5
|
||||
*/
|
||||
class ZMessageCommand extends MessageCommand {
|
||||
class ZMessageCommand extends MessageCommand
|
||||
{
|
||||
|
||||
/**
|
||||
* Execute the action.
|
||||
* @param array command line parameters specific for this command
|
||||
*/
|
||||
public function run($args) {
|
||||
public function run($args)
|
||||
{
|
||||
|
||||
if (!isset($args[0]))
|
||||
$this->usageError('the configuration file is not specified.');
|
||||
@ -111,7 +113,8 @@ class ZMessageCommand extends MessageCommand {
|
||||
}
|
||||
}
|
||||
|
||||
protected function extractMessages($fileName, $translator) {
|
||||
protected function extractMessages($fileName, $translator)
|
||||
{
|
||||
echo "Extracting messages from $fileName...\n";
|
||||
$subject = file_get_contents($fileName);
|
||||
$messages = array();
|
||||
@ -137,7 +140,8 @@ class ZMessageCommand extends MessageCommand {
|
||||
* @param type $className
|
||||
* @return boolean
|
||||
*/
|
||||
public function isModuleClassDefined($className) {
|
||||
public function isModuleClassDefined($className)
|
||||
{
|
||||
foreach (Yii::app()->modules as $mod) {
|
||||
if (strpos($mod['class'], $className) !== false) {
|
||||
return true;
|
||||
@ -146,4 +150,73 @@ class ZMessageCommand extends MessageCommand {
|
||||
return false;
|
||||
}
|
||||
|
||||
protected function generateMessageFile($messages, $fileName, $overwrite, $removeOld, $sort)
|
||||
{
|
||||
array_walk($messages, function(&$value, $key) {
|
||||
$value = str_replace("\r", "", $value);
|
||||
});
|
||||
|
||||
echo "Saving messages to $fileName...";
|
||||
if (is_file($fileName)) {
|
||||
$translated = require($fileName);
|
||||
|
||||
$translatedExisting = require($fileName);
|
||||
|
||||
$translated = array();
|
||||
foreach ($translatedExisting as $k => $v) {
|
||||
$k = str_replace("\r", "", $k);
|
||||
$translated[$k] = $v;
|
||||
}
|
||||
|
||||
sort($messages);
|
||||
ksort($translated);
|
||||
if (array_keys($translated) == $messages) {
|
||||
echo "nothing new...skipped.\n";
|
||||
return;
|
||||
}
|
||||
$merged = array();
|
||||
$untranslated = array();
|
||||
foreach ($messages as $message) {
|
||||
if (array_key_exists($message, $translated) && strlen($translated[$message]) > 0)
|
||||
$merged[$message] = $translated[$message];
|
||||
else
|
||||
$untranslated[] = $message;
|
||||
}
|
||||
ksort($merged);
|
||||
sort($untranslated);
|
||||
$todo = array();
|
||||
foreach ($untranslated as $message)
|
||||
$todo[$message] = '';
|
||||
ksort($translated);
|
||||
foreach ($translated as $message => $translation) {
|
||||
if (!isset($merged[$message]) && !isset($todo[$message]) && !$removeOld) {
|
||||
if (substr($translation, 0, 2) === '@@' && substr($translation, -2) === '@@')
|
||||
$todo[$message] = $translation;
|
||||
else
|
||||
$todo[$message] = '@@' . $translation . '@@';
|
||||
}
|
||||
}
|
||||
$merged = array_merge($todo, $merged);
|
||||
if ($sort)
|
||||
ksort($merged);
|
||||
if ($overwrite === false)
|
||||
$fileName.='.merged';
|
||||
echo "translation merged.\n";
|
||||
}
|
||||
else {
|
||||
$merged = array();
|
||||
foreach ($messages as $message)
|
||||
$merged[$message] = '';
|
||||
ksort($merged);
|
||||
echo "saved.\n";
|
||||
}
|
||||
$array = str_replace("\r", '', var_export($merged, true));
|
||||
$content = <<<EOD
|
||||
<?php
|
||||
return $array;
|
||||
|
||||
EOD;
|
||||
file_put_contents($fileName, $content);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -135,7 +135,8 @@ return array(
|
||||
'uz' => 'Ўзбек',
|
||||
'fa_ir' => 'فارسی',
|
||||
'bg' => 'български',
|
||||
'sk' => 'slovenčina'
|
||||
'sk' => 'slovenčina',
|
||||
'ro' => 'română'
|
||||
),
|
||||
'dynamicConfigFile' => dirname(__FILE__) . '/local/_settings.php',
|
||||
),
|
||||
|
@ -8,10 +8,10 @@ return array(
|
||||
//'sourcePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'../..',
|
||||
'sourcePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..',
|
||||
'messagePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'messages',
|
||||
'languages' => array('de', 'fr', 'nl', 'pt', 'pl', 'pt_br', 'es', 'it', 'tr', 'ru', 'th', 'uk', 'el', 'hu', 'ja', 'nb_no', 'zh_cn', 'ca', 'an', 'cs', 'vi', 'sv', 'da', 'uz', 'fa_ir', 'bg', 'sk', 'en_uk', 'zh_tw'),
|
||||
'languages' => array('de', 'fr', 'nl', 'pt', 'pl', 'pt_br', 'es', 'it', 'tr', 'ru', 'th', 'uk', 'el', 'hu', 'ja', 'nb_no', 'zh_cn', 'ca', 'an', 'cs', 'vi', 'sv', 'da', 'uz', 'fa_ir', 'bg', 'sk', 'en_uk', 'zh_tw', 'ro'),
|
||||
'fileTypes' => array('php'),
|
||||
'overwrite' => true,
|
||||
'removeOld' => true,
|
||||
'removeOld' => false,
|
||||
'exclude' => array(
|
||||
'.svn',
|
||||
'.gitignore',
|
||||
|
@ -2,6 +2,6 @@
|
||||
|
||||
Here you will learn how you can adapt existing modules to working fine with actually versions.
|
||||
|
||||
## Migrate from 0.9 and earlier to 10.0
|
||||
## Migrate from 0.9 and earlier to 0.10
|
||||
|
||||
TBD, no breaking changes
|
||||
|
@ -8,7 +8,7 @@ return array (
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '',
|
||||
'Could not determine content container!' => '',
|
||||
'Could not find content of addon!' => '',
|
||||
'Could not find requested module!' => '',
|
||||
'Could not find requested module!' => 'No s\'ha pogut trobar el mòdul sol·licitat!',
|
||||
'Error' => 'Error',
|
||||
'Expand' => 'Amplia',
|
||||
'Insufficent permissions to create content!' => '',
|
||||
|
@ -5,7 +5,7 @@ return array (
|
||||
'Administration' => 'Administrace',
|
||||
'Back to dashboard' => 'Zpět na nástěnku',
|
||||
'Collapse' => 'Sbalit',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Doplněk Content musí být instancí buď HActiveRecordContent nebo HActiveRecordContentAddon!',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => 'Content Addon musí být buď instancí objektu HActiveRecordContent nebo HActiveRecordContentAddon!',
|
||||
'Could not determine content container!' => 'Nebylo možné zvolit obsahový kontejner.',
|
||||
'Could not find content of addon!' => 'Nebylo možné nalézt obsah dolpňku!',
|
||||
'Could not find requested module!' => 'Nebylo možné nalézt požadovaný modul!',
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'Global {global} array cleaned using {method} method.' => 'Globální pole {global} bylo uklizeno pomocí metody {method}.',
|
||||
'Global {global} array cleaned using {method} method.' => 'Globální pole {global} bylo vyčištěno pomocí metody {method}.',
|
||||
);
|
||||
|
@ -20,9 +20,9 @@ return array (
|
||||
'Menu' => 'Menu',
|
||||
'Module is not on this content container enabled!' => '',
|
||||
'My profile' => 'Min profil',
|
||||
'New profile image' => '',
|
||||
'New profile image' => 'Nyt profilbillede',
|
||||
'Nothing found with your input.' => '',
|
||||
'Oooops...' => '',
|
||||
'Oooops...' => 'Oooops...',
|
||||
'Results' => 'Resultater',
|
||||
'Search' => 'Søg',
|
||||
'Search for users and spaces' => 'Søg efter brugere og rum',
|
||||
|
@ -10,8 +10,8 @@ return array (
|
||||
'Could not find content of addon!' => 'Der Inhalt des Addons konnte nicht gefunden werden!',
|
||||
'Could not find requested module!' => 'Das gesuchte Modul konnte nicht gefunden werden!',
|
||||
'Error' => 'Fehler',
|
||||
'Expand' => 'Mehr',
|
||||
'Insufficent permissions to create content!' => 'Unzureichende Berechtigungen Inhalte zu erstellen!',
|
||||
'Expand' => 'Erweitern',
|
||||
'Insufficent permissions to create content!' => 'Unzureichende Berechtigungen um Inhalte zu erstellen!',
|
||||
'Invalid request.' => 'Ungültige Anfrage.',
|
||||
'It looks like you may have taken the wrong turn.' => 'Du hast womöglich den falschen Weg eingeschlagen.',
|
||||
'Keyword:' => 'Suchbegriff:',
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Latest</strong> updates' => '',
|
||||
'Account settings' => '',
|
||||
@ -47,7 +30,7 @@ return array (
|
||||
'Sorry, nothing found!' => '',
|
||||
'Space not found!' => '',
|
||||
'User Approvals' => '',
|
||||
'User not found!' => '',
|
||||
'User not found!' => 'Użytkownik nie znaleziony. ',
|
||||
'Welcome to %appName%' => '',
|
||||
'You cannot create public visible content!' => '',
|
||||
'Your daily summary' => '',
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Latest</strong> updates' => '',
|
||||
'Account settings' => 'アカウント設定',
|
||||
|
37
protected/messages/ro/base.php
Normal file
37
protected/messages/ro/base.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Latest</strong> updates' => '',
|
||||
'Account settings' => '',
|
||||
'Administration' => '',
|
||||
'Back to dashboard' => '',
|
||||
'Collapse' => '',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '',
|
||||
'Could not determine content container!' => '',
|
||||
'Could not find content of addon!' => '',
|
||||
'Could not find requested module!' => '',
|
||||
'Error' => '',
|
||||
'Expand' => '',
|
||||
'Insufficent permissions to create content!' => '',
|
||||
'Invalid request.' => '',
|
||||
'It looks like you may have taken the wrong turn.' => '',
|
||||
'Keyword:' => '',
|
||||
'Latest news' => '',
|
||||
'Logout' => '',
|
||||
'Menu' => '',
|
||||
'Module is not on this content container enabled!' => '',
|
||||
'My profile' => '',
|
||||
'New profile image' => '',
|
||||
'Nothing found with your input.' => '',
|
||||
'Oooops...' => '',
|
||||
'Results' => '',
|
||||
'Search' => '',
|
||||
'Search for users and spaces' => '',
|
||||
'Show more results' => '',
|
||||
'Sorry, nothing found!' => '',
|
||||
'Space not found!' => '',
|
||||
'User Approvals' => '',
|
||||
'User not found!' => '',
|
||||
'Welcome to %appName%' => '',
|
||||
'You cannot create public visible content!' => '',
|
||||
'Your daily summary' => '',
|
||||
);
|
4
protected/messages/ro/security.php
Normal file
4
protected/messages/ro/security.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'Global {global} array cleaned using {method} method.' => '',
|
||||
);
|
@ -1,54 +1,37 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Latest</strong> updates' => '',
|
||||
'Could not determine content container!' => '',
|
||||
'Could not find content of addon!' => '',
|
||||
'Could not find requested module!' => '',
|
||||
'Insufficent permissions to create content!' => '',
|
||||
'It looks like you may have taken the wrong turn.' => '',
|
||||
'Module is not on this content container enabled!' => '',
|
||||
'Nothing found with your input.' => '',
|
||||
'Oooops...' => '',
|
||||
'Results' => '',
|
||||
'User Approvals' => '',
|
||||
'You cannot create public visible content!' => '',
|
||||
'Your daily summary' => '',
|
||||
'Account settings' => '帐户设置',
|
||||
'Administration' => '管理',
|
||||
'Back to dashboard' => '返回主面板',
|
||||
'Collapse' => '折叠',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '内容插件源必须是hactive record content或hactive record contentaddon实例',
|
||||
'Could not determine content container!' => '',
|
||||
'Could not find content of addon!' => '',
|
||||
'Could not find requested module!' => '找不到请求的模块',
|
||||
'Error' => '错误',
|
||||
'Expand' => '展开',
|
||||
'Insufficent permissions to create content!' => '',
|
||||
'Invalid request.' => '无效的请求',
|
||||
'It looks like you may have taken the wrong turn.' => '',
|
||||
'Keyword:' => '关键词',
|
||||
'Latest news' => '最新消息',
|
||||
'Logout' => '退出',
|
||||
'Menu' => '菜单',
|
||||
'Module is not on this content container enabled!' => '',
|
||||
'My profile' => '我的资料',
|
||||
'New profile image' => '新图片',
|
||||
'Nothing found with your input.' => '',
|
||||
'Oooops...' => '',
|
||||
'Results' => '',
|
||||
'Search' => '搜索',
|
||||
'Search for users and spaces' => '搜索用户或版块',
|
||||
'Show more results' => '展示更多结果',
|
||||
'Sorry, nothing found!' => '对不起,没有找到任何结果',
|
||||
'Space not found!' => '没找到版块',
|
||||
'User Approvals' => '',
|
||||
'User not found!' => '没找到用户',
|
||||
'Welcome to %appName%' => '欢迎来到%appName%',
|
||||
'You cannot create public visible content!' => '',
|
||||
'Your daily summary' => '',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Upload</strong> error' => '',
|
||||
'Close' => '',
|
||||
'Close' => '关闭',
|
||||
);
|
||||
|
@ -1,54 +1,37 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Latest</strong> updates' => '',
|
||||
'Account settings' => '',
|
||||
'Administration' => '',
|
||||
'Back to dashboard' => '',
|
||||
'Collapse' => '',
|
||||
'<strong>Latest</strong> updates' => '<strong>最新</strong>更新',
|
||||
'Account settings' => '帳戶設定',
|
||||
'Administration' => '管理功能',
|
||||
'Back to dashboard' => '返回主板面',
|
||||
'Collapse' => '折叠',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '',
|
||||
'Could not determine content container!' => '',
|
||||
'Could not find content of addon!' => '',
|
||||
'Could not find requested module!' => '',
|
||||
'Error' => '',
|
||||
'Expand' => '',
|
||||
'Insufficent permissions to create content!' => '',
|
||||
'Invalid request.' => '',
|
||||
'It looks like you may have taken the wrong turn.' => '',
|
||||
'Keyword:' => '',
|
||||
'Latest news' => '',
|
||||
'Logout' => '',
|
||||
'Menu' => '',
|
||||
'Error' => '錯誤',
|
||||
'Expand' => '展開',
|
||||
'Insufficent permissions to create content!' => '無權限來創建內容!',
|
||||
'Invalid request.' => '無效請求',
|
||||
'It looks like you may have taken the wrong turn.' => '走錯地方了!',
|
||||
'Keyword:' => '關鍵詞',
|
||||
'Latest news' => '最新消息',
|
||||
'Logout' => '登出',
|
||||
'Menu' => '選單',
|
||||
'Module is not on this content container enabled!' => '',
|
||||
'My profile' => '',
|
||||
'New profile image' => '',
|
||||
'Nothing found with your input.' => '',
|
||||
'Oooops...' => '',
|
||||
'Results' => '',
|
||||
'Search' => '',
|
||||
'Search for users and spaces' => '',
|
||||
'Show more results' => '',
|
||||
'Sorry, nothing found!' => '',
|
||||
'Space not found!' => '',
|
||||
'User Approvals' => '',
|
||||
'User not found!' => '',
|
||||
'Welcome to %appName%' => '',
|
||||
'My profile' => '我的個人資料',
|
||||
'New profile image' => '新圖檔',
|
||||
'Nothing found with your input.' => '依您輸入資訊搜尋後無發現任何相關內容',
|
||||
'Oooops...' => '錯誤!',
|
||||
'Results' => '結果',
|
||||
'Search' => '搜尋',
|
||||
'Search for users and spaces' => '搜尋用戶及板塊',
|
||||
'Show more results' => '展示更多結果',
|
||||
'Sorry, nothing found!' => '對不起,沒有找到!',
|
||||
'Space not found!' => '找不到此板塊',
|
||||
'User Approvals' => '批准用戶',
|
||||
'User not found!' => '無法找到此用戶',
|
||||
'Welcome to %appName%' => '歡迎使用%appName%',
|
||||
'You cannot create public visible content!' => '',
|
||||
'Your daily summary' => '',
|
||||
);
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'see online' => 'vidět online',
|
||||
'see online' => 'otevřít v prohlížeči',
|
||||
'via' => 'přes',
|
||||
);
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'see online' => 'δες online',
|
||||
'via' => '',
|
||||
'via' => 'από',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'%displayName% created the new space %spaceName%' => '',
|
||||
'%displayName% created this space.' => '',
|
||||
'%displayName% created the new space %spaceName%' => '%displayName% انجمن جدید %spaceName% را تولیدکرد.',
|
||||
'%displayName% created this space.' => '%displayName% این انجمن را تولیدکردهاست.',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'%displayName% joined the space %spaceName%' => '',
|
||||
'%displayName% joined this space.' => '',
|
||||
'%displayName% joined the space %spaceName%' => '%displayName% به انجمن%spaceName% پیوست.',
|
||||
'%displayName% joined this space.' => '%displayName% به این انجمن پیوست.',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'%displayName% left the space %spaceName%' => '',
|
||||
'%displayName% left this space.' => '',
|
||||
'%displayName% left the space %spaceName%' => '%displayName% انجمن%spaceName% را ترک کرد.',
|
||||
'%displayName% left this space.' => '%displayName% این انجمن را ترک کرد.',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'{user1} now follows {user2}.' => '',
|
||||
'{user1} now follows {user2}.' => '{user1} اکنون {user2} را دنبال میکند.',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'see online' => '',
|
||||
'via' => '',
|
||||
'see online' => 'مشاهدهی آنلاین',
|
||||
'via' => 'توسط',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Latest</strong> activities' => '',
|
||||
'There are no activities yet.' => '',
|
||||
'<strong>Latest</strong> activities' => '<strong> آخرین </strong> فعالیتها',
|
||||
'There are no activities yet.' => 'هنوز فعالیتی وجود ندارد.',
|
||||
);
|
||||
|
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'Could not create activity for this object type!' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'%displayName% created the new space %spaceName%' => '',
|
||||
'%displayName% created this space.' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'%displayName% joined the space %spaceName%' => '',
|
||||
'%displayName% joined this space.' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'%displayName% left the space %spaceName%' => '',
|
||||
'%displayName% left this space.' => '',
|
||||
);
|
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return array (
|
||||
'{user1} now follows {user2}.' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'see online' => '',
|
||||
'via' => '',
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Latest</strong> activities' => '',
|
||||
'There are no activities yet.' => '',
|
||||
);
|
@ -36,14 +36,29 @@ class SettingController extends Controller
|
||||
);
|
||||
}
|
||||
|
||||
public function actionIndex()
|
||||
{
|
||||
$this->redirect($this->createUrl('basic'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a List of Users
|
||||
*/
|
||||
public function actionIndex()
|
||||
public function actionBasic()
|
||||
{
|
||||
Yii::import('admin.forms.*');
|
||||
|
||||
$form = new BasicSettingsForm;
|
||||
$form->name = HSetting::Get('name');
|
||||
$form->baseUrl = HSetting::Get('baseUrl');
|
||||
$form->defaultLanguage = HSetting::Get('defaultLanguage');
|
||||
$form->dashboardShowProfilePostForm = HSetting::Get('showProfilePostForm', 'dashboard');
|
||||
$form->tour = HSetting::Get('enable', 'tour');
|
||||
|
||||
$form->defaultSpaceGuid = "";
|
||||
foreach (Space::model()->findAllByAttributes(array('auto_add_new_members' => 1)) as $defaultSpace) {
|
||||
$form->defaultSpaceGuid .= $defaultSpace->guid . ",";
|
||||
}
|
||||
|
||||
if (isset($_POST['ajax']) && $_POST['ajax'] === 'basic-settings-form') {
|
||||
echo CActiveForm::validate($form);
|
||||
@ -59,6 +74,7 @@ class SettingController extends Controller
|
||||
HSetting::Set('baseUrl', $form->baseUrl);
|
||||
HSetting::Set('defaultLanguage', $form->defaultLanguage);
|
||||
HSetting::Set('enable', $form->tour, 'tour');
|
||||
HSetting::Set('showProfilePostForm', $form->dashboardShowProfilePostForm, 'dashboard');
|
||||
|
||||
$spaceGuids = explode(",", $form->defaultSpaceGuid);
|
||||
|
||||
@ -81,23 +97,10 @@ class SettingController extends Controller
|
||||
|
||||
// set flash message
|
||||
Yii::app()->user->setFlash('data-saved', Yii::t('AdminModule.controllers_SettingController', 'Saved'));
|
||||
|
||||
$this->redirect(Yii::app()->createUrl('//admin/setting/index'));
|
||||
}
|
||||
} else {
|
||||
$form->name = HSetting::Get('name');
|
||||
$form->baseUrl = HSetting::Get('baseUrl');
|
||||
$form->defaultLanguage = HSetting::Get('defaultLanguage');
|
||||
$form->tour = HSetting::Get('enable', 'tour');
|
||||
|
||||
|
||||
$form->defaultSpaceGuid = "";
|
||||
foreach (Space::model()->findAllByAttributes(array('auto_add_new_members' => 1)) as $defaultSpace) {
|
||||
$form->defaultSpaceGuid .= $defaultSpace->guid . ",";
|
||||
$this->redirect(Yii::app()->createUrl('//admin/setting/basic'));
|
||||
}
|
||||
}
|
||||
|
||||
$this->render('index', array('model' => $form));
|
||||
$this->render('basic', array('model' => $form));
|
||||
}
|
||||
|
||||
public function actionDeleteLogoImage()
|
||||
|
@ -12,6 +12,7 @@ class BasicSettingsForm extends CFormModel
|
||||
public $defaultLanguage;
|
||||
public $defaultSpaceGuid;
|
||||
public $tour;
|
||||
public $dashboardShowProfilePostForm;
|
||||
|
||||
/**
|
||||
* Declares the validation rules.
|
||||
@ -23,7 +24,7 @@ class BasicSettingsForm extends CFormModel
|
||||
array('name', 'length', 'max' => 150),
|
||||
array('defaultLanguage', 'in', 'range' => array_keys(Yii::app()->params['availableLanguages'])),
|
||||
array('defaultSpaceGuid', 'checkSpaceGuid'),
|
||||
array('tour', 'safe')
|
||||
array('tour, dashboardShowProfilePostForm', 'in', 'range' => array(0, 1))
|
||||
);
|
||||
}
|
||||
|
||||
@ -39,7 +40,8 @@ class BasicSettingsForm extends CFormModel
|
||||
'baseUrl' => Yii::t('AdminModule.forms_BasicSettingsForm', 'Base URL'),
|
||||
'defaultLanguage' => Yii::t('AdminModule.forms_BasicSettingsForm', 'Default language'),
|
||||
'defaultSpaceGuid' => Yii::t('AdminModule.forms_BasicSettingsForm', 'Default space'),
|
||||
'tour' => Yii::t('AdminModule.forms_BasicSettingsForm', 'Show introduction tour for new users')
|
||||
'tour' => Yii::t('AdminModule.forms_BasicSettingsForm', 'Show introduction tour for new users'),
|
||||
'dashboardShowProfilePostForm' => Yii::t('AdminModule.forms_BasicSettingsForm', 'Show user profile post form on dashboard')
|
||||
);
|
||||
}
|
||||
|
||||
@ -65,5 +67,4 @@ class BasicSettingsForm extends CFormModel
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -1,21 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'User not found!' => '',
|
||||
'Account Request for \'{displayName}\' has been approved.' => '',
|
||||
'Account Request for \'{displayName}\' has been declined.' => '',
|
||||
'Hello {displayName},<br><br>
|
||||
|
||||
your account has been activated.<br><br>
|
||||
|
||||
Click here to login:<br>
|
||||
<a href=\'{loginURL}\'>{loginURL}</a><br><br>
|
||||
|
||||
Kind Regards<br>
|
||||
{AdminName}<br><br>' => '',
|
||||
'Hello {displayName},<br><br>
|
||||
|
||||
your account request has been declined.<br><br>
|
||||
|
||||
Kind Regards<br>
|
||||
{AdminName}<br><br>' => '',
|
||||
'User not found!' => ' ',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Group not found!' => '',
|
||||
'Group not found!' => ' ',
|
||||
);
|
||||
|
@ -1,23 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Could not find requested module!' => '',
|
||||
'Could not find requested module!' => 'No se puede trobar o modulo solicitau!',
|
||||
'Could not uninstall module first! Module is protected.' => '',
|
||||
'Module path %path% is not writeable!' => '',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Saved' => '',
|
||||
'Saved' => ' ',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'APC' => '',
|
||||
'Could not load LDAP! - Check PHP Extension' => '',
|
||||
@ -24,6 +7,6 @@ return array (
|
||||
'No caching (Testing only!)' => '',
|
||||
'No theme' => '',
|
||||
'None - shows dropdown in user registration.' => '',
|
||||
'Saved' => '',
|
||||
'Saved' => ' ',
|
||||
'Saved and flushed cache' => '',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Saved' => '',
|
||||
'Saved' => ' ',
|
||||
);
|
||||
|
@ -1,30 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Become this user' => '',
|
||||
'Delete' => '',
|
||||
'Delete' => 'Eliminar',
|
||||
'Disabled' => '',
|
||||
'Enabled' => '',
|
||||
'LDAP' => '',
|
||||
'Local' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Uložit',
|
||||
'Unapproved' => '',
|
||||
'User not found!' => '',
|
||||
'User not found!' => ' Gebruikers niet gevonden!',
|
||||
'You cannot delete yourself!' => '',
|
||||
);
|
||||
|
@ -1,24 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Could not load category.' => '',
|
||||
'Delete' => '',
|
||||
'Save' => '',
|
||||
'Delete' => 'Eliminar',
|
||||
'Save' => 'Uložit',
|
||||
'You can only delete empty categories!' => '',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Message' => '',
|
||||
'Message' => 'Zpráva',
|
||||
'Subject' => '',
|
||||
);
|
||||
|
@ -1,23 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Installed' => '',
|
||||
'No modules found!' => '',
|
||||
'Search' => '',
|
||||
'Search' => 'Buscar',
|
||||
);
|
||||
|
@ -1,23 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Accept user: <strong>{displayName}</strong> ' => '',
|
||||
'Cancel' => '',
|
||||
'Cancel' => 'Cancelar',
|
||||
'Send & save' => '',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Cancel' => '',
|
||||
'Cancel' => 'Cancelar',
|
||||
'Decline & delete user: <strong>{displayName}</strong>' => '',
|
||||
);
|
||||
|
@ -1,27 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Create</strong> new group' => '',
|
||||
'<strong>Edit</strong> group' => '',
|
||||
'Delete' => '',
|
||||
'Delete' => 'Eliminar',
|
||||
'Description' => '',
|
||||
'Group name' => '',
|
||||
'Ldap DN' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Uložit',
|
||||
);
|
||||
|
@ -1,29 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'%moduleName% - Set as default module' => '',
|
||||
'Activated' => '',
|
||||
'Always activated' => '',
|
||||
'Close' => '',
|
||||
'Close' => 'Zavřít',
|
||||
'Deactivated' => '',
|
||||
'Here you can choose whether or not a module should be automatically activated on a space or user profile. If the module should be activated, choose "always activated".' => '',
|
||||
'Save' => '',
|
||||
'Spaces' => '',
|
||||
'Save' => 'Uložit',
|
||||
'Spaces' => 'Espacios',
|
||||
'User Profiles' => '',
|
||||
);
|
||||
|
@ -1,25 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Authentication</strong> - Basic' => '',
|
||||
'Basic' => '',
|
||||
'LDAP' => '',
|
||||
'Min value is 20 seconds. If not set, session will timeout after 1400 seconds (24 minutes) regardless of activity (default session timeout)' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Uložit',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Authentication</strong> - LDAP' => '',
|
||||
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => '',
|
||||
@ -24,7 +7,7 @@ return array (
|
||||
'LDAP' => '',
|
||||
'LDAP Attribute for Username. Example: "uid" or "sAMAccountName"' => '',
|
||||
'Limit access to users meeting this criteria. Example: "(objectClass=posixAccount)" or "(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))"' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Uložit',
|
||||
'Status: Error! (Message: {message})' => '',
|
||||
'Status: OK! ({userCount} Users)' => '',
|
||||
'The default base DN used for searching for accounts.' => '',
|
||||
|
@ -1,26 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Design</strong> settings' => '',
|
||||
'Alphabetical' => '',
|
||||
'Firstname Lastname (e.g. John Doe)' => '',
|
||||
'Last visit' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Uložit',
|
||||
'Username (e.g. john)' => '',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>File</strong> settings' => '',
|
||||
'Comma separated list. Leave empty to allow all.' => '',
|
||||
@ -24,5 +7,5 @@ return array (
|
||||
'If not set, height will default to 200px.' => '',
|
||||
'If not set, width will default to 200px.' => '',
|
||||
'PHP reported a maximum of {maxUploadSize} MB' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Uložit',
|
||||
);
|
||||
|
@ -1,24 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Basic</strong> settings' => '',
|
||||
'E.g. http://example.com/humhub' => '',
|
||||
'New users will automatically added to these space(s).' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Uložit',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Mailing</strong> defaults' => '',
|
||||
'Activities' => '',
|
||||
@ -25,7 +8,7 @@ return array (
|
||||
'Define defaults when a user receive e-mails about notifications or new activities. This settings can be overwritten by users in account settings.' => '',
|
||||
'Never' => '',
|
||||
'Notifications' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Uložit',
|
||||
'Server Settings' => '',
|
||||
'When I´m offline' => '',
|
||||
);
|
||||
|
@ -1,25 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Mailing</strong> settings' => '',
|
||||
'Defaults' => '',
|
||||
'SMTP Options' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Uložit',
|
||||
'Server Settings' => '',
|
||||
);
|
||||
|
@ -1,26 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Add</strong> OEmbed Provider' => '',
|
||||
'<strong>Edit</strong> OEmbed Provider' => '',
|
||||
'Delete' => '',
|
||||
'Save' => '',
|
||||
'Delete' => 'Eliminar',
|
||||
'Save' => 'Uložit',
|
||||
'Url Prefix without http:// or https:// (e.g. youtube.com)' => '',
|
||||
'Use %url% as placeholder for URL. Format needs to be JSON. (e.g. http://www.youtube.com/oembed?url=%url%&format=json)' => '',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Proxy</strong> settings' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Uložit',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Security</strong> settings and roles' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Uložit',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Statistic</strong> settings' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Uložit',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Space</strong> Settings' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Uložit',
|
||||
);
|
||||
|
@ -1,24 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Create</strong> new profile category' => '',
|
||||
'<strong>Edit</strong> profile category' => '',
|
||||
'Delete' => '',
|
||||
'Save' => '',
|
||||
'Delete' => 'Eliminar',
|
||||
'Save' => 'Uložit',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Administration</strong> menu' => '',
|
||||
'About' => '',
|
||||
@ -25,7 +8,7 @@ return array (
|
||||
'Cron jobs' => '',
|
||||
'Design' => '',
|
||||
'Files' => '',
|
||||
'Groups' => '',
|
||||
'Groups' => 'Grupos',
|
||||
'Logging' => '',
|
||||
'Mailing' => '',
|
||||
'Modules' => '',
|
||||
@ -34,7 +17,7 @@ return array (
|
||||
'Security & Roles' => '',
|
||||
'Self test & update' => '',
|
||||
'Settings' => '',
|
||||
'Spaces' => '',
|
||||
'Spaces' => 'Espacios',
|
||||
'Statistics' => '',
|
||||
'User approval' => '',
|
||||
'User profiles' => '',
|
||||
|
@ -1,21 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Account Request for \'{displayName}\' has been approved.' => '',
|
||||
'Account Request for \'{displayName}\' has been declined.' => '',
|
||||
'Hello {displayName},<br><br>
|
||||
|
||||
your account has been activated.<br><br>
|
||||
|
||||
Click here to login:<br>
|
||||
<a href=\'{loginURL}\'>{loginURL}</a><br><br>
|
||||
|
||||
Kind Regards<br>
|
||||
{AdminName}<br><br>' => '',
|
||||
'Hello {displayName},<br><br>
|
||||
|
||||
your account request has been declined.<br><br>
|
||||
|
||||
Kind Regards<br>
|
||||
{AdminName}<br><br>' => '',
|
||||
'User not found!' => '',
|
||||
);
|
||||
|
@ -1,4 +1,21 @@
|
||||
<?php
|
||||
return array (
|
||||
'Account Request for \'{displayName}\' has been approved.' => '',
|
||||
'Account Request for \'{displayName}\' has been declined.' => '',
|
||||
'Hello {displayName},<br><br>
|
||||
|
||||
your account has been activated.<br><br>
|
||||
|
||||
Click here to login:<br>
|
||||
<a href=\'{loginURL}\'>{loginURL}</a><br><br>
|
||||
|
||||
Kind Regards<br>
|
||||
{AdminName}<br><br>' => '',
|
||||
'Hello {displayName},<br><br>
|
||||
|
||||
your account request has been declined.<br><br>
|
||||
|
||||
Kind Regards<br>
|
||||
{AdminName}<br><br>' => '',
|
||||
'User not found!' => 'No s\'ha trobat cap membre!',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Saved' => '',
|
||||
'Saved' => 'Desat',
|
||||
);
|
||||
|
@ -1,30 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Become this user' => '',
|
||||
'Delete' => '',
|
||||
'Delete' => 'Suprimeix',
|
||||
'Disabled' => '',
|
||||
'Enabled' => '',
|
||||
'LDAP' => '',
|
||||
'Local' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Desa',
|
||||
'Unapproved' => '',
|
||||
'User not found!' => '',
|
||||
'User not found!' => 'Membre no trobat!',
|
||||
'You cannot delete yourself!' => '',
|
||||
);
|
||||
|
@ -1,24 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Could not load category.' => '',
|
||||
'Delete' => '',
|
||||
'Save' => '',
|
||||
'Delete' => 'Suprimeix',
|
||||
'Save' => 'Desa',
|
||||
'You can only delete empty categories!' => '',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Base DN' => '',
|
||||
'Enable LDAP Support' => '',
|
||||
@ -23,7 +6,7 @@ return array (
|
||||
'Fetch/Update Users Automatically' => '',
|
||||
'Hostname' => '',
|
||||
'Login Filter' => '',
|
||||
'Password' => '',
|
||||
'Password' => 'Contrasenya',
|
||||
'Port' => '',
|
||||
'User Filer' => '',
|
||||
'Username' => '',
|
||||
|
@ -1,28 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Allow Self-Signed Certificates?' => '',
|
||||
'E-Mail sender address' => '',
|
||||
'E-Mail sender name' => '',
|
||||
'Encryption' => '',
|
||||
'Mail Transport Type' => '',
|
||||
'Password' => '',
|
||||
'Password' => 'Contrasenya',
|
||||
'Port number' => '',
|
||||
'Username' => '',
|
||||
);
|
||||
|
@ -1,25 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Enabled' => '',
|
||||
'No Proxy Hosts' => '',
|
||||
'Password' => '',
|
||||
'Password' => 'Contrasenya',
|
||||
'Port' => '',
|
||||
'Server' => '',
|
||||
'User' => '',
|
||||
|
@ -1,23 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Activated' => '',
|
||||
'Activated' => 'Activat',
|
||||
'No modules installed yet. Install some to enhance the functionality!' => '',
|
||||
'Version:' => '',
|
||||
);
|
||||
|
@ -1,23 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Installed' => '',
|
||||
'No modules found!' => '',
|
||||
'Search' => '',
|
||||
'Search' => 'Cerca',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Accept' => '',
|
||||
'Decline' => '',
|
||||
'Decline' => 'No hi assistiré',
|
||||
);
|
||||
|
@ -1,23 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Accept user: <strong>{displayName}</strong> ' => '',
|
||||
'Cancel' => '',
|
||||
'Cancel' => 'Cancel·la',
|
||||
'Send & save' => '',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'Cancel' => '',
|
||||
'Cancel' => 'Cancel·la',
|
||||
'Decline & delete user: <strong>{displayName}</strong>' => '',
|
||||
);
|
||||
|
@ -1,27 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Create</strong> new group' => '',
|
||||
'<strong>Edit</strong> group' => '',
|
||||
'Delete' => '',
|
||||
'Description' => '',
|
||||
'Delete' => 'Suprimeix',
|
||||
'Description' => 'Descripció',
|
||||
'Group name' => '',
|
||||
'Ldap DN' => '',
|
||||
'Save' => '',
|
||||
'Ldap DN' => 'Ldap DN',
|
||||
'Save' => 'Desa',
|
||||
);
|
||||
|
@ -1,24 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Manage</strong> groups' => '',
|
||||
'Description' => '',
|
||||
'Description' => 'Descripció',
|
||||
'Group name' => '',
|
||||
'Search for description' => '',
|
||||
'Search for group name' => '',
|
||||
|
@ -1,28 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Modules</strong> directory' => '',
|
||||
'Are you sure? *ALL* module data will be lost!' => '',
|
||||
'Are you sure? *ALL* module related data and files will be lost!' => '',
|
||||
'Configure' => '',
|
||||
'Disable' => '',
|
||||
'Enable' => '',
|
||||
'Configure' => 'Configura',
|
||||
'Disable' => 'Inhabilita',
|
||||
'Enable' => 'Habilita',
|
||||
'More info' => '',
|
||||
'Set as default' => '',
|
||||
'Uninstall' => '',
|
||||
|
@ -1,29 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'%moduleName% - Set as default module' => '',
|
||||
'Activated' => '',
|
||||
'Activated' => 'Activat',
|
||||
'Always activated' => '',
|
||||
'Close' => '',
|
||||
'Close' => 'Tanca',
|
||||
'Deactivated' => '',
|
||||
'Here you can choose whether or not a module should be automatically activated on a space or user profile. If the module should be activated, choose "always activated".' => '',
|
||||
'Save' => '',
|
||||
'Spaces' => '',
|
||||
'Save' => 'Desa',
|
||||
'Spaces' => 'Espais',
|
||||
'User Profiles' => '',
|
||||
);
|
||||
|
@ -1,25 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Authentication</strong> - Basic' => '',
|
||||
'Basic' => '',
|
||||
'LDAP' => '',
|
||||
'Min value is 20 seconds. If not set, session will timeout after 1400 seconds (24 minutes) regardless of activity (default session timeout)' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Desa',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Authentication</strong> - LDAP' => '',
|
||||
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => '',
|
||||
@ -24,7 +7,7 @@ return array (
|
||||
'LDAP' => '',
|
||||
'LDAP Attribute for Username. Example: "uid" or "sAMAccountName"' => '',
|
||||
'Limit access to users meeting this criteria. Example: "(objectClass=posixAccount)" or "(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))"' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Desa',
|
||||
'Status: Error! (Message: {message})' => '',
|
||||
'Status: OK! ({userCount} Users)' => '',
|
||||
'The default base DN used for searching for accounts.' => '',
|
||||
|
@ -1,27 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>CronJob</strong> settings' => '',
|
||||
'Crontab of user: {user}' => '',
|
||||
'Last run (daily):' => '',
|
||||
'Last run (hourly):' => '',
|
||||
'Never' => '',
|
||||
'Never' => 'Mai',
|
||||
'Or Crontab of root user' => '',
|
||||
'Please make sure following cronjobs are installed:' => '',
|
||||
);
|
||||
|
@ -1,26 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Design</strong> settings' => '',
|
||||
'Alphabetical' => '',
|
||||
'Firstname Lastname (e.g. John Doe)' => '',
|
||||
'Last visit' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Desa',
|
||||
'Username (e.g. john)' => '',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>File</strong> settings' => '',
|
||||
'Comma separated list. Leave empty to allow all.' => '',
|
||||
@ -24,5 +7,5 @@ return array (
|
||||
'If not set, height will default to 200px.' => '',
|
||||
'If not set, width will default to 200px.' => '',
|
||||
'PHP reported a maximum of {maxUploadSize} MB' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Desa',
|
||||
);
|
||||
|
@ -1,24 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Basic</strong> settings' => '',
|
||||
'E.g. http://example.com/humhub' => '',
|
||||
'New users will automatically added to these space(s).' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Desa',
|
||||
);
|
||||
|
@ -1,31 +1,14 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Mailing</strong> defaults' => '',
|
||||
'Activities' => '',
|
||||
'Always' => '',
|
||||
'Daily summary' => '',
|
||||
'Activities' => 'Activitats',
|
||||
'Always' => 'Sempre',
|
||||
'Daily summary' => 'Resum diari',
|
||||
'Defaults' => '',
|
||||
'Define defaults when a user receive e-mails about notifications or new activities. This settings can be overwritten by users in account settings.' => '',
|
||||
'Never' => '',
|
||||
'Notifications' => '',
|
||||
'Save' => '',
|
||||
'Never' => 'Mai',
|
||||
'Notifications' => 'Avisos',
|
||||
'Save' => 'Desa',
|
||||
'Server Settings' => '',
|
||||
'When I´m offline' => '',
|
||||
'When I´m offline' => 'Quan no estic en línia',
|
||||
);
|
||||
|
@ -1,25 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Mailing</strong> settings' => '',
|
||||
'Defaults' => '',
|
||||
'SMTP Options' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Desa',
|
||||
'Server Settings' => '',
|
||||
);
|
||||
|
@ -1,26 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Add</strong> OEmbed Provider' => '',
|
||||
'<strong>Edit</strong> OEmbed Provider' => '',
|
||||
'Delete' => '',
|
||||
'Save' => '',
|
||||
'Delete' => 'Suprimeix',
|
||||
'Save' => 'Desa',
|
||||
'Url Prefix without http:// or https:// (e.g. youtube.com)' => '',
|
||||
'Use %url% as placeholder for URL. Format needs to be JSON. (e.g. http://www.youtube.com/oembed?url=%url%&format=json)' => '',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Proxy</strong> settings' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Desa',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Security</strong> settings and roles' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Desa',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Statistic</strong> settings' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Desa',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Manage</strong> spaces' => '',
|
||||
'All' => '',
|
||||
@ -26,7 +9,7 @@ return array (
|
||||
'Overview' => '',
|
||||
'Search for space name' => '',
|
||||
'Search for space owner' => '',
|
||||
'Settings' => '',
|
||||
'Settings' => 'Configuració',
|
||||
'Space name' => '',
|
||||
'Space owner' => '',
|
||||
'View space' => '',
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Space</strong> Settings' => '',
|
||||
'Save' => '',
|
||||
'Save' => 'Desa',
|
||||
);
|
||||
|
@ -1,25 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Manage</strong> users' => '',
|
||||
'Add new user' => '',
|
||||
'Admin' => '',
|
||||
'Admin' => 'Administrador',
|
||||
'All' => '',
|
||||
'Delete user account' => '',
|
||||
'Edit user account' => '',
|
||||
|
@ -1,24 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Create</strong> new profile category' => '',
|
||||
'<strong>Edit</strong> profile category' => '',
|
||||
'Delete' => '',
|
||||
'Save' => '',
|
||||
'Delete' => 'Suprimeix',
|
||||
'Save' => 'Desa',
|
||||
);
|
||||
|
@ -1,40 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yiic message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE, this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return array (
|
||||
'<strong>Administration</strong> menu' => '',
|
||||
'About' => '',
|
||||
'About' => 'Informació',
|
||||
'Authentication' => '',
|
||||
'Basic' => '',
|
||||
'Caching' => '',
|
||||
'Cron jobs' => '',
|
||||
'Design' => '',
|
||||
'Files' => '',
|
||||
'Groups' => '',
|
||||
'Groups' => 'Grups',
|
||||
'Logging' => '',
|
||||
'Mailing' => '',
|
||||
'Modules' => '',
|
||||
'Modules' => 'Mòduls',
|
||||
'OEmbed Provider' => '',
|
||||
'Proxy' => '',
|
||||
'Security & Roles' => '',
|
||||
'Self test & update' => '',
|
||||
'Settings' => '',
|
||||
'Spaces' => '',
|
||||
'Settings' => 'Configuració',
|
||||
'Spaces' => 'Espais',
|
||||
'Statistics' => '',
|
||||
'User approval' => '',
|
||||
'User profiles' => '',
|
||||
|
@ -1,4 +1,21 @@
|
||||
<?php
|
||||
return array (
|
||||
'Account Request for \'{displayName}\' has been approved.' => '',
|
||||
'Account Request for \'{displayName}\' has been declined.' => '',
|
||||
'Hello {displayName},<br><br>
|
||||
|
||||
your account has been activated.<br><br>
|
||||
|
||||
Click here to login:<br>
|
||||
<a href=\'{loginURL}\'>{loginURL}</a><br><br>
|
||||
|
||||
Kind Regards<br>
|
||||
{AdminName}<br><br>' => '',
|
||||
'Hello {displayName},<br><br>
|
||||
|
||||
your account request has been declined.<br><br>
|
||||
|
||||
Kind Regards<br>
|
||||
{AdminName}<br><br>' => '',
|
||||
'User not found!' => 'Uživatel nebyl nalezen!',
|
||||
);
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
return array (
|
||||
'APC' => 'APC',
|
||||
'Could not load LDAP! - Check PHP Extension' => 'Nelze načíst PHP rozšíření LDAP!',
|
||||
'Could not load LDAP! - Check PHP Extension' => 'Nelze načíst LDAP – zkontrolujte rozšíření PHP!',
|
||||
'Database' => 'Databáze',
|
||||
'File' => 'Soubor',
|
||||
'No caching (Testing only!)' => 'Bez cache (pouze pro testování!)',
|
||||
|
@ -10,5 +10,5 @@ return array (
|
||||
'Password' => 'Heslo',
|
||||
'Port' => 'Port',
|
||||
'Username' => 'Uživatelské jméno',
|
||||
'Username Attribute' => 'Parametr obsahující uživatelské jméno',
|
||||
'Username Attribute' => ' ',
|
||||
);
|
||||
|
@ -2,12 +2,12 @@
|
||||
return array (
|
||||
'Hide file info (name, size) for images on wall' => 'Skrýt informace o souboru pro všechny obrázky ve výpisu příspěvků',
|
||||
'Hide file list widget from showing files for these objects on wall.' => '',
|
||||
'Maximum preview image height (in pixels, optional)' => '',
|
||||
'Maximum preview image width (in pixels, optional)' => '',
|
||||
'Maximum preview image height (in pixels, optional)' => 'Maximální výška náhledu (v pixelech, volitelné)',
|
||||
'Maximum preview image width (in pixels, optional)' => 'Maximální šířka náhledu (v pixelech, volitelné)',
|
||||
'Allowed file extensions' => 'Povolené přípony souborů',
|
||||
'Convert command not found!' => 'Příkaz pro převod nebyl nalezen!',
|
||||
'Got invalid image magick response! - Correct command?' => 'Neplatná odpověď programu ImageMagic! – Je příkaz správný?',
|
||||
'Image Magick convert command (optional)' => 'Program pro převod ImageMagic (volitelné)',
|
||||
'Got invalid image magick response! - Correct command?' => 'Neplatná odpověď programu ImageMagick – je příkaz správný?',
|
||||
'Image Magick convert command (optional)' => 'Program pro převod ImageMagick (volitelné)',
|
||||
'Maximum upload file size (in MB)' => 'Maximální velikost nahrávaného souboru (v MB)',
|
||||
'Use X-Sendfile for File Downloads' => 'Pro stahování souborů použít metodu X-Sendfile',
|
||||
);
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
return array (
|
||||
'Allow Self-Signed Certificates?' => 'Povolit certifikáty podepsané systémem?',
|
||||
'Allow Self-Signed Certificates?' => 'Povolit self-signed certifikáty?',
|
||||
'E-Mail sender address' => 'Adresa odesílatele',
|
||||
'E-Mail sender name' => 'Jméno odesílatele',
|
||||
'Encryption' => 'Šifrování',
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user