mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 21:49:21 +03:00
Welcome page branding option
This commit is contained in:
parent
acb013fbb5
commit
351c12c002
50 changed files with 531 additions and 160 deletions
|
|
@ -232,7 +232,7 @@ class HtmlUtils
|
|||
{
|
||||
if ($oElement)
|
||||
{
|
||||
if (\preg_match('/http[s]?:\/\//i', $sUrl))
|
||||
if (\preg_match('/http[s]?:\/\//i', $sUrl) || '//' === \substr($sUrl, 0, 2))
|
||||
{
|
||||
$bHasExternals = true;
|
||||
if (!$bDoNotReplaceExternalUrl)
|
||||
|
|
@ -452,7 +452,7 @@ class HtmlUtils
|
|||
foreach ($aNodes as /* @var $oElement \DOMElement */ $oElement)
|
||||
{
|
||||
if (\in_array(\strtolower($oElement->tagName), array('svg', 'head', 'link',
|
||||
'base', 'meta', 'title', 'style', 'script', 'bgsound', 'keygen', 'source',
|
||||
'base', 'meta', 'title', 'style', 'x-script', 'script', 'bgsound', 'keygen', 'source',
|
||||
'object', 'embed', 'applet', 'mocha', 'iframe', 'frame', 'frameset', 'video', 'audio')) && isset($oElement->parentNode))
|
||||
{
|
||||
@$oElement->parentNode->removeChild($oElement);
|
||||
|
|
@ -546,8 +546,8 @@ class HtmlUtils
|
|||
// }
|
||||
|
||||
foreach (array(
|
||||
'id', 'class', 'contenteditable', 'designmode', 'formaction', 'data-bind', 'xmlns',
|
||||
'srcset'
|
||||
'id', 'class', 'contenteditable', 'designmode', 'formaction',
|
||||
'data-bind', 'xmlns', 'srcset'
|
||||
) as $sAttr)
|
||||
{
|
||||
@$oElement->removeAttribute($sAttr);
|
||||
|
|
@ -566,7 +566,8 @@ class HtmlUtils
|
|||
if ($oElement->hasAttribute('href'))
|
||||
{
|
||||
$sHref = \trim($oElement->getAttribute('href'));
|
||||
if (!\preg_match('/^(http[s]?|ftp|skype|mailto):/i', $sHref))
|
||||
if (!\preg_match('/^(http[s]?|ftp|skype|mailto):/i', $sHref) ||
|
||||
'//' !== \substr($sHref, 0, 2))
|
||||
{
|
||||
$oElement->setAttribute('data-x-broken-href', $sHref);
|
||||
$oElement->setAttribute('href', 'javascript:false');
|
||||
|
|
@ -594,7 +595,8 @@ class HtmlUtils
|
|||
}
|
||||
else
|
||||
{
|
||||
if (\preg_match('/http[s]?:\/\//i', $sSrc))
|
||||
if (\preg_match('/^http[s]?:\/\//i', $sSrc) ||
|
||||
'//' === \substr($sSrc, 0, 2))
|
||||
{
|
||||
if ($bDoNotReplaceExternalUrl)
|
||||
{
|
||||
|
|
@ -615,7 +617,7 @@ class HtmlUtils
|
|||
|
||||
$bHasExternals = true;
|
||||
}
|
||||
else if ('data:image/' === \strtolower(\substr(\trim($sSrc), 0, 11)))
|
||||
else if ('data:image/' === \strtolower(\substr($sSrc, 0, 11)))
|
||||
{
|
||||
$oElement->setAttribute('src', $sSrc);
|
||||
}
|
||||
|
|
@ -745,7 +747,7 @@ class HtmlUtils
|
|||
{
|
||||
$oElement->removeAttribute('data-x-additional-src');
|
||||
}
|
||||
|
||||
|
||||
if ($oElement->hasAttribute('data-x-additional-style-url'))
|
||||
{
|
||||
$oElement->removeAttribute('data-x-additional-style-url');
|
||||
|
|
|
|||
|
|
@ -1286,6 +1286,8 @@ class Actions
|
|||
'LoginCss' => '',
|
||||
'UserLogo' => '',
|
||||
'UserCss' => '',
|
||||
'WelcomePageUrl' => '',
|
||||
'WelcomePageDisplay' => 'none',
|
||||
'IncludeCss' => '',
|
||||
'IncludeBackground' => '',
|
||||
'Token' => $oConfig->Get('security', 'csrf_protection', false) ? \RainLoop\Utils::GetCsrfToken() : '',
|
||||
|
|
@ -1352,6 +1354,8 @@ class Actions
|
|||
$aResult['LoginPowered'] = !!$oConfig->Get('branding', 'login_powered', true);
|
||||
$aResult['UserLogo'] = $oConfig->Get('branding', 'user_logo', '');
|
||||
$aResult['UserCss'] = $oConfig->Get('branding', 'user_css', '');
|
||||
$aResult['WelcomePageUrl'] = $oConfig->Get('branding', 'welcome_page_url', '');
|
||||
$aResult['WelcomePageDisplay'] = \strtolower($oConfig->Get('branding', 'welcome_page_display', 'none'));
|
||||
}
|
||||
|
||||
$aResult['LoadingDescriptionEsc'] = \htmlspecialchars($aResult['LoadingDescription'], ENT_QUOTES|ENT_IGNORE, 'UTF-8');
|
||||
|
|
@ -1414,6 +1418,24 @@ class Actions
|
|||
|
||||
$oSettings = $this->SettingsProvider()->Load($oAccount);
|
||||
$oSettingsLocal = $this->SettingsProvider(true)->Load($oAccount);
|
||||
|
||||
if (!$oAccount->IsAdditionalAccount() && !empty($aResult['WelcomePageUrl']) &&
|
||||
('once' === $aResult['WelcomePageDisplay'] || 'always' === $aResult['WelcomePageDisplay']))
|
||||
{
|
||||
if ('once' === $aResult['WelcomePageDisplay'])
|
||||
{
|
||||
if ($aResult['WelcomePageUrl'] === $oSettings->GetConf('LastWelcomePage', ''))
|
||||
{
|
||||
$aResult['WelcomePageUrl'] = '';
|
||||
$aResult['WelcomePageDisplay'] = '';
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$aResult['WelcomePageUrl'] = '';
|
||||
$aResult['WelcomePageDisplay'] = '';
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -1424,6 +1446,9 @@ class Actions
|
|||
|
||||
$aResult['DevEmail'] = $oConfig->Get('labs', 'dev_email', '');
|
||||
$aResult['DevPassword'] = $oConfig->Get('labs', 'dev_password', '');
|
||||
|
||||
$aResult['WelcomePageUrl'] = '';
|
||||
$aResult['WelcomePageDisplay'] = '';
|
||||
}
|
||||
|
||||
$aResult['AllowGoogleSocial'] = (bool) $oConfig->Get('social', 'google_enable', false);
|
||||
|
|
@ -3247,7 +3272,11 @@ class Actions
|
|||
$this->setConfigFromParams($oConfig, 'Title', 'webmail', 'title', 'string');
|
||||
$this->setConfigFromParams($oConfig, 'LoadingDescription', 'webmail', 'loading_description', 'string');
|
||||
|
||||
if ($this->HasOneOfActionParams(array('LoginLogo', 'LoginBackground', 'LoginDescription', 'LoginCss', 'LoginPowered', 'UserLogo', 'UserCss')) && $this->PremType())
|
||||
if ($this->HasOneOfActionParams(array(
|
||||
'LoginLogo', 'LoginBackground', 'LoginDescription', 'LoginCss', 'LoginPowered',
|
||||
'UserLogo', 'UserCss',
|
||||
'WelcomePageUrl', 'WelcomePageDisplay'
|
||||
)) && $this->PremType())
|
||||
{
|
||||
$this->setConfigFromParams($oConfig, 'LoginLogo', 'branding', 'login_logo', 'string');
|
||||
$this->setConfigFromParams($oConfig, 'LoginBackground', 'branding', 'login_background', 'string');
|
||||
|
|
@ -3257,6 +3286,9 @@ class Actions
|
|||
|
||||
$this->setConfigFromParams($oConfig, 'UserLogo', 'branding', 'user_logo', 'string');
|
||||
$this->setConfigFromParams($oConfig, 'UserCss', 'branding', 'user_css', 'string');
|
||||
|
||||
$this->setConfigFromParams($oConfig, 'WelcomePageUrl', 'branding', 'welcome_page_url', 'string');
|
||||
$this->setConfigFromParams($oConfig, 'WelcomePageDisplay', 'branding', 'welcome_page_display', 'string');
|
||||
}
|
||||
|
||||
$this->setConfigFromParams($oConfig, 'TokenProtection', 'security', 'csrf_protection', 'bool');
|
||||
|
|
@ -4810,6 +4842,25 @@ class Actions
|
|||
return $this->DefaultResponse(__FUNCTION__, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function DoWelcomeClose()
|
||||
{
|
||||
$oAccount = $this->getAccountFromToken();
|
||||
if ($oAccount && !$oAccount->IsAdditionalAccount())
|
||||
{
|
||||
$oSettings = $this->SettingsProvider()->Load($oAccount);
|
||||
$oSettings->SetConf('LastWelcomePage',
|
||||
$this->Config()->Get('branding', 'welcome_page_url', ''));
|
||||
|
||||
return $this->DefaultResponse(__FUNCTION__,
|
||||
$this->SettingsProvider()->Save($oAccount, $oSettings));
|
||||
}
|
||||
|
||||
return $this->FalseResponse(__FUNCTION__);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
|
|
@ -8509,6 +8560,9 @@ class Actions
|
|||
$sHtml = $this->Plugins()->ProcessTemplate($sName, $sHtml);
|
||||
$sHtml = \preg_replace('/\{\{INCLUDE\/([a-zA-Z]+)\/PLACE\}\}/', '', $sHtml);
|
||||
|
||||
$sHtml = \preg_replace('/<script/i', '<x-script', $sHtml);
|
||||
$sHtml = \preg_replace('/<\/script>/i', '</x-script>', $sHtml);
|
||||
|
||||
return \RainLoop\Utils::ClearHtmlOutput($sHtml);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -88,8 +88,10 @@ class Application extends \RainLoop\Config\AbstractConfig
|
|||
'login_desc' => array(''),
|
||||
'login_css' => array(''),
|
||||
'login_powered' => array(true),
|
||||
'user_logo' => array(''),
|
||||
'user_css' => array('')
|
||||
'user_logo' => array(''),
|
||||
'user_css' => array(''),
|
||||
'welcome_page_url' => array(''),
|
||||
'welcome_page_display' => array('none')
|
||||
),
|
||||
|
||||
'contacts' => array(
|
||||
|
|
|
|||
|
|
@ -29,114 +29,164 @@
|
|||
</div>
|
||||
</div>
|
||||
<br />
|
||||
<div class="form-horizontal" data-bind="css: {'disabled-form': !capa()}">
|
||||
<div class="legend" data-i18n="TAB_BRANDING/LEGEND_LOGIN"></div>
|
||||
<div class="control-group">
|
||||
<label class="control-label" data-i18n="TAB_BRANDING/LABEL_LOGIN_LOGO"></label>
|
||||
<div class="controls">
|
||||
<div data-bind="component: {
|
||||
name: 'Input',
|
||||
params: {
|
||||
value: loginLogo,
|
||||
trigger: loginLogo.trigger,
|
||||
placeholder: 'https://',
|
||||
size: 5,
|
||||
enable: capa
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label" data-i18n="TAB_BRANDING/LABEL_LOGIN_DESCRIPTION"></label>
|
||||
<div class="controls">
|
||||
<div data-bind="component: {
|
||||
name: 'Input',
|
||||
params: {
|
||||
value: loginDescription,
|
||||
trigger: loginDescription.trigger,
|
||||
size: 5,
|
||||
enable: capa
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label" data-i18n="TAB_BRANDING/LABEL_LOGIN_BACKGROUND"></label>
|
||||
<div class="controls">
|
||||
<div data-bind="component: {
|
||||
name: 'Input',
|
||||
params: {
|
||||
value: loginBackground,
|
||||
trigger: loginBackground.trigger,
|
||||
placeholder: 'https://',
|
||||
size: 5,
|
||||
enable: capa
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label" data-i18n="TAB_BRANDING/LABEL_LOGIN_CUSTOM_CSS"></label>
|
||||
<div class="controls">
|
||||
<div class="custom-css-wrapper" data-bind="component: {
|
||||
name: 'TextArea',
|
||||
params: {
|
||||
value: loginCss,
|
||||
trigger: loginCss.trigger,
|
||||
width: 495,
|
||||
enable: capa,
|
||||
rows: 7
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="controls">
|
||||
<div data-bind="component: {
|
||||
name: 'Checkbox',
|
||||
params: {
|
||||
enable: capa,
|
||||
label: 'TAB_BRANDING/LABEL_LOGIN_SHOW_POWERED_LINK',
|
||||
value: loginPowered
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="legend" data-i18n="TAB_BRANDING/LEGEND_USER"></div>
|
||||
<!--
|
||||
<div class="control-group">
|
||||
<label class="control-label" data-i18n="TAB_BRANDING/LABEL_USER_LOGO"></label>
|
||||
<div class="controls">
|
||||
<div data-bind="component: {
|
||||
name: 'Input',
|
||||
params: {
|
||||
value: userLogo,
|
||||
trigger: userLogo.trigger,
|
||||
placeholder: 'https://',
|
||||
size: 5,
|
||||
enable: capa
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
<div class="control-group">
|
||||
<label class="control-label" data-i18n="TAB_BRANDING/LABEL_USER_CUSTOM_CSS"></label>
|
||||
<div class="controls">
|
||||
<div class="custom-css-wrapper" data-bind="component: {
|
||||
name: 'TextArea',
|
||||
params: {
|
||||
value: userCss,
|
||||
trigger: userCss.trigger,
|
||||
width: 495,
|
||||
enable: capa,
|
||||
rows: 7
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" data-bind="visible: !capa()">
|
||||
<div class="alert span8" style="margin-top: 10px;" data-i18n="[html]TAB_BRANDING/HTML_ALERT_PREMIUM"></div>
|
||||
<ul class="nav nav-tabs">
|
||||
<li class="active">
|
||||
<a class="i18n" data-i18n="TAB_BRANDING/LEGEND_LOGIN"
|
||||
href="#branding-login-section-id" data-toggle="tab"></a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="i18n" data-i18n="TAB_BRANDING/LEGEND_USER"
|
||||
href="#branding-user-section-id" data-toggle="tab"></a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="i18n" data-i18n="TAB_BRANDING/LEGEND_WELCOME_PAGE"
|
||||
href="#branding-welcome-page-section-id" data-toggle="tab"></a>
|
||||
</li>
|
||||
</ul>
|
||||
<br />
|
||||
<div class="row">
|
||||
<div class="tab-content span12">
|
||||
<div class="tab-pane active" id="branding-login-section-id">
|
||||
|
||||
<div class="form-horizontal" data-bind="css: {'disabled-form': !capa()}">
|
||||
<div class="control-group">
|
||||
<label class="control-label" data-i18n="TAB_BRANDING/LABEL_LOGIN_LOGO"></label>
|
||||
<div class="controls">
|
||||
<div data-bind="component: {
|
||||
name: 'Input',
|
||||
params: {
|
||||
value: loginLogo,
|
||||
trigger: loginLogo.trigger,
|
||||
placeholder: 'https://',
|
||||
size: 5,
|
||||
enable: capa
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label" data-i18n="TAB_BRANDING/LABEL_LOGIN_DESCRIPTION"></label>
|
||||
<div class="controls">
|
||||
<div data-bind="component: {
|
||||
name: 'Input',
|
||||
params: {
|
||||
value: loginDescription,
|
||||
trigger: loginDescription.trigger,
|
||||
size: 5,
|
||||
enable: capa
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label" data-i18n="TAB_BRANDING/LABEL_LOGIN_BACKGROUND"></label>
|
||||
<div class="controls">
|
||||
<div data-bind="component: {
|
||||
name: 'Input',
|
||||
params: {
|
||||
value: loginBackground,
|
||||
trigger: loginBackground.trigger,
|
||||
placeholder: 'https://',
|
||||
size: 5,
|
||||
enable: capa
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label" data-i18n="TAB_BRANDING/LABEL_LOGIN_CUSTOM_CSS"></label>
|
||||
<div class="controls">
|
||||
<div class="custom-css-wrapper" data-bind="component: {
|
||||
name: 'TextArea',
|
||||
params: {
|
||||
value: loginCss,
|
||||
trigger: loginCss.trigger,
|
||||
width: 495,
|
||||
enable: capa,
|
||||
rows: 7
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="controls">
|
||||
<div data-bind="component: {
|
||||
name: 'Checkbox',
|
||||
params: {
|
||||
enable: capa,
|
||||
label: 'TAB_BRANDING/LABEL_LOGIN_SHOW_POWERED_LINK',
|
||||
value: loginPowered
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="tab-pane" id="branding-user-section-id">
|
||||
|
||||
<div class="form-horizontal" data-bind="css: {'disabled-form': !capa()}">
|
||||
<div class="control-group">
|
||||
<label class="control-label" data-i18n="TAB_BRANDING/LABEL_USER_CUSTOM_CSS"></label>
|
||||
<div class="controls">
|
||||
<div class="custom-css-wrapper" data-bind="component: {
|
||||
name: 'TextArea',
|
||||
params: {
|
||||
value: userCss,
|
||||
trigger: userCss.trigger,
|
||||
width: 495,
|
||||
enable: capa,
|
||||
rows: 7
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="tab-pane active" id="branding-welcome-page-section-id">
|
||||
|
||||
<div class="form-horizontal" data-bind="css: {'disabled-form': !capa()}">
|
||||
<div class="control-group">
|
||||
<label class="control-label" data-i18n="TAB_BRANDING/LABEL_WELCOME_PAGE_URL"></label>
|
||||
<div class="controls">
|
||||
<div data-bind="component: {
|
||||
name: 'Input',
|
||||
params: {
|
||||
value: welcomePageUrl,
|
||||
trigger: welcomePageUrl.trigger,
|
||||
placeholder: 'https://',
|
||||
size: 5,
|
||||
enable: capa
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label" data-i18n="TAB_BRANDING/LABEL_WELCOME_PAGE_DISPLAY"></label>
|
||||
<div class="controls">
|
||||
<div data-bind="component: {
|
||||
name: 'Select',
|
||||
params: {
|
||||
options: welcomePageDisplay.options,
|
||||
value: welcomePageDisplay,
|
||||
trigger: welcomePageDisplay.trigger,
|
||||
optionsText: 'optText',
|
||||
optionsValue: 'optValue',
|
||||
size: 2,
|
||||
enable: capa
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" data-bind="visible: !capa()">
|
||||
<div class="alert span8" style="margin-top: 10px;" data-i18n="[html]TAB_BRANDING/HTML_ALERT_PREMIUM"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<div class="popups">
|
||||
<div class="modal hide b-welcom-page-content g-ui-user-select-none"
|
||||
data-bind="modal: modalVisibility" style="width: 600px">
|
||||
|
||||
<div class="modal-body" style="height: 450px; padding: 0">
|
||||
<div data-bind="if:welcomePageURL" style="height: 100%; width: 100%; margin: 0; padding: 0; position: relative">
|
||||
<iframe src="javascript:1;" tabindex="-1" frameborder="0"
|
||||
style="border: none; width: 100%; height: 100%; position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px;"
|
||||
data-bind="attr: {'src': welcomePageURL}"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal-footer">
|
||||
<button class="btn" data-bind="command: cancelCommand, hasFocus: closeFocused">
|
||||
<i class="icon-remove"></i>
|
||||
|
||||
<span class="i18n" data-i18n="POPUPS_WELCOME_PAGE/BUTTON_CLOSE"></span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -108,7 +108,8 @@
|
|||
<span class="flag-name" data-bind="text: languageFullName, click: selectLanguage"></span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
{{INCLUDE/BottomFooter/PLACE}}
|
||||
</center>
|
||||
</div>
|
||||
<div class="loginAfter"></div>
|
||||
</div>
|
||||
|
|
@ -173,7 +173,7 @@
|
|||
</div>
|
||||
<div class="mainDelimiter footerDelimiter"></div>
|
||||
<div class="b-footer thm-message-list-bottom-toolbar">
|
||||
<span data-tooltip-i18n="off" data-bind="visible: 0 < userUsageProc(), tooltip: quotaTooltip" class="e-quota">
|
||||
<span data-tooltip-i18n="off" data-tooltip-mobile="on" data-bind="visible: 0 < userUsageProc(), tooltip: quotaTooltip" class="e-quota">
|
||||
<span data-bind="text: userUsageProc"></span>%
|
||||
</span>
|
||||
<div class="pull-right">
|
||||
|
|
|
|||
|
|
@ -62,6 +62,13 @@ LABEL_LOGIN_SHOW_POWERED_LINK = "Show \"Powered by RainLoop\" link"
|
|||
LEGEND_USER = "User"
|
||||
LABEL_USER_LOGO = "Logo"
|
||||
LABEL_USER_CUSTOM_CSS = "Custom CSS"
|
||||
LEGEND_WELCOME_PAGE = "Welcome page"
|
||||
LABEL_WELCOME_PAGE_TITLE = "Title"
|
||||
LABEL_WELCOME_PAGE_URL = "URL"
|
||||
LABEL_WELCOME_PAGE_DISPLAY = "Display"
|
||||
OPTION_WELCOME_PAGE_DISPLAY_NONE = "None"
|
||||
OPTION_WELCOME_PAGE_DISPLAY_ONCE = "Once"
|
||||
OPTION_WELCOME_PAGE_DISPLAY_ALWAYS = "Always"
|
||||
HTML_ALERT_PREMIUM = "This functionality is available for <strong><a href=\"#/licensing\">Premium</a></strong> subscribers."
|
||||
|
||||
[TAB_CONTACTS]
|
||||
|
|
|
|||
|
|
@ -61,6 +61,13 @@ LABEL_LOGIN_SHOW_POWERED_LINK = "Показывать ссылку \"Powered by
|
|||
LEGEND_USER = "Экран пользователя"
|
||||
LABEL_USER_LOGO = "Логотип"
|
||||
LABEL_USER_CUSTOM_CSS = "Кастомный CSS"
|
||||
LEGEND_WELCOME_PAGE = "Приветствие"
|
||||
LABEL_WELCOME_PAGE_TITLE = "Название"
|
||||
LABEL_WELCOME_PAGE_URL = "URL"
|
||||
LABEL_WELCOME_PAGE_DISPLAY = "Показывать"
|
||||
OPTION_WELCOME_PAGE_DISPLAY_NONE = "Никогда"
|
||||
OPTION_WELCOME_PAGE_DISPLAY_ONCE = "Один раз"
|
||||
OPTION_WELCOME_PAGE_DISPLAY_ALWAYS = "Всегда"
|
||||
HTML_ALERT_PREMIUM = "Эти функции доступны для <strong><a href=\"#/licensing\">премиум</a></strong> подписчиков."
|
||||
|
||||
[TAB_CONTACTS]
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Да"
|
||||
BUTTON_NO = "Не"
|
||||
|
|
|
|||
|
|
@ -238,6 +238,9 @@ BUTTON_MARK_AS_IMPORTANT = "Označit jako důležité"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (jen Plain Text)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Ano"
|
||||
BUTTON_NO = "Ne"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Als Wichtig markieren"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (nur bei unformatiertem Text)"
|
||||
BUTTON_REQUEST_DSN = "Übermittlungsstatus anfordern"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Ja"
|
||||
BUTTON_NO = "Nein"
|
||||
|
|
@ -705,4 +708,4 @@ NO_COOKIE_DESC = "Ihr Browser unterstützt Cookies nicht.
|
|||
Aktivieren Sie bitte die Cookie-Unterstützung in Ihrem Browser und versuchen Sie es erneut."
|
||||
BAD_BROWSER_TITLE = "Ihr Browser ist veraltet."
|
||||
BAD_BROWSER_DESC = "Um alle Funktionen dieser Anwendung nutzen zu können,
|
||||
sollten Sie einen der folgenden Browser herunterladen und installieren:"
|
||||
sollten Sie einen der folgenden Browser herunterladen und installieren:"
|
||||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Yes"
|
||||
BUTTON_NO = "No"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Yes"
|
||||
BUTTON_NO = "No"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Sí"
|
||||
BUTTON_NO = "No"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Marquer comme important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Texte non-formatté uniquement)"
|
||||
BUTTON_REQUEST_DSN = "Demander un accusé de réception"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Oui"
|
||||
BUTTON_NO = "Non"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Igen"
|
||||
BUTTON_NO = "Nem"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Yes"
|
||||
BUTTON_NO = "No"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Marca come importante"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Solo testo semplice)"
|
||||
BUTTON_REQUEST_DSN = "Richiedi conferma del ricevimento"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Si"
|
||||
BUTTON_NO = "No"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "はい"
|
||||
BUTTON_NO = "いいえ"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Yes"
|
||||
BUTTON_NO = "No"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Žymėti svarbiu"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Tik paprastas tekstas)"
|
||||
BUTTON_REQUEST_DSN = "Prašyti laiško gavimo pažymos"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Taip"
|
||||
BUTTON_NO = "Ne"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Yes"
|
||||
BUTTON_NO = "No"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Marker als belangrijk"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (allen bij Platte Tekst)"
|
||||
BUTTON_REQUEST_DSN = "Ontvangstbevestiging vragen"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Ja"
|
||||
BUTTON_NO = "Nee"
|
||||
|
|
|
|||
|
|
@ -238,6 +238,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Ja"
|
||||
BUTTON_NO = "Nei"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Oznacz jako ważną"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Tylko zwykły tekst)"
|
||||
BUTTON_REQUEST_DSN = "Żądaj potwierdzenia dostarczenia"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Tak"
|
||||
BUTTON_NO = "Nie"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Marcar como importante"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Somente Texto)"
|
||||
BUTTON_REQUEST_DSN = "Pedir recibo de entrega"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Sim"
|
||||
BUTTON_NO = "Não"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Marcar como importante"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (apenas texto simples)"
|
||||
BUTTON_REQUEST_DSN = "Pedir um recibo de entrega"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Sim"
|
||||
BUTTON_NO = "Não"
|
||||
|
|
|
|||
|
|
@ -238,6 +238,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Da"
|
||||
BUTTON_NO = "Nu"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Отметить как важное"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (только обычный текст)"
|
||||
BUTTON_REQUEST_DSN = "Запросить уведомление о доставке"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Да"
|
||||
BUTTON_NO = "Нет"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Áno"
|
||||
BUTTON_NO = "Nie"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Markera som viktigt"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Endast enkel text)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Ja"
|
||||
BUTTON_NO = "Nej"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Evet"
|
||||
BUTTON_NO = "Hayır"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "Так"
|
||||
BUTTON_NO = "Ні"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "是"
|
||||
BUTTON_NO = "否"
|
||||
|
|
|
|||
|
|
@ -239,6 +239,9 @@ BUTTON_MARK_AS_IMPORTANT = "Mark as important"
|
|||
BUTTON_OPEN_PGP = "OpenPGP (Plain Text Only)"
|
||||
BUTTON_REQUEST_DSN = "Request a delivery receipt"
|
||||
|
||||
[POPUPS_WELCOME_PAGE]
|
||||
BUTTON_CLOSE = "Close"
|
||||
|
||||
[POPUPS_ASK]
|
||||
BUTTON_YES = "是"
|
||||
BUTTON_NO = "否"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue