mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-30 04:01:05 -05:00
17 lines
363 B
PHP
17 lines
363 B
PHP
<script type="text/javascript">
|
|
(function(lang, $) {
|
|
|
|
var lines = {
|
|
'common_submit' : "<?php echo lang('Common.submit') ?>",
|
|
'common_close' : "<?php echo lang('Common.close') ?>"
|
|
};
|
|
|
|
$.extend(lang, {
|
|
line: function(key) {
|
|
return lines[key];
|
|
}
|
|
});
|
|
|
|
|
|
})(window.lang = window.lang || {}, jQuery);
|
|
</script> |