svn commit: r1001766 [7/8] - in /ofbiz/branches/jquery: ./ applications/accounting/script/org/ofbiz/accounting/ledger/ applications/content/ applications/content/data/ applications/order/script/org/ofbiz/order/customer/ applications/order/webapp/orderm...

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1001766 [7/8] - in /ofbiz/branches/jquery: ./ applications/accounting/script/org/ofbiz/accounting/ledger/ applications/content/ applications/content/data/ applications/order/script/org/ofbiz/order/customer/ applications/order/webapp/orderm...

jleroux@apache.org
Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/lib/jquery.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/lib/jquery.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/lib/jquery.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/lib/jquery.metadata.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/lib/jquery.metadata.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/lib/jquery.metadata.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/lib/jquery.metadata.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,122 @@
+/*
+ * Metadata - jQuery plugin for parsing metadata from elements
+ *
+ * Copyright (c) 2006 John Resig, Yehuda Katz, J�örn Zaefferer, Paul McLanahan
+ *
+ * Dual licensed under the MIT and GPL licenses:
+ *   http://www.opensource.org/licenses/mit-license.php
+ *   http://www.gnu.org/licenses/gpl.html
+ *
+ * Revision: $Id$
+ *
+ */
+
+/**
+ * Sets the type of metadata to use. Metadata is encoded in JSON, and each property
+ * in the JSON will become a property of the element itself.
+ *
+ * There are three supported types of metadata storage:
+ *
+ *   attr:  Inside an attribute. The name parameter indicates *which* attribute.
+ *          
+ *   class: Inside the class attribute, wrapped in curly braces: { }
+ *  
+ *   elem:  Inside a child element (e.g. a script tag). The
+ *          name parameter indicates *which* element.
+ *          
+ * The metadata for an element is loaded the first time the element is accessed via jQuery.
+ *
+ * As a result, you can define the metadata type, use $(expr) to load the metadata into the elements
+ * matched by expr, then redefine the metadata type and run another $(expr) for other elements.
+ *
+ * @name $.metadata.setType
+ *
+ * @example <p id="one" class="some_class {item_id: 1, item_label: 'Label'}">This is a p</p>
+ * @before $.metadata.setType("class")
+ * @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
+ * @desc Reads metadata from the class attribute
+ *
+ * @example <p id="one" class="some_class" data="{item_id: 1, item_label: 'Label'}">This is a p</p>
+ * @before $.metadata.setType("attr", "data")
+ * @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
+ * @desc Reads metadata from a "data" attribute
+ *
+ * @example <p id="one" class="some_class"><script>{item_id: 1, item_label: 'Label'}</script>This is a p</p>
+ * @before $.metadata.setType("elem", "script")
+ * @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
+ * @desc Reads metadata from a nested script element
+ *
+ * @param String type The encoding type
+ * @param String name The name of the attribute to be used to get metadata (optional)
+ * @cat Plugins/Metadata
+ * @descr Sets the type of encoding to be used when loading metadata for the first time
+ * @type undefined
+ * @see metadata()
+ */
+
+(function($) {
+
+$.extend({
+ metadata : {
+ defaults : {
+ type: 'class',
+ name: 'metadata',
+ cre: /({.*})/,
+ single: 'metadata'
+ },
+ setType: function( type, name ){
+ this.defaults.type = type;
+ this.defaults.name = name;
+ },
+ get: function( elem, opts ){
+ var settings = $.extend({},this.defaults,opts);
+ // check for empty string in single property
+ if ( !settings.single.length ) settings.single = 'metadata';
+
+ var data = $.data(elem, settings.single);
+ // returned cached data if it already exists
+ if ( data ) return data;
+
+ data = "{}";
+
+ if ( settings.type == "class" ) {
+ var m = settings.cre.exec( elem.className );
+ if ( m )
+ data = m[1];
+ } else if ( settings.type == "elem" ) {
+ if( !elem.getElementsByTagName )
+ return undefined;
+ var e = elem.getElementsByTagName(settings.name);
+ if ( e.length )
+ data = $.trim(e[0].innerHTML);
+ } else if ( elem.getAttribute != undefined ) {
+ var attr = elem.getAttribute( settings.name );
+ if ( attr )
+ data = attr;
+ }
+
+ if ( data.indexOf( '{' ) <0 )
+ data = "{" + data + "}";
+
+ data = eval("(" + data + ")");
+
+ $.data( elem, settings.single, data );
+ return data;
+ }
+ }
+});
+
+/**
+ * Returns the metadata object for the first member of the jQuery object.
+ *
+ * @name metadata
+ * @descr Returns element's metadata object
+ * @param Object opts An object contianing settings to override the defaults
+ * @type jQuery
+ * @cat Plugins/Metadata
+ */
+$.fn.metadata = function( opts ){
+ return $.metadata.get( this[0], opts );
+};
+
+})(jQuery);
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/lib/jquery.metadata.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/lib/jquery.metadata.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/lib/jquery.metadata.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ar.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ar.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ar.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ar.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,24 @@
+/*
+ * Translated default messages for the jQuery validation plugin into arabic.
+ * Locale: AR
+ */
+jQuery.extend(jQuery.validator.messages, {
+        required: "هذا الحقل إلزامي",
+        remote: "يرجى تصحيح هذا الحقل للمتابعة",
+        email: "رجاء إدخال عنوان بريد إلكتروني صحيح",
+        url: "رجاء إدخال عنوان موقع إلكتروني صحيح",
+        date: "رجاء إدخال تاريخ صحيح",
+        dateISO: "رجاء إدخال تاريخ صحيح (ISO)",
+        number: "رجاء إدخال عدد بطريقة صحيحة",
+        digits: "رجاء إدخال أرقام فقط",
+        creditcard: "رجاء إدخال رقم بطاقة ائتمان صحيح",
+        equalTo: "رجاء إدخال نفس القيمة",
+        accept: "رجاء إدخال ملف بامتداد موافق عليه",
+        maxlength: jQuery.validator.format("الحد الأقصى لعدد الحروف هو {0}"),
+        minlength: jQuery.validator.format("الحد الأدنى لعدد الحروف هو {0}"),
+        rangelength: jQuery.validator.format("عدد الحروف يجب أن يكون بين {0} و {1}"),
+        range: jQuery.validator.format("رجاء إدخال عدد قيمته بين {0} و {1}"),
+        max: jQuery.validator.format("رجاء إدخال عدد أقل من أو يساوي (0}"),
+        min: jQuery.validator.format("رجاء إدخال عدد أكبر من أو يساوي (0}")
+});
+

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ar.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ar.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ar.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_bg.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_bg.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_bg.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_bg.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: BG
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: "Полето е задължително.",
+ remote: "Моля, въведете правилната стойност.",
+ email: "Моля, въведете валиден email.",
+ url: "Моля, въведете валидно URL.",
+ date: "Моля, въведете валидна дата.",
+ dateISO: "Моля, въведете валидна дата (ISO).",
+ number: "Моля, въведете валиден номер.",
+ digits: "Моля, въведете само цифри",
+ creditcard: "Моля, въведете валиден номер на кредитна карта.",
+ equalTo: "Моля, въведете същата стойност отново.",
+ accept: "Моля, въведете стойност с валидно разширение.",
+ maxlength: $.validator.format("Моля, въведете повече от {0} символа."),
+ minlength: $.validator.format("Моля, въведете поне {0} символа."),
+ rangelength: $.validator.format("Моля, въведете стойност с дължина между {0} и {1} символа."),
+ range: $.validator.format("Моля, въведете стойност между {0} и {1}."),
+ max: $.validator.format("Моля, въведете стойност по-малка или равна на {0}."),
+ min: $.validator.format("Моля, въведете стойност по-голяма или равна на {0}.")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_bg.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_bg.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_bg.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cn.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cn.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cn.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cn.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: CN
+ */
+jQuery.extend(jQuery.validator.messages, {
+        required: "必选字段",
+ remote: "请修正该字段",
+ email: "请输入正确格式的电子邮件",
+ url: "请输入合法的网址",
+ date: "请输入合法的日期",
+ dateISO: "请输入合法的日期 (ISO).",
+ number: "请输入合法的数字",
+ digits: "只能输入整数",
+ creditcard: "请输入合法的信用卡号",
+ equalTo: "请再次输入相同的值",
+ accept: "请输入拥有合法后缀名的字符串",
+ maxlength: jQuery.validator.format("请输入一个长度最多是 {0} 的字符串"),
+ minlength: jQuery.validator.format("请输入一个长度最少是 {0} 的字符串"),
+ rangelength: jQuery.validator.format("请输入一个长度介于 {0} 和 {1} 之间的字符串"),
+ range: jQuery.validator.format("请输入一个介于 {0} 和 {1} 之间的值"),
+ max: jQuery.validator.format("请输入一个最大为 {0} 的值"),
+ min: jQuery.validator.format("请输入一个最小为 {0} 的值")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cn.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cn.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cn.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cs.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cs.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cs.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cs.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: CS
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: "Tento údaj je povinný.",
+ remote: "Prosím, opravte tento údaj.",
+ email: "Prosím, zadejte platný e-mail.",
+ url: "Prosím, zadejte platné URL.",
+ date: "Prosím, zadejte platné datum.",
+ dateISO: "Prosím, zadejte platné datum (ISO).",
+ number: "Prosím, zadejte číslo.",
+ digits: "Prosím, zadávejte pouze číslice.",
+ creditcard: "Prosím, zadejte číslo kreditní karty.",
+ equalTo: "Prosím, zadejte znovu stejnou hodnotu.",
+ accept: "Prosím, zadejte soubor se správnou příponou.",
+ maxlength: jQuery.validator.format("Prosím, zadejte nejvíce {0} znaků."),
+ minlength: jQuery.validator.format("Prosím, zadejte nejméně {0} znaků."),
+ rangelength: jQuery.validator.format("Prosím, zadejte od {0} do {1} znaků."),
+ range: jQuery.validator.format("Prosím, zadejte hodnotu od {0} do {1}."),
+ max: jQuery.validator.format("Prosím, zadejte hodnotu menší nebo rovnu {0}."),
+ min: jQuery.validator.format("Prosím, zadejte hodnotu větší nebo rovnu {0}.")
+});

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cs.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cs.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_cs.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_da.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_da.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_da.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_da.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,20 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: DA
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: "Dette felt er påkrævet.",
+ maxlength: jQuery.validator.format("Indtast højst {0} tegn."),
+ minlength: jQuery.validator.format("Indtast mindst {0} tegn."),
+ rangelength: jQuery.validator.format("Indtast mindst {0} og højst {1} tegn."),
+ email: "Indtast en gyldig email-adresse.",
+ url: "Indtast en gyldig URL.",
+ date: "Indtast en gyldig dato.",
+ number: "Indtast et tal.",
+ digits: "Indtast kun cifre.",
+ equalTo: "Indtast den samme værdi igen.",
+ range: jQuery.validator.format("Angiv en værdi mellem {0} og {1}."),
+ max: jQuery.validator.format("Angiv en værdi der højst er {0}."),
+ min: jQuery.validator.format("Angiv en værdi der mindst er {0}."),
+ creditcard: "Indtast et gyldigt kreditkortnummer."
+});

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_da.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_da.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_da.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_de.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_de.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_de.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_de.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,20 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: DE
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: "Dieses Feld ist ein Pflichtfeld.",
+ maxlength: jQuery.validator.format("Geben Sie bitte maximal {0} Zeichen ein."),
+ minlength: jQuery.validator.format("Geben Sie bitte mindestens {0} Zeichen ein."),
+ rangelength: jQuery.validator.format("Geben Sie bitte mindestens {0} und maximal {1} Zeichen ein."),
+ email: "Geben Sie bitte eine gültige E-Mail Adresse ein.",
+ url: "Geben Sie bitte eine gültige URL ein.",
+ date: "Bitte geben Sie ein gültiges Datum ein.",
+ number: "Geben Sie bitte eine Nummer ein.",
+ digits: "Geben Sie bitte nur Ziffern ein.",
+ equalTo: "Bitte denselben Wert wiederholen.",
+ range: jQuery.validator.format("Geben Sie bitten einen Wert zwischen {0} und {1}."),
+ max: jQuery.validator.format("Geben Sie bitte einen Wert kleiner oder gleich {0} ein."),
+ min: jQuery.validator.format("Geben Sie bitte einen Wert größer oder gleich {0} ein."),
+ creditcard: "Geben Sie bitte ein gültige Kreditkarten-Nummer ein."
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_de.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_de.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_de.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_el.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_el.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_el.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_el.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,24 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: EL
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: "Αυτό το πεδίο είναι υποχρεωτικό.",
+ remote: "Παρακαλώ διορθώστε αυτό το πεδίο.",
+ email: "Παρακαλώ εισάγετε μια έγκυρη διεύθυνση email.",
+ url: "Παρακαλώ εισάγετε ένα έγκυρο URL.",
+ date: "Παρακαλώ εισάγετε μια έγκυρη ημερομηνία.",
+ dateISO: "Παρακαλώ εισάγετε μια έγκυρη ημερομηνία (ISO).",
+ number: "Παρακαλώ εισάγετε έναν έγκυρο αριθμό.",
+ digits: "Παρακαλώ εισάγετε μόνο αριθμητικά ψηφία.",
+ creditcard: "Παρακαλώ εισάγετε έναν έγκυρο αριθμό πιστωτικής κάρτας.",
+ equalTo: "Παρακαλώ εισάγετε την ίδια τιμή ξανά.",
+ accept: "Παρακαλώ εισάγετε μια τιμή με έγκυρη επέκταση αρχείου.",
+ maxlength: $.validator.format("Παρακαλώ εισάγετε μέχρι και {0} χαρακτήρες."),
+ minlength: $.validator.format("Παρακαλώ εισάγετε τουλάχιστον {0} χαρακτήρες."),
+ rangelength: $.validator.format("Παρακαλώ εισάγετε μια τιμή με μήκος μεταξύ {0} και {1} χαρακτήρων."),
+ range: $.validator.format("Παρακαλώ εισάγετε μια τιμή μεταξύ {0} και {1}."),
+ max: $.validator.format("Παρακαλώ εισάγετε μια τιμή μικρότερη ή ίση του {0}."),
+ min: $.validator.format("Παρακαλώ εισάγετε μια τιμή μεγαλύτερη ή ίση του {0}.")
+});
+

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_el.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_el.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_el.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_es.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_es.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_es.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_es.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: ES
+ */
+jQuery.extend(jQuery.validator.messages, {
+  required: "Este campo es obligatorio.",
+  remote: "Por favor, rellena este campo.",
+  email: "Por favor, escribe una dirección de correo válida",
+  url: "Por favor, escribe una URL válida.",
+  date: "Por favor, escribe una fecha válida.",
+  dateISO: "Por favor, escribe una fecha (ISO) válida.",
+  number: "Por favor, escribe un número entero válido.",
+  digits: "Por favor, escribe sólo dígitos.",
+  creditcard: "Por favor, escribe un número de tarjeta válido.",
+  equalTo: "Por favor, escribe el mismo valor de nuevo.",
+  accept: "Por favor, escribe un valor con una extensión aceptada.",
+  maxlength: jQuery.validator.format("Por favor, no escribas más de {0} caracteres."),
+  minlength: jQuery.validator.format("Por favor, no escribas menos de {0} caracteres."),
+  rangelength: jQuery.validator.format("Por favor, escribe un valor entre {0} y {1} caracteres."),
+  range: jQuery.validator.format("Por favor, escribe un valor entre {0} y {1}."),
+  max: jQuery.validator.format("Por favor, escribe un valor menor o igual a {0}."),
+  min: jQuery.validator.format("Por favor, escribe un valor mayor o igual a {0}.")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_es.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_es.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_es.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fa.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fa.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fa.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fa.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: FA
+ */
+jQuery.extend(jQuery.validator.messages, {
+       required: "تکمیل این فیلد اجباری است.",
+       remote: "لطفا این فیلد را تصحیح کنید.",
+       email: ".لطفا یک ایمیل صحیح وارد کنید",
+       url: "لطفا آدرس صحیح وارد کنید.",
+       date: "لطفا یک تاریخ صحیح وارد کنید",
+       dateISO: "لطفا تاریخ صحیح وارد کنید (ISO).",
+       number: "لطفا عدد صحیح وارد کنید.",
+       digits: "لطفا تنها رقم وارد کنید",
+       creditcard: "لطفا کریدیت کارت صحیح وارد کنید.",
+       equalTo: "لطفا مقدار برابری وارد کنید",
+       accept: "لطفا مقداری وارد کنید که ",
+       maxlength: jQuery.validator.format("لطفا بیشتر از {0} حرف وارد نکنید."),
+       minlength: jQuery.validator.format("لطفا کمتر از {0} حرف وارد نکنید."),
+       rangelength: jQuery.validator.format("لطفا مقداری بین {0} تا {1} حرف وارد کنید."),
+       range: jQuery.validator.format("لطفا مقداری بین {0} تا {1} حرف وارد کنید."),
+       max: jQuery.validator.format("لطفا مقداری کمتر از {0} حرف وارد کنید."),
+       min: jQuery.validator.format("لطفا مقداری بیشتر از {0} حرف وارد کنید.")
+});

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fa.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fa.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fa.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fi.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fi.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fi.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fi.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,21 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: FI
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: "T&auml;m&auml; kentt&auml; on pakollinen.",
+ maxlength: jQuery.validator.format("Voit sy&ouml;tt&auml;&auml; enint&auml;&auml;n {0} merkki&auml;."),
+ minlength: jQuery.validator.format("V&auml;hint&auml;&auml;n {0} merkki&auml;."),
+ rangelength: jQuery.validator.format("Sy&ouml;t&auml; v&auml;hint&auml;&auml;n {0} ja enint&auml;&auml;n {1} merkki&auml;."),
+ email: "Sy&ouml:t&auml; oikea s&auml;hk&ouml;postiosoite.",
+ url: "Sy&ouml;t&auml; oikea URL osoite.",
+ date: "Sy&ouml;t&auml; oike p&auml;iv&auml;m&auml;&auml;r&auml;.",
+ dateISO: "Sy&ouml;t&auml; oike p&auml;iv&auml;m&auml;&auml;r&auml; (VVVV-MM-DD).",
+ number: "Sy&ouml;t&auml; numero.",
+ digits: "Sy&ouml;t&auml; pelk&auml;st&auml;&auml;n numeroita.",
+ equalTo: "Sy&ouml;t&auml; sama arvo uudestaan.",
+ range: jQuery.validator.format("Sy&ouml;t&auml; arvo {0} ja {1} v&auml;lilt&auml;."),
+ max: jQuery.validator.format("Sy&ouml;t&auml; arvo joka on yht&auml; suuri tai suurempi kuin {0}."),
+ min: jQuery.validator.format("Sy&ouml;t&auml; arvo joka on pienempi tai yht&auml; suuri kuin {0}."),
+ creditcard: "Sy&ouml;t&auml; voimassa oleva luottokorttinumero."
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fi.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fi.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fi.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fr.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fr.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fr.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fr.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: FR
+ */
+jQuery.extend(jQuery.validator.messages, {
+        required: "Ce champ est requis.",
+        remote: "Veuillez remplir ce champ pour continuer.",
+        email: "Veuillez entrer une adresse email valide.",
+        url: "Veuillez entrer une URL valide.",
+        date: "Veuillez entrer une date valide.",
+        dateISO: "Veuillez entrer une date valide (ISO).",
+        number: "Veuillez entrer un nombre valide.",
+        digits: "Veuillez entrer (seulement) une valeur numérique.",
+        creditcard: "Veuillez entrer un numéro de carte de crédit valide.",
+        equalTo: "Veuillez entrer une nouvelle fois la même valeur.",
+        accept: "Veuillez entrer une valeur avec une extension valide.",
+        maxlength: jQuery.validator.format("Veuillez ne pas entrer plus de {0} caractères."),
+        minlength: jQuery.validator.format("Veuillez entrer au moins {0} caractères."),
+        rangelength: jQuery.validator.format("Veuillez entrer entre {0} et {1} caractères."),
+        range: jQuery.validator.format("Veuillez entrer une valeur entre {0} et {1}."),
+        max: jQuery.validator.format("Veuillez entrer une valeur inférieure ou égale à {0}."),
+        min: jQuery.validator.format("Veuillez entrer une valeur supérieure ou égale à {0}.")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fr.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fr.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_fr.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_he.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_he.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_he.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_he.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: HE
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: ".השדה הזה הינו שדה חובה",
+ remote: "נא לתקן שדה זה.",
+ email: "נא למלא כתובת דוא\"ל חוקית",
+ url: "נא למלא כתובת אינטרנט חוקית.",
+ date: "נא למלא תאריך חוקי",
+ dateISO: "נא למלא תאריך חוקי (ISO).",
+ number: "נא למלא מספר.",
+ digits: ".נא למלא רק מספרים",
+ creditcard: "נא למלא מספר כרטיס אשראי חוקי.",
+ equalTo: "נא למלא את אותו ערך שוב.",
+ accept: "נא למלא ערך עם סיומת חוקית.",
+ maxlength: jQuery.validator.format(".נא לא למלא יותר מ- {0} תווים"),
+ minlength: jQuery.validator.format("נא למלא לפחות {0} תווים."),
+ rangelength: jQuery.validator.format("נא למלא ערך בין {0} ל- {1} תווים."),
+ range: jQuery.validator.format("נא למלא ערך בין {0} ל- {1}."),
+ max: jQuery.validator.format("נא למלא ערך קטן או שווה ל- {0}."),
+ min: jQuery.validator.format("נא למלא ערך גדול או שווה ל- {0}.")
+});

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_he.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_he.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_he.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_hu.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_hu.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_hu.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_hu.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,20 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: HU
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: "Kötelező megadni.",
+ maxlength: jQuery.validator.format("Legfeljebb {0} karakter hosszú legyen."),
+ minlength: jQuery.validator.format("Legalább {0} karakter hosszú legyen."),
+ rangelength: jQuery.validator.format("Legalább {0} és legfeljebb {1} karakter hosszú legyen."),
+ email: "Érvényes e-mail címnek kell lennie.",
+ url: "Érvényes URL-nek kell lennie.",
+ date: "Dátumnak kell lennie.",
+ number: "Számnak kell lennie.",
+ digits: "Csak számjegyek lehetnek.",
+ equalTo: "Meg kell egyeznie a két értéknek.",
+ range: jQuery.validator.format("{0} és {1} közé kell esnie."),
+ max: jQuery.validator.format("Nem lehet nagyobb, mint {0}."),
+ min: jQuery.validator.format("Nem lehet kisebb, mint {0}."),
+ creditcard: "Érvényes hitelkártyaszámnak kell lennie."
+});

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_hu.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_hu.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_hu.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_it.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_it.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_it.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_it.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: IT
+ */
+jQuery.extend(jQuery.validator.messages, {
+       required: "Campo obbligatorio.",
+       remote: "Controlla questo campo.",
+       email: "Inserisci un indirizzo email valido.",
+       url: "Inserisci un indirizzo web valido.",
+       date: "Inserisci una data valida.",
+       dateISO: "Inserisci una data valida (ISO).",
+       number: "Inserisci un numero valido.",
+       digits: "Inserisci solo numeri.",
+       creditcard: "Inserisci un numero di carta di credito valido.",
+       equalTo: "Il valore non corrisponde.",
+       accept: "Inserisci un valore con un&apos;estensione valida.",
+       maxlength: jQuery.validator.format("Non inserire pi&ugrave; di {0} caratteri."),
+       minlength: jQuery.validator.format("Inserisci almeno {0} caratteri."),
+       rangelength: jQuery.validator.format("Inserisci un valore compreso tra {0} e {1} caratteri."),
+       range: jQuery.validator.format("Inserisci un valore compreso tra {0} e {1}."),
+       max: jQuery.validator.format("Inserisci un valore minore o uguale a {0}."),
+       min: jQuery.validator.format("Inserisci un valore maggiore o uguale a {0}.")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_it.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_it.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_it.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_kk.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_kk.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_kk.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_kk.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: KK
+ */
+jQuery.extend(jQuery.validator.messages, {
+        required: "Бұл өрісті міндетті түрде толтырыңыз.",
+        remote: "Дұрыс мағына енгізуіңізді сұраймыз.",
+        email: "Нақты электронды поштаңызды енгізуіңізді сұраймыз.",
+        url: "Нақты URL-ды енгізуіңізді сұраймыз.",
+        date: "Нақты URL-ды енгізуіңізді сұраймыз.",
+        dateISO: "Нақты ISO форматымен сәйкес датасын енгізуіңізді сұраймыз.",
+        number: "Күнді енгізуіңізді сұраймыз.",
+        digits: "Тек қана сандарды енгізуіңізді сұраймыз.",
+        creditcard: "Несие картасының нөмірін дұрыс енгізуіңізді сұраймыз.",
+        equalTo: "Осы мәнді қайта енгізуіңізді сұраймыз.",
+        accept: "Файлдың кеңейтуін дұрыс таңдаңыз.",
+        maxlength: jQuery.format("Ұзындығы {0} символдан  ÐºÓ©Ñ€ болмасын."),
+        minlength: jQuery.format("Ұзындығы {0} символдан аз болмасын."),
+        rangelength: jQuery.format("Ұзындығы {0}-{1} дейін мән енгізуіңізді сұраймыз."),
+        range: jQuery.format("Пожалуйста, введите число от {0} до {1}. - {0} - {1} санын енгізуіңізді сұраймыз."),
+        max: jQuery.format("{0} аз немесе тең санын енгізуіңіді сұраймыз."),
+        min: jQuery.format("{0} көп немесе тең санын енгізуіңізді сұраймыз.")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_kk.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_kk.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_kk.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lt.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lt.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lt.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lt.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin in lithuanian.
+ * Locale: LT
+ */
+jQuery.extend(jQuery.validator.messages, {
+       required: "Å is laukas yra privalomas.",
+       remote: "PraÅ¡au pataisyti šį lauką.",
+       email: "PraÅ¡au įvesti teisingą elektroninio paÅ¡to adresą.",
+       url: "PraÅ¡au įvesti teisingą URL.",
+       date: "PraÅ¡au įvesti teisingą datą.",
+       dateISO: "PraÅ¡au įvesti teisingą datą (ISO).",
+       number: "PraÅ¡au įvesti teisingą skaičių.",
+       digits: "PraÅ¡au naudoti tik skaitmenis.",
+       creditcard: "PraÅ¡au įvesti teisingą kreditinės kortelės numerį.",
+       equalTo: "PraÅ¡au įvestį tą pačią reikÅ¡mę dar kartą.",
+       accept: "PraÅ¡au įvesti reikÅ¡mę su teisingu plėtiniu.",
+       maxlength: $.format("PraÅ¡au įvesti ne daugiau kaip {0} simbolių."),
+       minlength: $.format("PraÅ¡au įvesti bent {0} simbolius."),
+       rangelength: $.format("PraÅ¡au įvesti reikÅ¡mes, kurių ilgis nuo {0} iki {1} simbolių."),
+       range: $.format("PraÅ¡au įvesti reikÅ¡mę intervale nuo {0} iki {1}."),
+       max: $.format("PraÅ¡au įvesti reikÅ¡mę mažesnę arba lygią {0}."),
+       min: $.format("PraÅ¡au įvesti reikÅ¡mę didesnę arba lygią {0}.")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lt.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lt.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lt.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lv.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lv.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lv.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lv.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: LV
+ */
+jQuery.extend(jQuery.validator.messages, {
+        required: "Å is lauks ir obligāts.",
+        remote: "LÅ«dzu, pārbaudiet Å¡o lauku.",
+        email: "LÅ«dzu, ievadiet derÄ«gu e-pasta adresi.",
+        url: "LÅ«dzu, ievadiet derÄ«gu URL adresi.",
+        date: "LÅ«dzu, ievadiet derÄ«gu datumu.",
+        dateISO: "LÅ«dzu, ievadiet derÄ«gu datumu (ISO).",
+        number: "LÅ«dzu, ievadiet derÄ«gu numuru.",
+        digits: "LÅ«dzu, ievadiet tikai ciparus.",
+        creditcard: "LÅ«dzu, ievadiet derÄ«gu kredÄ«tkartes numuru.",
+        equalTo: "LÅ«dzu, ievadiet to paÅ¡u vēlreiz.",
+        accept: "LÅ«dzu, ievadiet vērtÄ«bu ar derÄ«gu paplaÅ¡inājumu.",
+        maxlength: jQuery.validator.format("LÅ«dzu, ievadiet ne vairāk kā {0} rakstzÄ«mes."),
+        minlength: jQuery.validator.format("LÅ«dzu, ievadiet vismaz {0} rakstzÄ«mes."),
+        rangelength: jQuery.validator.format("LÅ«dzu ievadiet {0} lÄ«dz {1} rakstzÄ«mes."),
+        range: jQuery.validator.format("LÅ«dzu, ievadiet skaitli no {0} lÄ«dz {1}."),
+        max: jQuery.validator.format("LÅ«dzu, ievadiet skaitli, kurÅ¡ ir mazāks vai vienāds ar {0}."),
+        min: jQuery.validator.format("LÅ«dzu, ievadiet skaitli, kurÅ¡ ir lielāks vai vienāds ar {0}.")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lv.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lv.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_lv.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_nl.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_nl.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_nl.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_nl.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: NL
+ */
+jQuery.extend(jQuery.validator.messages, {
+        required: "Dit is een verplicht veld.",
+        remote: "Controleer dit veld.",
+        email: "Vul hier een geldig email adres in.",
+        url: "Vul hier een geldige URL in.",
+        date: "Vul hier een geldige datum in.",
+        dateISO: "Vul hier een geldige datum in (ISO).",
+        number: "Vul hier een geldig nummer in.",
+        digits: "Vul hier alleen nummers in.",
+        creditcard: "Vul hier een geldig credit card nummer in.",
+        equalTo: "Vul hier dezelfde waarde in.",
+        accept: "Vul hier een waarde in met een geldige extensie.",
+        maxlength: jQuery.validator.format("Vul hier maximaal {0} tekens in."),
+        minlength: jQuery.validator.format("Vul hier minimaal {0} tekens in."),
+        rangelength: jQuery.validator.format("Vul hier een waarde in van minimaal {0} en maximaal {1} tekens."),
+        range: jQuery.validator.format("Vul hier een waarde in van minimaal {0} en maximaal {1}."),
+        max: jQuery.validator.format("Vul hier een waarde in kleiner dan of gelijk aan {0}."),
+        min: jQuery.validator.format("Vul hier een waarde in groter dan of gelijk aan {0}.")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_nl.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_nl.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_nl.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_no.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_no.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_no.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_no.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: NO (Norwegian)
+ */
+jQuery.extend(jQuery.validator.messages, {
+       required: "Dette feltet er obligatorisk.",
+       maxlength: jQuery.validator.format("Maksimalt {0} tegn."),
+       minlength: jQuery.validator.format("Minimum {0} tegn."),
+       rangelength: jQuery.validator.format("Angi minimum {0} og maksimum {1} tegn."),
+       email: "Oppgi en gyldig epostadresse.",
+       url: "Angi en gyldig URL.",
+       date: "Angi en gyldig dato.",
+       dateISO: "Angi en gyldig dato (&ARING;&ARING;&ARING;&ARING;-MM-DD).",
+       dateSE: "Angi en gyldig dato.",
+       number: "Angi et gyldig nummer.",
+       numberSE: "Angi et gyldig nummer.",
+       digits: "Skriv kun tall.",
+       equalTo: "Skriv samme verdi igjen.",
+       range: jQuery.validator.format("Angi en verdi mellom {0} og {1}."),
+       max: jQuery.validator.format("Angi en verdi som er st&oslash;rre eller lik {0}."),
+       min: jQuery.validator.format("Angi en verdi som er mindre eller lik {0}."),
+       creditcard: "Angi et gyldig kredittkortnummer."
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_no.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_no.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_no.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_pl.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_pl.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_pl.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_pl.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: PL
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: "To pole jest wymagane.",
+ remote: "Proszę o wypełnienie tego pola.",
+ email: "Proszę o podanie prawidłowego adresu email.",
+ url: "Proszę o podanie prawidłowego URL.",
+ date: "Proszę o podanie prawidłowej daty.",
+ dateISO: "Proszę o podanie prawidłowej daty (ISO).",
+ number: "Proszę o podanie prawidłowej liczby.",
+ digits: "Proszę o podanie samych cyfr.",
+ creditcard: "Proszę o podanie prawidłowej karty kredytowej.",
+ equalTo: "Proszę o podanie tej samej wartości ponownie.",
+ accept: "Proszę o podanie wartości z prawidłowym rozszerzeniem.",
+ maxlength: jQuery.validator.format("Proszę o podanie nie więcej niż {0} znaków."),
+ minlength: jQuery.validator.format("Proszę o podanie przynajmniej {0} znaków."),
+ rangelength: jQuery.validator.format("Proszę o podanie wartości o długości od {0} do {1} znaków."),
+ range: jQuery.validator.format("Proszę o podanie wartości z przedziału od {0} do {1}."),
+ max: jQuery.validator.format("Proszę o podanie wartości mniejszej bądź równej {0}."),
+ min: jQuery.validator.format("Proszę o podanie wartości większej bądź równej {0}.")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_pl.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_pl.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_pl.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptbr.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptbr.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptbr.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptbr.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: PT_BR
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: "Este campo &eacute; requerido.",
+ remote: "Por favor, corrija este campo.",
+ email: "Por favor, forne&ccedil;a um endere&ccedil;o eletr&ocirc;nico v&aacute;lido.",
+ url: "Por favor, forne&ccedil;a uma URL v&aacute;lida.",
+ date: "Por favor, forne&ccedil;a uma data v&aacute;lida.",
+ dateISO: "Por favor, forne&ccedil;a uma data v&aacute;lida (ISO).",
+ number: "Por favor, forne&ccedil;a um n&uacute;mero v&aacute;lida.",
+ digits: "Por favor, forne&ccedil;a somente d&iacute;gitos.",
+ creditcard: "Por favor, forne&ccedil;a um cart&atilde;o de cr&eacute;dito v&aacute;lido.",
+ equalTo: "Por favor, forne&ccedil;a o mesmo valor novamente.",
+ accept: "Por favor, forne&ccedil;a um valor com uma extens&atilde;o v&aacute;lida.",
+ maxlength: jQuery.validator.format("Por favor, forne&ccedil;a n&atilde;o mais que {0} caracteres."),
+ minlength: jQuery.validator.format("Por favor, forne&ccedil;a ao menos {0} caracteres."),
+ rangelength: jQuery.validator.format("Por favor, forne&ccedil;a um valor entre {0} e {1} caracteres de comprimento."),
+ range: jQuery.validator.format("Por favor, forne&ccedil;a um valor entre {0} e {1}."),
+ max: jQuery.validator.format("Por favor, forne&ccedil;a um valor menor ou igual a {0}."),
+ min: jQuery.validator.format("Por favor, forne&ccedil;a um valor maior ou igual a {0}.")
+});

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptbr.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptbr.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptbr.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptpt.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptpt.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptpt.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptpt.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/**
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: PT_PT
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: "Campo de preenchimento obrigat&oacute;rio.",
+ remote: "Por favor, corrija este campo.",
+ email: "Por favor, introduza um endere&ccedil;o eletr&oacute;nico v&aacute;lido.",
+ url: "Por favor, introduza um URL v&aacute;lido.",
+ date: "Por favor, introduza uma data v&aacute;lida.",
+ dateISO: "Por favor, introduza uma data v&aacute;lida (ISO).",
+ number: "Por favor, introduza um n&uacute;mero v&aacute;lido.",
+ digits: "Por favor, introduza apenas d&iacute;gitos.",
+ creditcard: "Por favor, introduza um n&uacute;mero de cart&atilde;o de cr&eacute;dito v&aacute;lido.",
+ equalTo: "Por favor, introduza de novo o mesmo valor.",
+ accept: "Por favor, introduza um ficheiro com uma extens&atilde;o v&aacute;lida.",
+ maxlength: jQuery.validator.format("Por favor, n&atilde;o introduza mais do que {0} caracteres."),
+ minlength: jQuery.validator.format("Por favor, introduza pelo menos {0} caracteres."),
+ rangelength: jQuery.validator.format("Por favor, introduza entre {0} e {1} caracteres."),
+ range: jQuery.validator.format("Por favor, introduza um valor entre {0} e {1}."),
+ max: jQuery.validator.format("Por favor, introduza um valor menor ou igual a {0}."),
+ min: jQuery.validator.format("Por favor, introduza um valor maior ou igual a {0}.")
+});

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptpt.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptpt.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ptpt.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ro.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ro.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ro.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ro.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: RO
+ */
+jQuery.extend(jQuery.validator.messages, {
+  required: "Acest câmp este obligatoriu.",
+  remote: "Te rugăm să completezi acest câmp.",
+  email: "Te rugăm să introduci o adresă de email validă",
+  url: "Te rugăm sa introduci o adresă URL validă.",
+  date: "Te rugăm să introduci o dată corectă.",
+  dateISO: "Te rugăm să introduci o dată (ISO) corectă.",
+  number: "Te rugăm să introduci un număr întreg valid.",
+  digits: "Te rugăm să introduci doar cifre.",
+  creditcard: "Te rugăm să introduci un numar de carte de credit valid.",
+  equalTo: "Te rugăm să reintroduci valoarea.",
+  accept: "Te rugăm să introduci o valoare cu o extensie validă.",
+  maxlength: jQuery.validator.format("Te rugăm să nu introduci mai mult de {0} caractere."),
+  minlength: jQuery.validator.format("Te rugăm să introduci cel puțin {0} caractere."),
+  rangelength: jQuery.validator.format("Te rugăm să introduci o valoare între {0} și {1} caractere."),
+  range: jQuery.validator.format("Te rugăm să introduci o valoare între {0} și {1}."),
+  max: jQuery.validator.format("Te rugăm să introduci o valoare egal sau mai mică decât {0}."),
+  min: jQuery.validator.format("Te rugăm să introduci o valoare egal sau mai mare decât {0}.")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ro.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ro.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ro.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ru.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ru.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ru.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ru.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: RU
+ */
+jQuery.extend(jQuery.validator.messages, {
+        required: "Это поле необходимо заполнить.",
+        remote: "Пожалуйста, введите правильное значение.",
+        email: "Пожалуйста, введите корретный адрес электронной почты.",
+        url: "Пожалуйста, введите корректный URL.",
+        date: "Пожалуйста, введите корректную дату.",
+        dateISO: "Пожалуйста, введите корректную дату в формате ISO.",
+        number: "Пожалуйста, введите число.",
+        digits: "Пожалуйста, вводите только цифры.",
+        creditcard: "Пожалуйста, введите правильный номер кредитной карты.",
+        equalTo: "Пожалуйста, введите такое же значение ещё раз.",
+        accept: "Пожалуйста, выберите файл с правильным расширением.",
+        maxlength: jQuery.validator.format("Пожалуйста, введите не больше {0} символов."),
+        minlength: jQuery.validator.format("Пожалуйста, введите не меньше {0} символов."),
+        rangelength: jQuery.validator.format("Пожалуйста, введите значение длиной от {0} до {1} символов."),
+        range: jQuery.validator.format("Пожалуйста, введите число от {0} до {1}."),
+        max: jQuery.validator.format("Пожалуйста, введите число, меньшее или равное {0}."),
+        min: jQuery.validator.format("Пожалуйста, введите число, большее или равное {0}.")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ru.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ru.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_ru.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_se.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_se.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_se.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_se.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,21 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: SE
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: "Detta f&auml;lt &auml;r obligatoriskt.",
+ maxlength: jQuery.validator.format("Du f&aring;r ange h&ouml;gst {0} tecken."),
+ minlength: jQuery.validator.format("Du m&aring;ste ange minst {0} tecken."),
+ rangelength: jQuery.validator.format("Ange minst {0} och max {1} tecken."),
+ email: "Ange en korrekt e-postadress.",
+ url: "Ange en korrekt URL.",
+ date: "Ange ett korrekt datum.",
+ dateISO: "Ange ett korrekt datum (&ARING;&ARING;&ARING;&ARING;-MM-DD).",
+ number: "Ange ett korrekt nummer.",
+ digits: "Ange endast siffror.",
+ equalTo: "Ange samma v&auml;rde igen.",
+ range: jQuery.validator.format("Ange ett v&auml;rde mellan {0} och {1}."),
+ max: jQuery.validator.format("Ange ett v&auml;rde som &auml;r st&ouml;rre eller lika med {0}."),
+ min: jQuery.validator.format("Ange ett v&auml;rde som &auml;r mindre eller lika med {0}."),
+ creditcard: "Ange ett korrekt kreditkortsnummer."
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_se.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_se.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_se.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_sk.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_sk.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_sk.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_sk.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,20 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: SK
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: "Povinné zadať.",
+ maxlength: jQuery.validator.format("Maximálne {0} znakov."),
+ minlength: jQuery.validator.format("Minimálne {0} znakov."),
+ rangelength: jQuery.validator.format("Minimálne {0} a Maximálne {0} znakov."),
+ email: "E-mailová adresa musí byť platná.",
+ url: "URL musí byť platný.",
+ date: "Musí byť dátum.",
+ number: "Musí byť číslo.",
+ digits: "Môže obsahovať iba číslice.",
+ equalTo: "Dva hodnoty sa musia rovnať.",
+ range: jQuery.validator.format("Musí byť medzi {0} a {1}."),
+ max: jQuery.validator.format("Nemôže byť viac ako{0}."),
+ min: jQuery.validator.format("Nemôže byť menej ako{0}."),
+ creditcard: "Číslo platobnej karty musí byť platné."
+});

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_sk.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_sk.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_sk.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tr.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tr.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tr.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tr.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: TR
+ */
+jQuery.extend(jQuery.validator.messages, {
+ required: "Bu alanın doldurulması zorunludur.",
+ remote: "Lütfen bu alanı düzeltin.",
+ email: "Lütfen geçerli bir e-posta adresi giriniz.",
+ url: "Lütfen geçerli bir web adresi (URL) giriniz.",
+ date: "Lütfen geçerli bir tarih giriniz.",
+ dateISO: "Lütfen geçerli bir tarih giriniz(ISO formatında)",
+ number: "Lütfen geçerli bir sayı giriniz.",
+ digits: "Lütfen sadece sayısal karakterler giriniz.",
+ creditcard: "Lütfen geçerli bir kredi kartı giriniz.",
+ equalTo: "Lütfen aynı değeri tekrar giriniz.",
+ accept: "Lütfen geçerli uzantıya sahip bir değer giriniz.",
+ maxlength: jQuery.validator.format("Lütfen en fazla {0} karakter uzunluğunda bir değer giriniz."),
+ minlength: jQuery.validator.format("Lütfen en az {0} karakter uzunluğunda bir değer giriniz."),
+ rangelength: jQuery.validator.format("Lütfen en az {0} ve en fazla {1} uzunluğunda bir değer giriniz."),
+ range: jQuery.validator.format("Lütfen {0} ile {1} arasında bir değer giriniz."),
+ max: jQuery.validator.format("Lütfen {0} değerine eşit ya da daha küçük bir değer giriniz."),
+ min: jQuery.validator.format("Lütfen {0} değerine eşit ya da daha büyük bir değer giriniz.")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tr.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tr.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tr.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tw.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tw.js?rev=1001766&view=auto
==============================================================================
--- ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tw.js (added)
+++ ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tw.js Mon Sep 27 14:52:08 2010
@@ -0,0 +1,23 @@
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: TW (Taiwan - Traditional Chinese)
+ */
+jQuery.extend(jQuery.validator.messages, {
+        required: "必填",
+ remote: "請修正此欄位",
+ email: "請輸入正確的電子信箱",
+ url: "請輸入合法的URL",
+ date: "請輸入合法的日期",
+ dateISO: "請輸入合法的日期 (ISO).",
+ number: "請輸入數字",
+ digits: "請輸入整數",
+ creditcard: "請輸入合法的信用卡號碼",
+ equalTo: "請重複輸入一次",
+ accept: "請輸入有效的後缀字串",
+ maxlength: jQuery.validator.format("請輸入長度不大於{0} 的字串"),
+ minlength: jQuery.validator.format("請輸入長度不小於 {0} 的字串"),
+ rangelength: jQuery.validator.format("請輸入長度介於 {0} 和 {1} 之間的字串"),
+ range: jQuery.validator.format("請輸入介於 {0} 和 {1} 之間的數值"),
+ max: jQuery.validator.format("請輸入不大於 {0} 的數值"),
+ min: jQuery.validator.format("請輸入不小於 {0} 的數值")
+});
\ No newline at end of file

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tw.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tw.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/branches/jquery/framework/images/webapp/images/jquery/plugins/validate/localization/messages_tw.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain