2013-09-20 Sergio Martin <sergio.martin@artica.es>

* operation/agentes/estado_monitores.php
	godmode/agentes/module_manager.php: Fixing translation
	of adopted modules and reestructure translations calls
	to do the translations more efecctively for bug #2375

	* general/login_help_dialog.php: Fix size
	of the login help dialog



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8788 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2013-09-20 09:52:58 +00:00
parent 258629ad0b
commit 28466ad057
4 changed files with 18 additions and 8 deletions

View File

@ -1,3 +1,13 @@
2013-09-20 Sergio Martin <sergio.martin@artica.es>
* operation/agentes/estado_monitores.php
godmode/agentes/module_manager.php: Fixing translation
of adopted modules and reestructure translations calls
to do the translations more efecctively for bug #2375
* general/login_help_dialog.php: Fix size
of the login help dialog
2013-09-19 Sergio Martin <sergio.martin@artica.es>
* include/functions_groups.php

View File

@ -106,8 +106,8 @@ $(document).ready (function () {
resizable: true,
draggable: true,
modal: true,
height: 420,
width: 600,
height: 450,
width: 630,
overlay: {
opacity: 0.5,
background: "black"

View File

@ -592,7 +592,7 @@ foreach ($modules as $module) {
if ($linked) {
if ($adopt) {
$img = 'images/policies_brick.png';
$title = __('(Adopt) ') . $policyInfo['name_policy'];
$title = '(' . __('Adopted') . ') ' . $policyInfo['name_policy'];
}
else {
$img = 'images/policies.png';
@ -602,11 +602,11 @@ foreach ($modules as $module) {
else {
if ($adopt) {
$img = 'images/policies_not_brick.png';
$title = __('(Adopt) (Unlinked) ') . $policyInfo['name_policy'];
$title = '(' . __('Unlinked') . ') (' . __('Adopted') . ') ' . $policyInfo['name_policy'];
}
else {
$img = 'images/unlinkpolicy.png';
$title = __('(Unlinked) ') . $policyInfo['name_policy'];
$title = '(' . __('Unlinked') . ') ' . $policyInfo['name_policy'];
}
}

View File

@ -366,7 +366,7 @@ foreach ($modules as $module) {
if ($linked) {
if ($adopt) {
$img = 'images/policies_brick.png';
$title = __('(Adopt) ') . $name_policy;
$title = '(' . __('Adopted') . ') ' . $name_policy;
}
else {
$img = 'images/policies.png';
@ -376,11 +376,11 @@ foreach ($modules as $module) {
else {
if ($adopt) {
$img = 'images/policies_not_brick.png';
$title = __('(Unlinked) (Adopt) ') . $name_policy;
$title = '(' . __('Unlinked') . ') (' . __('Adopted') . ') ' . $name_policy;
}
else {
$img = 'images/unlinkpolicy.png';
$title = __('(Unlinked) ') . $name_policy;
$title = '(' . __('Unlinked') . ') ' . $name_policy;
}
}