You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by er...@apache.org on 2012/11/13 22:47:31 UTC

svn commit: r1408976 [5/44] - in /ofbiz/branches/20120329_portletWidget: ./ applications/accounting/config/ applications/accounting/entitydef/ applications/accounting/src/org/ofbiz/accounting/payment/ applications/accounting/src/org/ofbiz/accounting/th...

Modified: ofbiz/branches/20120329_portletWidget/applications/accounting/entitydef/entitymodel.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/20120329_portletWidget/applications/accounting/entitydef/entitymodel.xml?rev=1408976&r1=1408975&r2=1408976&view=diff
==============================================================================
--- ofbiz/branches/20120329_portletWidget/applications/accounting/entitydef/entitymodel.xml (original)
+++ ofbiz/branches/20120329_portletWidget/applications/accounting/entitydef/entitymodel.xml Tue Nov 13 21:47:18 2012
@@ -1732,7 +1732,9 @@ under the License.
       <field name="receiptId" type="id"></field>
       <field name="workEffortId" type="id"></field>
       <field name="theirAcctgTransId" type="id-long"></field>
+      <field name="createdDate" type="date-time"></field>      
       <field name="createdByUserLogin" type="id-vlong"></field>
+      <field name="lastModifiedDate" type="date-time"></field>
       <field name="lastModifiedByUserLogin" type="id-vlong"></field>
       <prim-key field="acctgTransId"/>
       <relation type="one" fk-name="ACCTTX_TYPE" rel-entity-name="AcctgTransType">
@@ -2322,7 +2324,9 @@ under the License.
       <field name="glReconciliationId" type="id-ne"></field>
       <field name="glReconciliationName" type="name"></field>
       <field name="description" type="description"></field>
+      <field name="createdDate" type="date-time"></field>
       <field name="createdByUserLogin" type="id-vlong"></field>
+      <field name="lastModifiedDate" type="date-time"></field>
       <field name="lastModifiedByUserLogin" type="id-vlong"></field>
       <field name="glAccountId" type="id-ne"></field>
       <field name="statusId" type="id-ne"></field>
@@ -3679,6 +3683,9 @@ under the License.
       <field name="workingKey" type="very-long"></field>
       <field name="workingKeyIndex" type="numeric"></field>
       <field name="lastWorkingKey" type="very-long"></field>
+      <field name="createdDate" type="date-time"></field>
+      <field name="createdByTerminal" type="short-varchar"></field>
+      <field name="createdByUserLogin" type="id-vlong"></field>
       <field name="lastModifiedDate" type="date-time"></field>
       <field name="lastModifiedByTerminal" type="short-varchar"></field>
       <field name="lastModifiedByUserLogin" type="id-vlong"></field>

Modified: ofbiz/branches/20120329_portletWidget/applications/accounting/src/org/ofbiz/accounting/payment/PaymentGatewayServices.java
URL: http://svn.apache.org/viewvc/ofbiz/branches/20120329_portletWidget/applications/accounting/src/org/ofbiz/accounting/payment/PaymentGatewayServices.java?rev=1408976&r1=1408975&r2=1408976&view=diff
==============================================================================
--- ofbiz/branches/20120329_portletWidget/applications/accounting/src/org/ofbiz/accounting/payment/PaymentGatewayServices.java (original)
+++ ofbiz/branches/20120329_portletWidget/applications/accounting/src/org/ofbiz/accounting/payment/PaymentGatewayServices.java Tue Nov 13 21:47:18 2012
@@ -1970,9 +1970,9 @@ public class PaymentGatewayServices {
             }
 
             // set the status of the OrderPaymentPreference
