Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix #834 - Wrong message on group deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Feb 13, 2015
1 parent 3fe3764 commit e95d7fc
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 1 deletion.
Expand Up @@ -1553,7 +1553,7 @@ public function switchAction($action, $httpVars, $fileVars)
$gName = basename($groupPath);
AuthService::deleteGroup($basePath, $gName);
AJXP_XMLWriter::header();
AJXP_XMLWriter::sendMessage($mess["ajxp_conf.125"], null);
AJXP_XMLWriter::sendMessage($mess["ajxp_conf.128"], null);
AJXP_XMLWriter::reloadDataNode();
AJXP_XMLWriter::close();
} else {
Expand Down
1 change: 1 addition & 0 deletions core/src/plugins/access.ajxp_conf/i18n/de.php
Expand Up @@ -150,4 +150,5 @@
"125" => "Alias",
"126" => "Sind Sie sicher, dass Sie die ausgewählten Elemente löschen möchten?",
"127" => "Achtung, bitte verwenden Sie keine Sonderzeichen. Benutzer würde mit Login-ID '%s' erstellt werden.",
"128" => "Successfully deleted group",
);
1 change: 1 addition & 0 deletions core/src/plugins/access.ajxp_conf/i18n/en.php
Expand Up @@ -148,4 +148,5 @@
"125" => "Alias",
"126" => "Are you sure that you want to delete the selected element(s)?",
"127" => "Warning, please do not use special characters, user would be created with login id '%s'",
"128" => "Successfully deleted group",
);
1 change: 1 addition & 0 deletions core/src/plugins/access.ajxp_conf/i18n/es.php
Expand Up @@ -148,4 +148,5 @@
"125" => "Alias",
"126" => "Are you sure that you want to delete the selected element(s)?",
"127" => "Warning, please do not use special characters, user would be created with login id '%s'",
"128" => "Successfully deleted group",
);
1 change: 1 addition & 0 deletions core/src/plugins/access.ajxp_conf/i18n/fi.php
Expand Up @@ -151,5 +151,6 @@
"125" => "Alias",
"126" => "Are you sure that you want to delete the selected element(s)?",
"127" => "Warning, please do not use special characters, user would be created with login id '%s'",
"128" => "Successfully deleted group",
/* END SENTENCE */
);
1 change: 1 addition & 0 deletions core/src/plugins/access.ajxp_conf/i18n/fr.php
Expand Up @@ -148,4 +148,5 @@
"125" => "Alias",
"126" => "Voulez-vous vraiment supprimer les éléments sélectionnés?",
"127" => "Attention, veuillez ne pas utiliser de caractères spéciaux, l'utilisateur serait créé avec l'identifiant '%s'",
"128" => "Le groupe a été supprimé",
);
1 change: 1 addition & 0 deletions core/src/plugins/access.ajxp_conf/i18n/hu.php
Expand Up @@ -150,5 +150,6 @@
"125" => "Alias",
"126" => "Are you sure that you want to delete the selected element(s)?",
"127" => "Warning, please do not use special characters, user would be created with login id '%s'",
"128" => "Successfully deleted group",
/* END SENTENCE */
);
1 change: 1 addition & 0 deletions core/src/plugins/access.ajxp_conf/i18n/it.php
Expand Up @@ -148,4 +148,5 @@
"114" => "Applicato a",
"115" => "Schema",
"127" => "Warning, please do not use special characters, user would be created with login id '%s'",
"128" => "Successfully deleted group",
);
1 change: 1 addition & 0 deletions core/src/plugins/access.ajxp_conf/i18n/nl.php
Expand Up @@ -148,5 +148,6 @@
"125" => "Alias",
"126" => "Weet je zeker dat je de / het geselecteerde element(en) wilt verwijderen?",
"127" => "Waarschuwing, gebruik geen speciale karakters, gebruiker wordt aangemaakt met login ID '%s'",
"128" => "Successfully deleted group",
);

1 change: 1 addition & 0 deletions core/src/plugins/access.ajxp_conf/i18n/pt.php
Expand Up @@ -148,4 +148,5 @@
"125" => "Alias",
"126" => "Are you sure that you want to delete the selected element(s)?",
"127" => "Warning, please do not use special characters, user would be created with login id '%s'",
"128" => "Successfully deleted group",
);
2 changes: 2 additions & 0 deletions core/src/plugins/access.ajxp_conf/i18n/ru.php
Expand Up @@ -147,4 +147,6 @@
"124" => "Источник",
"125" => "Псевдоним",
"126" => "Уверены, что хотите удалить выделенный(е) элемент(ы)?",
"127" => "Warning, please do not use special characters, user would be created with login id '%s'",
"128" => "Successfully deleted group",
);
1 change: 1 addition & 0 deletions core/src/plugins/access.ajxp_conf/i18n/si.php
Expand Up @@ -149,4 +149,5 @@
"125" => "Alias",
"126" => "Are you sure that you want to delete the selected element(s)?",
"127" => "Warning, please do not use special characters, user would be created with login id '%s'",
"128" => "Successfully deleted group",
);

0 comments on commit e95d7fc

Please sign in to comment.