BUG 9404 "Correcciones en idioma frances" SOLVED

- The translations in the .po file (french) is incomplete
- Lack of definition ids in dashboards
- Ids have been defined for dashboards
  New ids
  =======
  ID_DASHBOARD_BTNCOLUMNS2
  ID_DASHBOARD_BTNCOLUMNS3
- The title of each dashlet not depends on the language, this is
  configured in ADMIN>Settings>Dashboards
- The translations in the .po file (french) is incomplete,
  check .po files in other languages
  .po file, sections where missing translations (french)
  ======================================================
  # dynaforms/dynaforms_ShortList.xml
  # dynaforms/dynaforms_Options.xml
  # dynaforms/dynaforms_ChoseType.xml
  # dynaforms/dynaforms_Edit.xml
  # setup/webServicesDetails.xml

  # setup/wsLogin.xml
  # setup/wsCreateUser.xml
  ...
  # setup/ws*.xml
This commit is contained in:
Victor Saisa Lopez
2012-07-12 10:05:42 -04:00
parent 9e2b6f0e99
commit 49effe5244
2 changed files with 37 additions and 34 deletions

View File

@@ -220,48 +220,51 @@ var processmap=function(){
});
var dr1 = document.createElement("img");
dr1.src = this.options.images_dir + "0.gif";
dr1.title = G_STRINGS.ID_PROCESSMAP_SEQUENTIAL;
dr1.title = _("ID_PROCESSMAP_SEQUENTIAL");
div.appendChild(dr1);
//dr1.style.marginTop = 7;
//div.appendChild(document.createElement("p"));
var dr2 = document.createElement("img");
//dr2.style.marginTop = 7;
dr2.src = this.options.images_dir + "1.gif";
dr2.title = G_STRINGS.ID_PROCESSMAP_SELECTION;
dr2.title = _("ID_PROCESSMAP_SELECTION");
div.appendChild(dr2);
//div.appendChild(document.createElement("p"));
var dr3 = document.createElement("img");
dr3.src = this.options.images_dir + "2.gif";
dr3.title = G_STRINGS.ID_PROCESSMAP_EVALUATION;
dr3.title = _("ID_PROCESSMAP_EVALUATION");
//dr3.style.marginTop = 7;
div.appendChild(dr3);
//div.appendChild(document.createElement("p"));
var dr4 = document.createElement("img");
dr4.src = this.options.images_dir + "3.gif";
dr4.title = G_STRINGS.ID_PROCESSMAP_PARALLEL_FORK;
dr4.title = _("ID_PROCESSMAP_PARALLEL_FORK");
//dr4.style.marginTop = 7;
div.appendChild(dr4);
//div.appendChild(document.createElement("p"));
var dr5 = document.createElement("img");
dr5.src = this.options.images_dir + "4.gif";
dr5.title = G_STRINGS.ID_PROCESSMAP_PARALLEL_EVALUATION_FORK;
dr5.title = _("ID_PROCESSMAP_PARALLEL_EVALUATION_FORK");
//dr5.style.marginTop = 7;
div.appendChild(dr5);
var dr6 = document.createElement("img");
dr6.src = this.options.images_dir + "5.gif";
dr6.title = G_STRINGS.ID_PROCESSMAP_PARALLEL_JOIN;
dr6.title = _("ID_PROCESSMAP_PARALLEL_JOIN");
div.appendChild(dr6);
var fin = document.createElement("img");
fin.src = this.options.images_dir + "6.gif";
fin.title = G_STRINGS.ID_END_OF_PROCESS;
fin.title = _("ID_END_OF_PROCESS");
div.appendChild(fin);
var ini = document.createElement("img");
ini.src = this.options.images_dir + "7.gif";
ini.title = "Starting task";
ini.title = _("ID_START_TASK");
div.appendChild(ini);
/*var dis = document.createElement("img");

View File

@@ -20,7 +20,7 @@ Ext.onReady(function(){
items: [
{
xtype: 'tbbutton',
text : 'Three Columns',
text : _("ID_DASHBOARD_BTNCOLUMNS3"),
handler : function(a) {
var vp = Ext.getCmp('viewportDashboard');
var pd = Ext.getCmp('portalDashboard');
@@ -40,7 +40,7 @@ Ext.onReady(function(){
},
{
xtype: 'tbbutton',
text : 'Two Columns',
text : _("ID_DASHBOARD_BTNCOLUMNS2"),
handler : function(a) {
var vp = Ext.getCmp('viewportDashboard');
var pd = Ext.getCmp('portalDashboard');