Skip to content
GitLab
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Zvonimir
ISPConfig 3
Commits
11b3daff
Commit
11b3daff
authored
Aug 11, 2009
by
tbrehm
Browse files
Fixed: FS#822 - Main tabs at top not applying translations.
parent
94ffe9d0
Changes
493
Hide whitespace changes
Inline
Side-by-side
interface/lib/classes/listform_actions.inc.php
View file @
11b3daff
...
...
@@ -143,7 +143,7 @@ class listform_actions {
include
(
$lng_file
);
$app
->
tpl
->
setVar
(
$wb
);
$app
->
tpl
->
setVar
(
'toolsarea_head_txt'
,
$app
->
lng
(
'toolsarea_head_txt'
));
$app
->
tpl
->
setVar
(
$app
->
listform
->
wordbook
);
$app
->
tpl
->
setVar
(
'form_action'
,
$app
->
listform
->
listDef
[
'file'
]);
...
...
interface/lib/classes/listform_tpl_generator.inc.php
View file @
11b3daff
<?php
/*
Copyright (c) 2007, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of ISPConfig nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
class
listform_tpl_generator
{
function
buildHTML
(
$listDef
,
$module
=
''
)
{
global
$app
;
if
(
$module
==
''
)
$module
=
$_SESSION
[
"s"
][
"module"
][
"name"
];
$lang
=
array
();
$html
=
'<h2><tmpl_var name="list_head_txt"></h2>
<div class="panel panel_list_'
.
$listDef
[
"name"
]
.
'">
<div class="pnl_toolsarea">
<fieldset><legend>
Tools
</legend>
<div class="buttons">
<button class="iconstxt icoAdd" type="button" onClick="'
.
"loadContent('"
.
$module
.
"/"
.
$listDef
[
"edit_file"
]
.
"');"
.
'">
<span>{tmpl_var name="add_new_record_txt"}</span>
</button>
</div>
</fieldset>
</div>
<div class="pnl_listarea">
<fieldset><legend><tmpl_var name="list_head_txt"></legend>
<table class="list">
<thead>
<tr>
'
;
$lang
[
"list_head_txt"
]
=
$listDef
[
"name"
];
foreach
(
$listDef
[
"item"
]
as
$field
)
{
$key
=
$field
[
"field"
];
$html
.
=
" <th class=
\"
tbl_col_"
.
$key
.
"
\"
scope=
\"
col
\"
><tmpl_var name=
\"
"
.
$key
.
"_txt
\"
></th>
\r\n
"
;
$lang
[
$key
.
"_txt"
]
=
$key
;
}
$html
.
=
' <th class="tbl_col_buttons" scope="col"> </th>
</tr>
<tr>
'
;
foreach
(
$listDef
[
"item"
]
as
$field
)
{
$key
=
$field
[
"field"
];
if
(
$field
[
"formtype"
]
==
'SELECT'
)
{
$html
.
=
" <td class=
\"
tbl_col_"
.
$key
.
"
\"
><select name=
\"
"
.
$listDef
[
"search_prefix"
]
.
$key
.
"
\"
onChange=
\"
submitForm('pageForm','"
.
$module
.
"/"
.
$listDef
[
"file"
]
.
"');
\"
>{tmpl_var name='"
.
$listDef
[
"search_prefix"
]
.
$key
.
"'}</select></td>
\r\n
"
;
}
else
{
$html
.
=
" <td class=
\"
tbl_col_"
.
$key
.
"
\"
><input type=
\"
text
\"
name=
\"
"
.
$listDef
[
"search_prefix"
]
.
$key
.
"
\"
value=
\"
{tmpl_var name='"
.
$listDef
[
"search_prefix"
]
.
$key
.
"'}
\"
/></td>
\r\n
"
;
}
}
$html
.
=
' <td class="tbl_col_buttons"><div class="buttons"><button type="button" class="icons16 icoFilter" name="Filter" id="Filter" value="{tmpl_var name="filter_txt"}" onClick="'
.
"submitForm('pageForm','"
.
$module
.
"/"
.
$listDef
[
"file"
]
.
"');"
.
'"><span>{tmpl_var name="filter_txt"}</span></button></div></td>
</tr>
</thead>
<tbody>
<tmpl_loop name="records">
<tr class="tbl_row_<tmpl_if name=\'__EVEN__\'}even<tmpl_else>uneven</tmpl_if>">
'
;
foreach
(
$listDef
[
"item"
]
as
$field
)
{
$key
=
$field
[
"field"
];
$html
.
=
" <td class=
\"
tbl_col_"
.
$key
.
"
\"
><a href=
\"
#
\"
onClick=
\"
loadContent('"
.
$module
.
"/"
.
$listDef
[
"edit_file"
]
.
"?id={tmpl_var name='id'}');
\"
>{tmpl_var name=
\"
"
.
$key
.
"
\"
}</a></td>
\r\n
"
;
}
$html
.
=
" <td class=
\"
tbl_col_buttons
\"
>
<div class=
\"
buttons icons16
\"
>
<a class=
\"
icons16 icoDelete
\"
href=
\"
javascript: del_record('"
.
$module
.
"/"
.
$listDef
[
"delete_file"
]
.
"?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');
\"
><span>{tmpl_var name='delete_txt'}</span></a>
</div>
</td>
</tr>
</tmpl_loop>
</tbody>"
;
$html
.
=
'
<tfoot>
<tr>
<td class="tbl_footer tbl_paging" colspan="'
.
(
count
(
$listDef
[
"item"
])
+
1
)
.
'"><tmpl_var name="paging"></td>
</tr>
</tfoot>
</table>
</fieldset>
</div>
</div>
'
;
if
(
$module
==
''
)
{
$filename
=
'templates/'
.
$listDef
[
"name"
]
.
'_list.htm'
;
}
else
{
$filename
=
'../'
.
$module
.
'/templates/'
.
$listDef
[
"name"
]
.
'_list.htm'
;
}
// save template
if
(
!
$handle
=
fopen
(
$filename
,
'w'
))
{
print
"Cannot open file (
$filename
)"
;
exit
;
}
if
(
!
fwrite
(
$handle
,
$html
))
{
print
"Cannot write to file (
$filename
)"
;
exit
;
}
fclose
(
$handle
);
}
}
<?php
/*
Copyright (c) 2007, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of ISPConfig nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
class
listform_tpl_generator
{
function
buildHTML
(
$listDef
,
$module
=
''
)
{
global
$app
;
if
(
$module
==
''
)
$module
=
$_SESSION
[
"s"
][
"module"
][
"name"
];
$lang
=
array
();
$html
=
'<h2><tmpl_var name="list_head_txt"></h2>
<div class="panel panel_list_'
.
$listDef
[
"name"
]
.
'">
<div class="pnl_toolsarea">
<fieldset><legend>
{tmpl_var name="toolsarea_head_txt"}
</legend>
<div class="buttons">
<button class="iconstxt icoAdd" type="button" onClick="'
.
"loadContent('"
.
$module
.
"/"
.
$listDef
[
"edit_file"
]
.
"');"
.
'">
<span>{tmpl_var name="add_new_record_txt"}</span>
</button>
</div>
</fieldset>
</div>
<div class="pnl_listarea">
<fieldset><legend><tmpl_var name="list_head_txt"></legend>
<table class="list">
<thead>
<tr>
'
;
$lang
[
"list_head_txt"
]
=
$listDef
[
"name"
];
foreach
(
$listDef
[
"item"
]
as
$field
)
{
$key
=
$field
[
"field"
];
$html
.
=
" <th class=
\"
tbl_col_"
.
$key
.
"
\"
scope=
\"
col
\"
><tmpl_var name=
\"
"
.
$key
.
"_txt
\"
></th>
\r\n
"
;
$lang
[
$key
.
"_txt"
]
=
$key
;
}
$html
.
=
' <th class="tbl_col_buttons" scope="col"> </th>
</tr>
<tr>
'
;
foreach
(
$listDef
[
"item"
]
as
$field
)
{
$key
=
$field
[
"field"
];
if
(
$field
[
"formtype"
]
==
'SELECT'
)
{
$html
.
=
" <td class=
\"
tbl_col_"
.
$key
.
"
\"
><select name=
\"
"
.
$listDef
[
"search_prefix"
]
.
$key
.
"
\"
onChange=
\"
submitForm('pageForm','"
.
$module
.
"/"
.
$listDef
[
"file"
]
.
"');
\"
>{tmpl_var name='"
.
$listDef
[
"search_prefix"
]
.
$key
.
"'}</select></td>
\r\n
"
;
}
else
{
$html
.
=
" <td class=
\"
tbl_col_"
.
$key
.
"
\"
><input type=
\"
text
\"
name=
\"
"
.
$listDef
[
"search_prefix"
]
.
$key
.
"
\"
value=
\"
{tmpl_var name='"
.
$listDef
[
"search_prefix"
]
.
$key
.
"'}
\"
/></td>
\r\n
"
;
}
}
$html
.
=
' <td class="tbl_col_buttons"><div class="buttons"><button type="button" class="icons16 icoFilter" name="Filter" id="Filter" value="{tmpl_var name="filter_txt"}" onClick="'
.
"submitForm('pageForm','"
.
$module
.
"/"
.
$listDef
[
"file"
]
.
"');"
.
'"><span>{tmpl_var name="filter_txt"}</span></button></div></td>
</tr>
</thead>
<tbody>
<tmpl_loop name="records">
<tr class="tbl_row_<tmpl_if name=\'__EVEN__\'}even<tmpl_else>uneven</tmpl_if>">
'
;
foreach
(
$listDef
[
"item"
]
as
$field
)
{
$key
=
$field
[
"field"
];
$html
.
=
" <td class=
\"
tbl_col_"
.
$key
.
"
\"
><a href=
\"
#
\"
onClick=
\"
loadContent('"
.
$module
.
"/"
.
$listDef
[
"edit_file"
]
.
"?id={tmpl_var name='id'}');
\"
>{tmpl_var name=
\"
"
.
$key
.
"
\"
}</a></td>
\r\n
"
;
}
$html
.
=
" <td class=
\"
tbl_col_buttons
\"
>
<div class=
\"
buttons icons16
\"
>
<a class=
\"
icons16 icoDelete
\"
href=
\"
javascript: del_record('"
.
$module
.
"/"
.
$listDef
[
"delete_file"
]
.
"?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');
\"
><span>{tmpl_var name='delete_txt'}</span></a>
</div>
</td>
</tr>
</tmpl_loop>
</tbody>"
;
$html
.
=
'
<tfoot>
<tr>
<td class="tbl_footer tbl_paging" colspan="'
.
(
count
(
$listDef
[
"item"
])
+
1
)
.
'"><tmpl_var name="paging"></td>
</tr>
</tfoot>
</table>
</fieldset>
</div>
</div>
'
;
if
(
$module
==
''
)
{
$filename
=
'templates/'
.
$listDef
[
"name"
]
.
'_list.htm'
;
}
else
{
$filename
=
'../'
.
$module
.
'/templates/'
.
$listDef
[
"name"
]
.
'_list.htm'
;
}
// save template
if
(
!
$handle
=
fopen
(
$filename
,
'w'
))
{
print
"Cannot open file (
$filename
)"
;
exit
;
}
if
(
!
fwrite
(
$handle
,
$html
))
{
print
"Cannot write to file (
$filename
)"
;
exit
;
}
fclose
(
$handle
);
}
}
?>
\ No newline at end of file
interface/lib/classes/tform.inc.php
View file @
11b3daff
...
...
@@ -1232,6 +1232,30 @@ class tform {
return
$check_passed
;
}
//* get the difference record of two arrays
function
getDiffRecord
(
$record_old
,
$record_new
)
{
if
(
is_array
(
$record_new
)
&&
count
(
$record_new
)
>
0
)
{
foreach
(
$record_new
as
$key
=>
$val
)
{
if
(
@
$record_old
[
$key
]
!=
$val
)
{
// Record has changed
$diffrec
[
$key
]
=
array
(
'old'
=>
@
$record_old
[
$key
],
'new'
=>
$val
);
}
}
}
elseif
(
is_array
(
$record_old
))
{
foreach
(
$record_old
as
$key
=>
$val
)
{
if
(
$record_new
[
$key
]
!=
$val
)
{
// Record has changed
$diffrec
[
$key
]
=
array
(
'new'
=>
$record_new
[
$key
],
'old'
=>
$val
);
}
}
}
return
$diffrec
;
}
}
...
...
interface/lib/lang/bg.lng
View file @
11b3daff
...
...
@@ -21,4 +21,13 @@ $wb['filter_txt'] = 'Filter';
$wb
[
'add_new_record_txt'
]
=
'Add new record'
;
$wb
[
'btn_save_txt'
]
=
'Save'
;
$wb
[
'btn_cancel_txt'
]
=
'Cancel'
;
$wb
[
'System'
]
=
'System'
;
$wb
[
'Client'
]
=
'Client'
;
$wb
[
'Email'
]
=
'Email'
;
$wb
[
'Monitor'
]
=
'Monitor'
;
$wb
[
'Sites'
]
=
'Sites'
;
$wb
[
'DNS'
]
=
'DNS'
;
$wb
[
'Tools'
]
=
'Tools'
;
$wb
[
'Help'
]
=
'Help'
;
$wb
[
'toolsarea_head_txt'
]
=
'Tools'
;
?>
interface/lib/lang/br.lng
View file @
11b3daff
...
...
@@ -21,5 +21,13 @@ $wb['filter_txt'] = 'Filtrar';
$wb
[
'add_new_record_txt'
]
=
'Adcionar novo registro'
;
$wb
[
'btn_save_txt'
]
=
'Salvar'
;
$wb
[
'btn_cancel_txt'
]
=
'Voltar'
;
$wb
[
'System'
]
=
'System'
;
$wb
[
'Client'
]
=
'Client'
;
$wb
[
'Email'
]
=
'Email'
;
$wb
[
'Monitor'
]
=
'Monitor'
;
$wb
[
'Sites'
]
=
'Sites'
;
$wb
[
'DNS'
]
=
'DNS'
;
$wb
[
'Tools'
]
=
'Tools'
;
$wb
[
'Help'
]
=
'Help'
;
$wb
[
'toolsarea_head_txt'
]
=
'Tools'
;
?>
interface/lib/lang/de.lng
View file @
11b3daff
<?php
$wb
[
'conf_format_dateshort'
]
=
'd.m.Y'
;
$wb
[
'conf_format_datelong'
]
=
'l, d. F Y'
;
$wb
[
'conf_format_timeshort'
]
=
'H:i'
;
$wb
[
'conf_format_timelong'
]
=
'H:i:s'
;
$wb
[
'conf_format_datetime'
]
=
'd.m.Y H:i'
;
$wb
[
'301'
]
=
'Modul für Benutzer nicht erlaubt.'
;
$wb
[
'302'
]
=
'Modul ungültig.'
;
$wb
[
'1001'
]
=
'Der Benutzername und das Passwort dürfen nicht leer sein!'
;
$wb
[
'1002'
]
=
'Der Benutzername und/oder das Passwort sind nicht korrekt!'
;
$wb
[
'1003'
]
=
'Der Benutzername ist deaktiviert!'
;
$wb
[
'delete_confirmation'
]
=
'Wollen Sie den Datensatz wirklich löschen?'
;
$wb
[
'error_no_view_permission'
]
=
'Sie haben nicht die Berechtigung, den Datensatz zu lesen, oder der Datensatz existiert nicht!'
;
$wb
[
'error_no_delete_permission'
]
=
'Sie haben nicht die Berechtigung, den Datensatz zu löschen!'
;
$wb
[
'page_txt'
]
=
'Seite'
;
$wb
[
'page_of_txt'
]
=
'von'
;
$wb
[
'page_next_txt'
]
=
'Weiter'
;
$wb
[
'page_back_txt'
]
=
'Zurück'
;
$wb
[
'delete_txt'
]
=
'Löschen'
;
$wb
[
'filter_txt'
]
=
'Filter'
;
$wb
[
'add_new_record_txt'
]
=
'Neuen Datensatz hinzufügen'
;
$wb
[
'btn_save_txt'
]
=
'Speichern'
;
$wb
[
'btn_cancel_txt'
]
=
'Abbrechen'
;
?>
<?php
$wb
[
'conf_format_dateshort'
]
=
'd.m.Y'
;
$wb
[
'conf_format_datelong'
]
=
'l, d. F Y'
;
$wb
[
'conf_format_timeshort'
]
=
'H:i'
;
$wb
[
'conf_format_timelong'
]
=
'H:i:s'
;
$wb
[
'conf_format_datetime'
]
=
'd.m.Y H:i'
;
$wb
[
'301'
]
=
'Modul für Benutzer nicht erlaubt.'
;
$wb
[
'302'
]
=
'Modul ungültig.'
;
$wb
[
'1001'
]
=
'Der Benutzername und das Passwort dürfen nicht leer sein!'
;
$wb
[
'1002'
]
=
'Der Benutzername und/oder das Passwort sind nicht korrekt!'
;
$wb
[
'1003'
]
=
'Der Benutzername ist deaktiviert!'
;
$wb
[
'delete_confirmation'
]
=
'Wollen Sie den Datensatz wirklich löschen?'
;
$wb
[
'error_no_view_permission'
]
=
'Sie haben nicht die Berechtigung, den Datensatz zu lesen, oder der Datensatz existiert nicht!'
;
$wb
[
'error_no_delete_permission'
]
=
'Sie haben nicht die Berechtigung, den Datensatz zu löschen!'
;
$wb
[
'page_txt'
]
=
'Seite'
;
$wb
[
'page_of_txt'
]
=
'von'
;
$wb
[
'page_next_txt'
]
=
'Weiter'
;
$wb
[
'page_back_txt'
]
=
'Zurück'
;
$wb
[
'delete_txt'
]
=
'Löschen'
;
$wb
[
'filter_txt'
]
=
'Filter'
;
$wb
[
'add_new_record_txt'
]
=
'Neuen Datensatz hinzufügen'
;
$wb
[
'btn_save_txt'
]
=
'Speichern'
;
$wb
[
'btn_cancel_txt'
]
=
'Abbrechen'
;
$wb
[
'System'
]
=
'System'
;
$wb
[
'Client'
]
=
'Client'
;
$wb
[
'Email'
]
=
'Email'
;
$wb
[
'Monitor'
]
=
'Monitor'
;
$wb
[
'Sites'
]
=
'Sites'
;
$wb
[
'DNS'
]
=
'DNS'
;
$wb
[
'Tools'
]
=
'Tools'
;
$wb
[
'Help'
]
=
'Help'
;
$wb
[
'toolsarea_head_txt'
]
=
'Tools'
;
?>
interface/lib/lang/en.lng
View file @
11b3daff
...
...
@@ -22,4 +22,13 @@ $wb["filter_txt"] = 'Filter';
$wb
[
"add_new_record_txt"
]
=
'Add new record'
;
$wb
[
'btn_save_txt'
]
=
"Save"
;
$wb
[
'btn_cancel_txt'
]
=
"Back"
;
$wb
[
'System'
]
=
'System'
;
$wb
[
'Client'
]
=
'Client'
;
$wb
[
'Email'
]
=
'Email'
;
$wb
[
'Monitor'
]
=
'Monitor'
;
$wb
[
'Sites'
]
=
'Sites'
;
$wb
[
'DNS'
]
=
'DNS'
;
$wb
[
'Tools'
]
=
'Tools'
;
$wb
[
'Help'
]
=
'Help'
;
$wb
[
'toolsarea_head_txt'
]
=
'Tools'
;
?>
interface/lib/lang/es.lng
View file @
11b3daff
...
...
@@ -21,4 +21,13 @@ $wb['filter_txt'] = 'Filter';
$wb
[
'add_new_record_txt'
]
=
'Add new record'
;
$wb
[
'btn_save_txt'
]
=
'Save'
;
$wb
[
'btn_cancel_txt'
]
=
'Cancel'
;
$wb
[
'System'
]
=
'System'
;
$wb
[
'Client'
]
=
'Client'
;
$wb
[
'Email'
]
=
'Email'
;
$wb
[
'Monitor'
]
=
'Monitor'
;
$wb
[
'Sites'
]
=
'Sites'
;
$wb
[
'DNS'
]
=
'DNS'
;
$wb
[
'Tools'
]
=
'Tools'
;
$wb
[
'Help'
]
=
'Help'
;
$wb
[
'toolsarea_head_txt'
]
=
'Tools'
;
?>
interface/lib/lang/fi.lng
View file @
11b3daff
...
...
@@ -21,4 +21,13 @@ $wb['filter_txt'] = 'Suodatin';
$wb
[
'add_new_record_txt'
]
=
'Lisää uusi tietue'
;
$wb
[
'btn_save_txt'
]
=
'Tallenna'
;
$wb
[
'btn_cancel_txt'
]
=
'Keskeytä'
;
$wb
[
'System'
]
=
'System'
;
$wb
[
'Client'
]
=
'Client'
;
$wb
[
'Email'
]
=
'Email'
;
$wb
[
'Monitor'
]
=
'Monitor'
;
$wb
[
'Sites'
]
=
'Sites'
;
$wb
[
'DNS'
]
=
'DNS'
;
$wb
[
'Tools'
]
=
'Tools'
;
$wb
[
'Help'
]
=
'Help'
;
$wb
[
'toolsarea_head_txt'
]
=
'Tools'
;
?>
interface/lib/lang/fr.lng
View file @
11b3daff
...
...
@@ -21,4 +21,13 @@ $wb['filter_txt'] = 'Filter';
$wb
[
'add_new_record_txt'
]
=
'Add new record'
;
$wb
[
'btn_save_txt'
]
=
'Save'
;
$wb
[
'btn_cancel_txt'
]
=
'Cancel'
;
$wb
[
'System'
]
=
'System'
;
$wb
[
'Client'
]
=
'Client'
;
$wb
[
'Email'
]
=
'Email'
;
$wb
[
'Monitor'
]
=
'Monitor'
;
$wb
[
'Sites'
]
=
'Sites'
;
$wb
[
'DNS'
]
=
'DNS'
;
$wb
[
'Tools'
]
=
'Tools'
;
$wb
[
'Help'
]
=
'Help'
;
$wb
[
'toolsarea_head_txt'
]
=
'Tools'
;
?>
interface/lib/lang/it.lng
View file @
11b3daff
...
...
@@ -21,4 +21,13 @@ $wb['filter_txt'] = 'Filtro';
$wb
[
'add_new_record_txt'
]
=
'Aggiungi nuovo record'
;
$wb
[
'btn_save_txt'
]
=
'Salva'
;
$wb
[
'btn_cancel_txt'
]
=
'Indietro'
;
$wb
[
'System'
]
=
'System'
;
$wb
[
'Client'
]
=
'Client'
;
$wb
[
'Email'
]
=
'Email'
;
$wb
[
'Monitor'
]
=
'Monitor'
;
$wb
[
'Sites'
]
=
'Sites'
;
$wb
[
'DNS'
]
=
'DNS'
;
$wb
[
'Tools'
]
=
'Tools'
;
$wb
[
'Help'
]
=
'Help'
;
$wb
[
'toolsarea_head_txt'
]
=
'Tools'
;
?>
interface/lib/lang/nl.lng
View file @
11b3daff
...
...
@@ -21,4 +21,13 @@ $wb['filter_txt'] = 'Filter';
$wb
[
'add_new_record_txt'
]
=
'Add new record'
;
$wb
[
'btn_save_txt'
]
=
'Save'
;
$wb
[
'btn_cancel_txt'
]
=
'Cancel'
;
$wb
[
'System'
]
=
'System'
;
$wb
[
'Client'
]
=
'Client'
;
$wb
[
'Email'
]
=
'Email'
;
$wb
[
'Monitor'
]
=
'Monitor'
;
$wb
[
'Sites'
]
=
'Sites'
;
$wb
[
'DNS'
]
=
'DNS'
;
$wb
[
'Tools'
]
=
'Tools'
;
$wb
[
'Help'
]
=
'Help'
;
$wb
[
'toolsarea_head_txt'
]
=
'Tools'
;
?>
interface/lib/lang/pl.lng
View file @
11b3daff
<?php
$wb
[
'conf_format_dateshort'
]
=
'Y-m-d'
;
$wb
[
'conf_format_datelong'
]
=
'l dS of F Y'
;
$wb
[
'conf_format_timeshort'
]
=
'H:i'
;
$wb
[
'conf_format_timelong'
]
=
'H:i:s'
;
$wb
[
'conf_format_datetime'
]
=
'Y-m-d H:i'
;
$wb
[
'301'
]
=
'Moduł nie jest dostępny dla aktualnego uzytkownika.'
;
$wb
[
'302'
]
=
'Moduł jest niepoprawny.'
;
$wb
[
'1001'
]
=
'Nazwa użytkownika i hasło nie może być puste !'
;
$wb
[
'1002'
]
=
'Nazwa użytkownika i/lub hasło nie są poprawne !'
;
$wb
[
'1003'
]
=
'Nazwa użytkownika nie jest aktywna!'
;
$wb
[
'delete_confirmation'
]
=
'Jesteś pewny, że chcesz usunąć ten wpis?'
;
$wb
[
'error_no_view_permission'
]
=
'Nie masz uprawnień do podglądu tego wpisu lub taki wpis nie istnieje!'
;
$wb
[
'error_no_delete_permission'
]
=
'Nie masz uprawnień do usunięcia tego wpisu!'
;
$wb
[
"page_txt"
]
=
'Strona'
;
$wb
[
"page_of_txt"
]
=
'z'
;
$wb
[
"page_next_txt"
]
=
'Następna'
;
$wb
[
"page_back_txt"
]
=
'Wróć'
;
$wb
[
"delete_txt"
]
=
'Usuń'
;
$wb
[
"filter_txt"
]
=
'Filtr'
;
$wb
[
"add_new_record_txt"
]
=
'Dodaj nowy wpis'
;
$wb
[
'btn_save_txt'
]
=
"Zapisz"
;
$wb
[
'btn_cancel_txt'
]
=
"Wróć"
;
?>
<?php
$wb
[
'conf_format_dateshort'
]
=
'Y-m-d'
;
$wb
[
'conf_format_datelong'
]
=
'l dS of F Y'
;
$wb
[
'conf_format_timeshort'
]
=
'H:i'
;
$wb
[
'conf_format_timelong'
]
=
'H:i:s'
;
$wb
[
'conf_format_datetime'
]
=
'Y-m-d H:i'
;
$wb
[
'301'
]
=
'Moduł nie jest dostępny dla aktualnego uzytkownika.'
;
$wb
[
'302'
]
=
'Moduł jest niepoprawny.'
;
$wb
[
'1001'
]
=
'Nazwa użytkownika i hasło nie może być puste !'
;
$wb
[
'1002'
]
=
'Nazwa użytkownika i/lub hasło nie są poprawne !'
;
$wb
[
'1003'
]
=
'Nazwa użytkownika nie jest aktywna!'
;
$wb
[
'delete_confirmation'
]
=
'Jesteś pewny, że chcesz usunąć ten wpis?'
;
$wb
[
'error_no_view_permission'
]
=
'Nie masz uprawnień do podglądu tego wpisu lub taki wpis nie istnieje!'
;
$wb
[
'error_no_delete_permission'
]
=
'Nie masz uprawnień do usunięcia tego wpisu!'
;
$wb
[
'page_txt'
]
=
'Strona'
;
$wb
[
'page_of_txt'
]
=
'z'
;
$wb
[
'page_next_txt'
]
=
'Następna'
;
$wb
[
'page_back_txt'
]
=
'Wróć'
;
$wb
[
'delete_txt'
]
=
'Usuń'
;
$wb
[
'filter_txt'
]
=
'Filtr'
;
$wb
[
'add_new_record_txt'
]
=
'Dodaj nowy wpis'
;
$wb
[
'btn_save_txt'
]
=
'Zapisz'
;
$wb
[
'btn_cancel_txt'
]
=
'Wróć'
;
$wb
[
'System'
]
=
'System'
;
$wb
[
'Client'
]
=
'Client'
;
$wb
[
'Email'
]
=
'Email'
;
$wb
[
'Monitor'
]
=
'Monitor'
;
$wb
[
'Sites'
]
=
'Sites'
;
$wb
[
'DNS'
]
=
'DNS'
;
$wb
[
'Tools'
]
=
'Tools'
;
$wb
[
'Help'
]
=
'Help'
;
$wb
[
'toolsarea_head_txt'
]
=
'Tools'
;
?>
interface/lib/lang/ru.lng
View file @
11b3daff
...
...
@@ -21,4 +21,13 @@ $wb['filter_txt'] = 'Filter';
$wb
[
'add_new_record_txt'
]
=
'Add new record'
;
$wb
[
'btn_save_txt'
]
=
'Save'
;
$wb
[
'btn_cancel_txt'
]
=
'Cancel'
;
$wb
[
'System'
]
=
'System'
;
$wb
[
'Client'
]
=
'Client'
;
$wb
[
'Email'
]
=
'Email'
;
$wb
[
'Monitor'
]
=
'Monitor'
;
$wb
[
'Sites'
]
=
'Sites'
;
$wb
[
'DNS'
]
=
'DNS'
;
$wb
[
'Tools'
]
=
'Tools'
;
$wb
[
'Help'
]
=
'Help'
;
$wb
[
'toolsarea_head_txt'
]
=
'Tools'
;
?>
interface/lib/lang/se.lng
View file @
11b3daff
...
...
@@ -21,4 +21,13 @@ $wb['filter_txt'] = 'Filter';
$wb
[
'add_new_record_txt'
]
=
'Add new record'
;
$wb
[
'btn_save_txt'
]
=
'Save'
;
$wb
[
'btn_cancel_txt'
]
=
'Cancel'
;
$wb
[
'System'
]
=
'System'
;
$wb
[
'Client'
]
=
'Client'
;
$wb
[
'Email'
]
=
'Email'
;
$wb
[
'Monitor'
]
=
'Monitor'
;
$wb
[
'Sites'
]
=
'Sites'
;
$wb
[
'DNS'
]
=
'DNS'
;
$wb
[
'Tools'
]
=
'Tools'
;
$wb
[
'Help'
]
=
'Help'
;
$wb
[
'toolsarea_head_txt'
]
=
'Tools'
;