-            if (context != null && authResult.booleanValue()) {
+            if (authResult.booleanValue()) {
                 orderPaymentPreference.set("statusId", "PAYMENT_AUTHORIZED");
-            } else if (context != null && !authResult.booleanValue()) {
+            } else if (!authResult.booleanValue()) {
                 orderPaymentPreference.set("statusId", "PAYMENT_DECLINED");
             } else {
                 orderPaymentPreference.set("statusId", "PAYMENT_ERROR");
@@ -3212,7 +3212,7 @@ public class PaymentGatewayServices {
             requestContext.put("paymentGatewayConfigId", paymentGatewayConfigId);
         }
         // check the service name
-        if (paymentService == null || (paymentGatewayConfigId == null && paymentConfig == null)) {
+        if (paymentService == null || paymentGatewayConfigId == null) {
             return ServiceUtil.returnError(UtilProperties.getMessage(resource, 
                     "AccountingPaymentSettingNotValid", locale));
         }
@@ -3569,7 +3569,7 @@ public class PaymentGatewayServices {
         String lastNumberStr = expireDate.substring(expireDate.length() - 1);
         int lastNumber = Integer.parseInt(lastNumberStr);
 
-        if (lastNumber / 2.0 == 0.0) {
+        if (lastNumber % 2.0 == 0.0) {
             return alwaysBadExpireProcessor(dctx, context);
         } else {
             return alwaysApproveProcessor(dctx, context);

Modified: ofbiz/branches/20120329_portletWidget/applications/accounting/src/org/ofbiz/accounting/thirdparty/paypal/PayPalServices.java
URL: http://svn.apache.org/viewvc/ofbiz/branches/20120329_portletWidget/applications/accounting/src/org/ofbiz/accounting/thirdparty/paypal/PayPalServices.java?rev=1408976&r1=1408975&r2=1408976&view=diff
==============================================================================
--- ofbiz/branches/20120329_portletWidget/applications/accounting/src/org/ofbiz/accounting/thirdparty/paypal/PayPalServices.java (original)
+++ ofbiz/branches/20120329_portletWidget/applications/accounting/src/org/ofbiz/accounting/thirdparty/paypal/PayPalServices.java Tue Nov 13 21:47:18 2012
@@ -246,8 +246,8 @@ public class PayPalServices {
             if (estimate == null || estimate.compareTo(BigDecimal.ZERO) < 0) {
                 continue;
             }
-            cart.setShipmentMethodTypeId(shipMethod.getString("shipmentMethodTypeId"));
-            cart.setCarrierPartyId(shipMethod.getString("partyId"));
+            cart.setAllShipmentMethodTypeId(shipMethod.getString("shipmentMethodTypeId"));
+            cart.setAllCarrierPartyId(shipMethod.getString("partyId"));
             try {
                 coh.calcAndAddTax();
             } catch (GeneralException e) {
@@ -594,18 +594,18 @@ public class PayPalServices {
         // that was shown to the customer
         String shipMethod = decoder.get("SHIPPINGOPTIONNAME");
         if ("Calculated Offline".equals(shipMethod)) {
-            cart.setCarrierPartyId("_NA_");
-            cart.setShipmentMethodTypeId("NO_SHIPPING");
+            cart.setAllCarrierPartyId("_NA_");
+            cart.setAllShipmentMethodTypeId("NO_SHIPPING");
         } else {
             String[] shipMethodSplit = shipMethod.split(" - ");
-            cart.setCarrierPartyId(shipMethodSplit[0]);
+            cart.setAllCarrierPartyId(shipMethodSplit[0]);
             String shippingMethodTypeDesc = StringUtils.join(shipMethodSplit, " - ", 1, shipMethodSplit.length);
             try {
                 EntityCondition cond = EntityCondition.makeCondition(
                         UtilMisc.toMap("productStoreId", cart.getProductStoreId(), "partyId", shipMethodSplit[0], "roleTypeId", "CARRIER", "description", shippingMethodTypeDesc)
                );
                 GenericValue shipmentMethod = EntityUtil.getFirst(delegator.findList("ProductStoreShipmentMethView", cond, null, null, null, false));
-                cart.setShipmentMethodTypeId(shipmentMethod.getString("shipmentMethodTypeId"));
+                cart.setAllShipmentMethodTypeId(shipmentMethod.getString("shipmentMethodTypeId"));
             } catch (GenericEntityException e1) {
                 Debug.logError(e1, module);
             }
@@ -619,7 +619,7 @@ public class PayPalServices {
             }
         }
         cart.cleanUpShipGroups();
-        cart.setShippingContactMechId(postalContactId);
+        cart.setAllShippingContactMechId(postalContactId);
         Map<String, Object> result = ShippingEvents.getShipGroupEstimate(dispatcher, delegator, cart, 0);
         if (result.get(ModelService.RESPONSE_MESSAGE).equals(ModelService.RESPOND_ERROR)) {
             return ServiceUtil.returnError((String) result.get(ModelService.ERROR_MESSAGE));

Modified: ofbiz/branches/20120329_portletWidget/applications/commonext/config/CommonExtUiLabels.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/20120329_portletWidget/applications/commonext/config/CommonExtUiLabels.xml?rev=1408976&r1=1408975&r2=1408976&view=diff
==============================================================================
--- ofbiz/branches/20120329_portletWidget/applications/commonext/config/CommonExtUiLabels.xml (original)
+++ ofbiz/branches/20120329_portletWidget/applications/commonext/config/CommonExtUiLabels.xml Tue Nov 13 21:47:18 2012
@@ -24,6 +24,7 @@
         <value xml:lang="en">Create Public Message</value>
         <value xml:lang="fr">Créer un message public</value>
         <value xml:lang="it">Crea messaggio pubblico</value>
+        <value xml:lang="ja">公開メッセージを作成</value>
         <value xml:lang="pt_BR">Criar Mensagem Pública</value>
         <value xml:lang="vi">Tạo thông điệp công khai</value>
         <value xml:lang="zh">新建公共消息</value>
@@ -33,6 +34,7 @@
         <value xml:lang="en">Date info created</value>
         <value xml:lang="fr">Date de création</value>
         <value xml:lang="it">Data di creazione</value>
+        <value xml:lang="ja">作成日付情報</value>
         <value xml:lang="pt_BR">Data da informação criada</value>
         <value xml:lang="vi">Ngày tạo thông tin</value>
         <value xml:lang="zh">已创建日期信息</value>
@@ -42,6 +44,7 @@
         <value xml:lang="en">Date Last Changed</value>
         <value xml:lang="fr">Dernière date de changement</value>
         <value xml:lang="it">Data ultimo cambiamento</value>
+        <value xml:lang="ja">最終更新日</value>
         <value xml:lang="pt_BR">Data da última modificação</value>
         <value xml:lang="vi">Ngày thay đổi thông tin</value>
         <value xml:lang="zh">最后修改日期</value>
@@ -51,6 +54,7 @@
         <value xml:lang="en">System Info Note</value>
         <value xml:lang="fr">Message d'information système</value>
         <value xml:lang="it">Messaggio di sistema</value>
+        <value xml:lang="ja">システム情報連絡</value>
         <value xml:lang="pt_BR">Nota de Informação do Sistema</value>
         <value xml:lang="vi">Thông tin lưu ý mức hệ thống</value>
         <value xml:lang="zh">系统信息便笺</value>
@@ -60,6 +64,7 @@
         <value xml:lang="en">System Info note for user:</value>
         <value xml:lang="fr">Message d'information système pour l'utilisateur :</value>
         <value xml:lang="it">Messaggio di sistema per l'utente:</value>
+        <value xml:lang="ja">システム情報連絡 ユーザ:</value>
         <value xml:lang="pt_BR">Nota de Informação do Sistema para o usuário:</value>
         <value xml:lang="vi">Thông tin lưu ý mức hệ thống tới Người dùng:</value>
         <value xml:lang="zh">系统信息便笺致用户:</value>
@@ -69,6 +74,7 @@
         <value xml:lang="en">System Info Status</value>
         <value xml:lang="fr">Message d'information d'état</value>
         <value xml:lang="it">Stato messaggi di sistema</value>
+        <value xml:lang="ja">システム情報ステータス</value>
         <value xml:lang="pt_BR">Informação de estado do sistema</value>
         <value xml:lang="vi">Trạng thái mức hệ thống</value>
         <value xml:lang="zh">系统信息状态</value>
@@ -78,6 +84,7 @@
         <value xml:lang="en">System Info status for user:</value>
         <value xml:lang="fr">Message d'information d'état pour l'utilisateur :</value>
         <value xml:lang="it">Stato messaggi di sistema per l'utente:</value>
+        <value xml:lang="ja">システム情報ステータス ユーザ:</value>
         <value xml:lang="pt_BR">Informação de estado do sistema para o usuário:</value>
         <value xml:lang="vi">Trạng thái mức hệ thống tới Người dùng:</value>
         <value xml:lang="zh">系统信息状态为用户:</value>

Modified: ofbiz/branches/20120329_portletWidget/applications/commonext/config/SetupUiLabels.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/20120329_portletWidget/applications/commonext/config/SetupUiLabels.xml?rev=1408976&r1=1408975&r2=1408976&view=diff
==============================================================================
--- ofbiz/branches/20120329_portletWidget/applications/commonext/config/SetupUiLabels.xml (original)
+++ ofbiz/branches/20120329_portletWidget/applications/commonext/config/SetupUiLabels.xml Tue Nov 13 21:47:18 2012
@@ -22,6 +22,7 @@
     <property key="PageTitleEditProductCategory">
         <value xml:lang="en">Edit Product Category</value>
         <value xml:lang="it">Aggiorna categoria prodotti</value>
+        <value xml:lang="ja">製品カテゴリを編集</value>
         <value xml:lang="pt_BR">Editar Categoria de Produto</value>
         <value xml:lang="vi">Sửa đổi chuyên mục sản phẩm</value>
         <value xml:lang="zh">编辑产品分类</value>
@@ -30,6 +31,7 @@
     <property key="PageTitleProductInfomation">
         <value xml:lang="en">Product Infomation</value>
         <value xml:lang="it">Informazione prodotti</value>
+        <value xml:lang="ja">製品情報</value>
         <value xml:lang="pt_BR">Informações do produto</value>
         <value xml:lang="vi">Thông tin sản phẩm</value>
         <value xml:lang="zh">产品信息</value>
@@ -39,6 +41,7 @@
         <value xml:lang="en">Setup Application</value>
         <value xml:lang="fr">Configuration de l'application</value>
         <value xml:lang="it">Applicazione di configurazione</value>
+        <value xml:lang="ja">設定アプリケーション</value>
         <value xml:lang="pt_BR">Aplicativo de configuração</value>
         <value xml:lang="vi">Cấu hình hệ thống ERP</value>
         <value xml:lang="zh">安装程序</value>
@@ -47,6 +50,7 @@
     <property key="SetupCompanyName">
         <value xml:lang="en">OFBiz: Setup Application </value>
         <value xml:lang="it">OFBiz: componente di configurazione</value>
+        <value xml:lang="ja">OFBiz: 設定アプリケーション</value>
         <value xml:lang="pt_BR">OFBiz: Aplicativo de instalação</value>
         <value xml:lang="vi">OFBiz: Khởi tạo Ứng dụng</value>
         <value xml:lang="zh">OFBiz:安装程序</value>
@@ -62,6 +66,7 @@
         <value xml:lang="fr">Un module de la famille Open For Business, logiciel libre de gestion d'entreprise.</value>
         <value xml:lang="it">Un modulo della famiglia di software open source Open For Business</value>
         <!--value xml:lang="nl">Onderdeel van de Open For Business'-suite</value-->
+        <value xml:lang="ja">Part of the Open For Business Family of Open Source Software</value>
         <value xml:lang="nl">Deel van de Open For Business-suite van Open Source Software</value>
         <value xml:lang="pt_BR">Parte da família OfBiz de software de fonte aberta</value>
         <!--value xml:lang="pt_PT">Parte do Software de Fonte Aberta para Grupos Abertos Para o Negócio</value-->
@@ -81,6 +86,7 @@
     <property key="SetupCreateNewOrganization">
         <value xml:lang="en">Create New Organization</value>
         <value xml:lang="it">Creare nuova organizzazione</value>
+        <value xml:lang="ja">新規組織を作成</value>
         <value xml:lang="pt_BR">Criar Nova Organização</value>
         <value xml:lang="vi">Thêm Doanh nghiệp</value>
         <value xml:lang="zh">新建组织</value>
@@ -89,6 +95,7 @@
     <property key="SetupEditOrganizationInformation">
         <value xml:lang="en">Edit Organization Information</value>
         <value xml:lang="it">Aggiorna informazioni organizzazione</value>
+        <value xml:lang="ja">組織情報を編集</value>
         <value xml:lang="pt_BR">Editar informações da Organização</value>
         <value xml:lang="vi">Thêm thông tin Doanh nghiệp</value>
         <value xml:lang="zh">编辑组织信息</value>
@@ -97,6 +104,7 @@
     <property key="SetupEditProductStore">
         <value xml:lang="en">Edit Product Store</value>
         <value xml:lang="it">Aggiorna negozio prodotti</value>
+        <value xml:lang="ja">製品店舗を編集</value>
         <value xml:lang="nl">Wijzigen winkel</value>
         <value xml:lang="pt_BR">Editar Loja de Produtos</value>
         <value xml:lang="vi">Cập nhật Cửa hàng</value>
@@ -106,6 +114,7 @@
     <property key="SetupEventMessage">
         <value xml:lang="en">Setup only works if there are no organizations defined yet</value>
         <value xml:lang="it">Configura solo i lavori se non c'è ancora nessuna organizzazione definita</value>
+        <value xml:lang="ja">組織がまだ定義されていない場合のみ設定できます</value>
         <value xml:lang="pt_BR">Instalação só funciona se não houver organizações definidas</value>
         <value xml:lang="vi">Khởi tạo có tác dụng chỉ khi chưa có Doanh nghiệp nào được thiết lập</value>
         <value xml:lang="zh">只有在没有定义组织时才能安装</value>
@@ -114,6 +123,7 @@
     <property key="SetupFacility">
         <value xml:lang="en">Facility</value>
         <value xml:lang="it">Stabilimento</value>
+        <value xml:lang="ja">拠点</value>
         <value xml:lang="pt_BR">Instalação</value>
         <value xml:lang="vi">Cơ sở (Facility)</value>
         <value xml:lang="zh">场所</value>
@@ -122,6 +132,7 @@
     <property key="SetupFacilityDescription">
         <value xml:lang="en">Description</value>
         <value xml:lang="it">Descrizione stabilimento</value>
+        <value xml:lang="ja">詳細</value>
         <value xml:lang="pt_BR">Descrição</value>
         <value xml:lang="vi">Miêu tả</value>
         <value xml:lang="zh">说明</value>
@@ -130,6 +141,7 @@
     <property key="SetupFacilityNameIsMissing">
         <value xml:lang="en">Facility Name is missing</value>
         <value xml:lang="it">Stabilimento mancante</value>
+        <value xml:lang="ja"></value>
         <value xml:lang="pt_BR">Nome da Instalação está faltando</value>
         <value xml:lang="vi">Bạn chưa nhập tên cơ sở (Facility Name)</value>
         <value xml:lang="zh">缺少场所名称</value>
@@ -137,6 +149,7 @@
     <property key="SetupFirstCustomer">
         <value xml:lang="en">First Customer</value>
         <value xml:lang="it">Primo cliente</value>
+        <value xml:lang="ja">最初の顧客</value>
         <value xml:lang="pt_BR">Primeiro Cliente</value>
         <value xml:lang="vi">Khách hàng đầu tiên</value>
         <value xml:lang="zh">第一个客户</value>
@@ -145,6 +158,7 @@
     <property key="SetupFirstProduct">
         <value xml:lang="en">First Product</value>
         <value xml:lang="it">Primo prodotto</value>
+        <value xml:lang="ja">最初の製品</value>
         <value xml:lang="pt_BR">Primeiro produto</value>
         <value xml:lang="vi">Sản phẩm đầu tiên</value>
         <value xml:lang="zh">第一个产品</value>
@@ -153,6 +167,7 @@
     <property key="SetupInitialSetup">
         <value xml:lang="en">Initial Setup</value>
         <value xml:lang="it">Configurazione iniziale</value>
+        <value xml:lang="ja">初期設定</value>
         <value xml:lang="pt_BR">Configuração inicial</value>
         <value xml:lang="vi">Khởi tạo thiết lập</value>
         <value xml:lang="zh">初始设置</value>
@@ -161,6 +176,7 @@
     <property key="SetupNewComponent">
         <value xml:lang="en">Setup New Component</value>
         <value xml:lang="it">Configura nuovo componente</value>
+        <value xml:lang="ja">新規コンポーネントを設定</value>
         <value xml:lang="pt_BR">Configurar novo componente</value>
         <value xml:lang="vi">Khởi tạo thành phần (component) mới</value>
         <value xml:lang="zh">安装新的组件</value>
@@ -169,6 +185,7 @@
     <property key="SetupOrganization">
         <value xml:lang="en">Organization</value>
         <value xml:lang="it">Organizzazione</value>
+        <value xml:lang="ja">組織</value>
         <value xml:lang="pt_BR">Organização</value>
         <value xml:lang="vi">Doanh nghiệp</value>
         <value xml:lang="zh">组织</value>
@@ -177,6 +194,7 @@
     <property key="SetupOrganizationInformation">
         <value xml:lang="en">Organization Information</value>
         <value xml:lang="it">Informazioni organizzazione</value>
+        <value xml:lang="ja">組織情報</value>
         <value xml:lang="pt_BR">Informação da Organização</value>
         <value xml:lang="vi">Thông tin Doanh nghiệp</value>
         <value xml:lang="zh">组织信息</value>
@@ -185,6 +203,7 @@
     <property key="SetupOrganizationName">
         <value xml:lang="en">Organization name</value>
         <value xml:lang="it">Nome organizzazione</value>
+        <value xml:lang="ja">組織名称</value>
         <value xml:lang="pt_BR">Nome da organização</value>
         <value xml:lang="vi">Tên Doanh nghiệp</value>
         <value xml:lang="zh">组织名称</value>
@@ -193,6 +212,7 @@
     <property key="SetupOrganizationNameIsMissing">
         <value xml:lang="en">Organization name is missing</value>
         <value xml:lang="it">Nome organizzazione è mancante</value>
+        <value xml:lang="ja"></value>
         <value xml:lang="pt_BR">Nome da organização está faltando</value>
         <value xml:lang="vi">Bạn chưa nhập tên doanh nghiệp</value>
         <value xml:lang="zh">缺少组织名称</value>
@@ -200,6 +220,7 @@
     <property key="SetupOrganizationPartyId">
         <value xml:lang="en">Organization Party Id</value>
         <value xml:lang="it">Soggetto organizzazione</value>
+        <value xml:lang="ja">組織取引先ID</value>
         <value xml:lang="pt_BR">Id da Organização</value>
         <value xml:lang="vi">Id Doanh nghiệp</value>
         <value xml:lang="zh">组织会员标识</value>
@@ -208,6 +229,7 @@
     <property key="SetupPageError">
         <value xml:lang="en">You do not have sufficient data to access this page.</value>
         <value xml:lang="it">Tu non hai sufficienti diritti per accedere a questa pagina.</value>
+        <value xml:lang="ja">このページにアクセスする権限がありません</value>
         <value xml:lang="pt_BR">Você não tem dados suficientes para acessar essa página.</value>
         <value xml:lang="vi">Bạn chưa có đủ quyền để truy nhập vào trang này.</value>
         <value xml:lang="zh">你没有足够的数据来访问这个页面。</value>
@@ -216,6 +238,7 @@
     <property key="SetupProductCatalog">
         <value xml:lang="en">Product Catalog</value>
         <value xml:lang="it">Catalogo prodotti</value>
+        <value xml:lang="ja">製品カタログ</value>
         <value xml:lang="pt_BR">Catálogo de Produtos</value>
         <value xml:lang="vi">Catalog sản phẩm</value>
         <value xml:lang="zh">产品目录</value>
@@ -224,6 +247,7 @@
     <property key="SetupProductStore">
         <value xml:lang="en">Product Store</value>
         <value xml:lang="it">Negozio prodotti</value>
+        <value xml:lang="ja">製品店舗</value>
         <value xml:lang="pt_BR">Loja de Produtos</value>
         <value xml:lang="vi">Cửa hàng sản phẩm</value>
         <value xml:lang="zh">产品店铺</value>
@@ -232,6 +256,7 @@
     <property key="SetupProductStoreName">
         <value xml:lang="en">Product Store name</value>
         <value xml:lang="it">Nome negozio prodotti</value>
+        <value xml:lang="ja">製品店舗名称</value>
         <value xml:lang="pt_BR">Nome da Loja de Produtos</value>
         <value xml:lang="vi">Tên cửa hàng sản phẩm</value>
         <value xml:lang="zh">产品店铺名称</value>
@@ -240,6 +265,7 @@
     <property key="SetupProductStoreNameIsMissing">
         <value xml:lang="en">Store Name is missing</value>
         <value xml:lang="it">Nome negozio è mancante</value>
+        <value xml:lang="ja"></value>
         <value xml:lang="pt_BR">Nome da loja está faltando</value>
         <value xml:lang="vi">Bạn chưa nhập tên cửa hàng</value>
         <value xml:lang="zh">缺少店铺名称</value>
@@ -247,6 +273,7 @@
     <property key="SetupResults">
         <value xml:lang="en">Results</value>
         <value xml:lang="it">Risultati</value>
+        <value xml:lang="ja">結果</value>
         <value xml:lang="pt_BR">Resultados</value>
         <value xml:lang="vi">Kết quả</value>
         <value xml:lang="zh">结果</value>
@@ -255,6 +282,7 @@
     <property key="SetupSetToComplete">
         <value xml:lang="en">Set to complete</value>
         <value xml:lang="it">Imposta a completato</value>
+        <value xml:lang="ja">完了設定</value>
         <value xml:lang="pt_BR">Marcar como completo</value>
         <value xml:lang="vi">Thiết lập để hoàn thành</value>
         <value xml:lang="zh">设置为完成</value>
@@ -263,6 +291,7 @@
     <property key="SetupTheFirstCustomerOf">
         <value xml:lang="en">The First Customer of</value>
         <value xml:lang="it">Il primo cliente di</value>
+        <value xml:lang="ja">最初の顧客</value>
         <value xml:lang="pt_BR">O primeiro cliente de</value>
         <value xml:lang="vi">Khách hàng đầu tiên của</value>
         <value xml:lang="zh">第一个客户属于</value>
@@ -270,6 +299,7 @@
     <property key="SetupWebSite">
         <value xml:lang="en">Web Site</value>
         <value xml:lang="it">Sito web</value>
+        <value xml:lang="ja">Webサイト</value>
         <value xml:lang="pt_BR">Web Site</value>
         <value xml:lang="vi">Trang thông tin</value>
         <value xml:lang="zh">网站</value>