1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-24 02:03:52 +03:00

Update languages

(cherry picked from commit 3b4cb9d623433c9d2a0402d6d0a2c900139424b5)
This commit is contained in:
Daniel Molina 2013-07-16 16:55:26 +02:00
parent c8277afef9
commit 89d7d8f854
25 changed files with 41912 additions and 19445 deletions

View File

@ -318,10 +318,12 @@ SUNSTONE_DIRS="$SUNSTONE_LOCATION/routes \
$SUNSTONE_LOCATION/public/locale \
$SUNSTONE_LOCATION/public/locale/ca \
$SUNSTONE_LOCATION/public/locale/cs_CZ \
$SUNSTONE_LOCATION/public/locale/da \
$SUNSTONE_LOCATION/public/locale/de \
$SUNSTONE_LOCATION/public/locale/el_GR \
$SUNSTONE_LOCATION/public/locale/en_US \
$SUNSTONE_LOCATION/public/locale/es_ES \
$SUNSTONE_LOCATION/public/locale/da \
$SUNSTONE_LOCATION/public/locale/fa_IR \
$SUNSTONE_LOCATION/public/locale/fr_FR \
$SUNSTONE_LOCATION/public/locale/it_IT \
@ -571,6 +573,7 @@ INSTALL_SUNSTONE_FILES=(
SUNSTONE_PUBLIC_LOCALE_CA:$SUNSTONE_LOCATION/public/locale/ca
SUNSTONE_PUBLIC_LOCALE_CS_CZ:$SUNSTONE_LOCATION/public/locale/cs_CZ
SUNSTONE_PUBLIC_LOCALE_DE:$SUNSTONE_LOCATION/public/locale/de
SUNSTONE_PUBLIC_LOCALE_DA:$SUNSTONE_LOCATION/public/locale/da
SUNSTONE_PUBLIC_LOCALE_EL_GR:$SUNSTONE_LOCATION/public/locale/el_GR
SUNSTONE_PUBLIC_LOCALE_EN_US:$SUNSTONE_LOCATION/public/locale/en_US
SUNSTONE_PUBLIC_LOCALE_ES_ES:$SUNSTONE_LOCATION/public/locale/es_ES
@ -1703,6 +1706,10 @@ SUNSTONE_PUBLIC_LOCALE_DE="\
src/sunstone/locale/languages/de.js \
src/sunstone/locale/languages/de_datatable.txt"
SUNSTONE_PUBLIC_LOCALE_DA="\
src/sunstone/locale/languages/da.js \
src/sunstone/locale/languages/da_datatable.txt"
SUNSTONE_PUBLIC_LOCALE_EL_GR="\
src/sunstone/locale/languages/el_GR.js \
src/sunstone/locale/languages/el_datatable.txt"

1
src/sunstone/locale/languages/SConstruct Normal file → Executable file
View File

@ -26,6 +26,7 @@ env.Append(BUILDERS = {'Po' : po_bld})
env.Po('ca.po')
env.Po('cs_CZ.po')
env.Po('da.po')
env.Po('de.po')
env.Po('el_GR.po')
env.Po('en_US.po')

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,17 @@
{
"sProcessing": "Henter...",
"sLengthMenu": "Vis _MENU_ linjer",
"sZeroRecords": "Ingen linjer matcher søgningen",
"sInfo": "Viser _START_ til _END_ af _TOTAL_ linjer",
"sInfoEmpty": "Viser 0 til 0 af 0 linjer",
"sInfoFiltered": "(filtreret fra _MAX_ linjer)",
"sInfoPostFix": "",
"sSearch": "Søg:",
"sUrl": "",
"oPaginate": {
"sFirst": "Første",
"sPrevious": "Forrige",
"sNext": "Næste",
"sLast": "Sidste"
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -112,6 +112,7 @@ var config_tab_content =
<option value="ca">Catalan (ca)</option>\
<option value="cs_CZ">Czech (cs_CZ)</option>\
<option value="nl_NL">Dutch (nl_NL)</option>\
<option value="da">Danish (da)</option>\
<option value="fr_FR">French (fr_FR)</option>\
<option value="de">German (de)</option>\
<option value="el_GR">Greek (el_GR)</option>\

View File

@ -680,7 +680,7 @@ function insertButtonsInTab(tab_name, panel_name, panel_buttons, custom_context)
'<ul class="button-group right">'+
'<li>'+
"<div id='more_buttons'>"+
"<div href='#' class='top_button small button secondary dropdown radius'>More "+
"<div href='#' class='top_button small button secondary dropdown radius'> " + tr("More")+
"<ul>"+
"</ul>"+
"</div>"+
@ -745,7 +745,7 @@ function insertButtonsInTab(tab_name, panel_name, panel_buttons, custom_context)
switch (button.layout) {
case "create":
context = $("#create_buttons", buttons_row);
text = button.text ? '<i class="icon-plus-sign"/> ' + button.text : '<i class="icon-plus-sign"/> Create';
text = button.text ? '<i class="icon-plus-sign"/> ' + button.text : '<i class="icon-plus-sign"/> ' + tr("Create");
str_class.push("success", "button", "small", "radius");
button_code = '<button class="'+str_class.join(' ')+'" href="'+button_name+'">'+text+'</button>';
break;
@ -804,7 +804,7 @@ function insertButtonsInTab(tab_name, panel_name, panel_buttons, custom_context)
break;
case "del":
context = $("#delete_buttons", buttons_row);
text = '<i class=" icon-trash"/> Delete';
text = '<i class=" icon-trash"/> ' + tr("Delete");
str_class.push("alert", "button", "small", "radius");
button_code = '<button class="'+str_class.join(' ')+'" href="'+button_name+'">'+text+'</button>';
break;