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:
@@ -219,49 +219,52 @@ var processmap=function(){
|
|||||||
textAlign:"center"
|
textAlign:"center"
|
||||||
});
|
});
|
||||||
var dr1 = document.createElement("img");
|
var dr1 = document.createElement("img");
|
||||||
dr1.src = this.options.images_dir+"0.gif";
|
dr1.src = this.options.images_dir + "0.gif";
|
||||||
dr1.title = G_STRINGS.ID_PROCESSMAP_SEQUENTIAL;
|
dr1.title = _("ID_PROCESSMAP_SEQUENTIAL");
|
||||||
div.appendChild(dr1);
|
div.appendChild(dr1);
|
||||||
//dr1.style.marginTop=7;
|
//dr1.style.marginTop = 7;
|
||||||
//div.appendChild(document.createElement("p"));
|
//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;
|
|
||||||
|
|
||||||
|
var dr2 = document.createElement("img");
|
||||||
|
//dr2.style.marginTop = 7;
|
||||||
|
dr2.src = this.options.images_dir + "1.gif";
|
||||||
|
dr2.title = _("ID_PROCESSMAP_SELECTION");
|
||||||
div.appendChild(dr2);
|
div.appendChild(dr2);
|
||||||
//div.appendChild(document.createElement("p"));
|
//div.appendChild(document.createElement("p"));
|
||||||
|
|
||||||
var dr3 = document.createElement("img");
|
var dr3 = document.createElement("img");
|
||||||
dr3.src = this.options.images_dir+"2.gif";
|
dr3.src = this.options.images_dir + "2.gif";
|
||||||
dr3.title = G_STRINGS.ID_PROCESSMAP_EVALUATION;
|
dr3.title = _("ID_PROCESSMAP_EVALUATION");
|
||||||
//dr3.style.marginTop=7;
|
//dr3.style.marginTop = 7;
|
||||||
div.appendChild(dr3);
|
div.appendChild(dr3);
|
||||||
//div.appendChild(document.createElement("p"));
|
//div.appendChild(document.createElement("p"));
|
||||||
|
|
||||||
var dr4 = document.createElement("img");
|
var dr4 = document.createElement("img");
|
||||||
dr4.src = this.options.images_dir+"3.gif";
|
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;
|
//dr4.style.marginTop = 7;
|
||||||
div.appendChild(dr4);
|
div.appendChild(dr4);
|
||||||
//div.appendChild(document.createElement("p"));
|
//div.appendChild(document.createElement("p"));
|
||||||
|
|
||||||
var dr5 = document.createElement("img");
|
var dr5 = document.createElement("img");
|
||||||
dr5.src = this.options.images_dir+"4.gif";
|
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;
|
//dr5.style.marginTop = 7;
|
||||||
div.appendChild(dr5);
|
div.appendChild(dr5);
|
||||||
|
|
||||||
var dr6 = document.createElement("img");
|
var dr6 = document.createElement("img");
|
||||||
dr6.src = this.options.images_dir+"5.gif";
|
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);
|
div.appendChild(dr6);
|
||||||
|
|
||||||
var fin = document.createElement("img");
|
var fin = document.createElement("img");
|
||||||
fin.src = this.options.images_dir+"6.gif";
|
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);
|
div.appendChild(fin);
|
||||||
|
|
||||||
var ini = document.createElement("img");
|
var ini = document.createElement("img");
|
||||||
ini.src = this.options.images_dir+"7.gif";
|
ini.src = this.options.images_dir + "7.gif";
|
||||||
ini.title = "Starting task";
|
ini.title = _("ID_START_TASK");
|
||||||
div.appendChild(ini);
|
div.appendChild(ini);
|
||||||
|
|
||||||
/*var dis = document.createElement("img");
|
/*var dis = document.createElement("img");
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ Ext.onReady(function(){
|
|||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
xtype: 'tbbutton',
|
xtype: 'tbbutton',
|
||||||
text : 'Three Columns',
|
text : _("ID_DASHBOARD_BTNCOLUMNS3"),
|
||||||
handler : function(a) {
|
handler : function(a) {
|
||||||
var vp = Ext.getCmp('viewportDashboard');
|
var vp = Ext.getCmp('viewportDashboard');
|
||||||
var pd = Ext.getCmp('portalDashboard');
|
var pd = Ext.getCmp('portalDashboard');
|
||||||
@@ -40,7 +40,7 @@ Ext.onReady(function(){
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
xtype: 'tbbutton',
|
xtype: 'tbbutton',
|
||||||
text : 'Two Columns',
|
text : _("ID_DASHBOARD_BTNCOLUMNS2"),
|
||||||
handler : function(a) {
|
handler : function(a) {
|
||||||
var vp = Ext.getCmp('viewportDashboard');
|
var vp = Ext.getCmp('viewportDashboard');
|
||||||
var pd = Ext.getCmp('portalDashboard');
|
var pd = Ext.getCmp('portalDashboard');
|
||||||
|
|||||||
Reference in New Issue
Block a user