From fcbaef82d1fc7d86f769ce30cd36a00f03530c10 Mon Sep 17 00:00:00 2001 From: tosmers Date: Fri, 13 Feb 2015 20:43:25 +0000 Subject: [PATCH] =?UTF-8?q?[UPDATE]=20In=20der=20Klasse=20com/arsdigita/cm?= =?UTF-8?q?s/ui/category/CategoryBaseForm.java=20die=20FormProcessExceptio?= =?UTF-8?q?n=20in=20der=20Zeile=20126=20umgebaut.=20Entsprechenden=20Eintr?= =?UTF-8?q?ag=20in=20der=20Property=20um=20die=20franz=C3=A4sische=20?= =?UTF-8?q?=C3=9Cbersetzung=20erweitert.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.libreccm.org/ccm/trunk@3151 8810af33-2d31-482b-a856-94f89814c4df --- ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties | 3 ++- .../src/com/arsdigita/cms/ui/category/CategoryBaseForm.java | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties b/ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties index 3aee11b71..9dd902ee3 100755 --- a/ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties +++ b/ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties @@ -601,5 +601,6 @@ cms.ui.item_searchwidget.submit=item search FormSection submit cms.ui.workflow.task.approval_or_reject_required=Approval or rejection is required. cms.ui.type.name_not_unique=Ce type de contenu a d\u00e9ja un \u00e9l\u00e9ment avec le nom cms.ui.type.cancelled=Annul\u00e9 -cms.ui.role.name_not_unique=Ce type de contenu a d\u00e9ja un \u00e9l\u00e9ment avec le nom +cms.ui.role.name_not_unique=Il y a d\u00e9ja un r\u00f4le cms.ui.type.invalid=Invalide +cms.ui.category.name_not_unique=Il y a d\u00e9ja une cat\u00e9gorie avec le nom diff --git a/ccm-cms/src/com/arsdigita/cms/ui/category/CategoryBaseForm.java b/ccm-cms/src/com/arsdigita/cms/ui/category/CategoryBaseForm.java index 74ba7d9ec..fc7a4b60b 100755 --- a/ccm-cms/src/com/arsdigita/cms/ui/category/CategoryBaseForm.java +++ b/ccm-cms/src/com/arsdigita/cms/ui/category/CategoryBaseForm.java @@ -123,7 +123,7 @@ class CategoryBaseForm extends CMSForm { if (child.getName().equalsIgnoreCase(title)) { throw new FormProcessException - (lz("cms.ui.category.name_not_unique")); + (GlobalizationUtil.globalize("cms.ui.category.name_not_unique")); } } }