mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-05-24 08:20:54 -04:00
Added license statement displaying, updated COPYING and other license files (#359)
This commit is contained in:
@@ -42,6 +42,13 @@ IndexIgnore *
|
||||
Satisfy all
|
||||
</Files>
|
||||
|
||||
# prevent access to COPYING
|
||||
<Files COPYING>
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
Satisfy all
|
||||
</Files>
|
||||
|
||||
# prevent access to csv and txt files
|
||||
<FilesMatch "\.(csv|txt)$">
|
||||
Order allow,deny
|
||||
|
||||
4
COPYING
4
COPYING
@@ -21,6 +21,10 @@ subject to the following conditions:
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
The footer signature "You are using Open Source Point Of Sale" with version,
|
||||
hash and link to the original distribution of the code MUST BE RETAINED,
|
||||
MUST BE VISIBLE IN EVERYPAGE and CANNOT BE MODIFIED.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
|
||||
@@ -10,6 +10,55 @@ class Config extends Secure_Controller
|
||||
|
||||
$this->load->library('barcode_lib');
|
||||
}
|
||||
|
||||
/*
|
||||
* This function loads all the licenses starting with the first one being OSPOS one
|
||||
*/
|
||||
private function _licenses()
|
||||
{
|
||||
$i = 0;
|
||||
$license = array();
|
||||
|
||||
$license[$i]['title'] = 'Open Surce Point Of Sale ' . $this->config->item('application_version');
|
||||
|
||||
if(file_exists('COPYING'))
|
||||
{
|
||||
$license[$i]['text'] = $this->xss_clean(file_get_contents('COPYING', NULL, NULL, 0, 2000));
|
||||
}
|
||||
else
|
||||
{
|
||||
$license[$i]['text'] = 'COPYING file must be present in OSPOS root directory. You are not allowed to use OSPOS application until the distribution copy of COPYING file is present.';
|
||||
}
|
||||
|
||||
// read all the files in the dir license
|
||||
$dir = new DirectoryIterator('license');
|
||||
|
||||
foreach($dir as $fileinfo)
|
||||
{
|
||||
// license files must be in couples: .version (name & version) & .license (license text)
|
||||
if($fileinfo->isFile() && $fileinfo->getExtension() == 'version')
|
||||
{
|
||||
++$i;
|
||||
|
||||
$basename = 'license/' . $fileinfo->getBasename('.version');
|
||||
|
||||
$license[$i]['title'] = $this->xss_clean(file_get_contents($basename . '.version', NULL, NULL, 0, 100));
|
||||
|
||||
$license_text_file = $basename . '.license';
|
||||
|
||||
if(file_exists($license_text_file))
|
||||
{
|
||||
$license[$i]['text'] = $this->xss_clean(file_get_contents($license_text_file , NULL, NULL, 0, 2000));
|
||||
}
|
||||
else
|
||||
{
|
||||
$license[$i]['text'] = $license_text_file . ' file is missing';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $license;
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
@@ -18,6 +67,9 @@ class Config extends Secure_Controller
|
||||
$data['logo_exists'] = $this->Appconfig->get('company_logo') != '';
|
||||
|
||||
$data = $this->xss_clean($data);
|
||||
|
||||
// load all the license statements, they are already XSS cleaned in the private function
|
||||
$data['licenses'] = $this->_licenses();
|
||||
|
||||
$this->load->view("configs/manage", $data);
|
||||
}
|
||||
@@ -85,7 +137,7 @@ class Config extends Secure_Controller
|
||||
echo json_encode(array('success' => $success, 'message' => $this->lang->line('config_saved_' . ($success ? '' : 'un') . 'successfully')));
|
||||
}
|
||||
|
||||
function check_number_locale()
|
||||
public function check_number_locale()
|
||||
{
|
||||
$number_locale = $this->input->post('number_locale');
|
||||
$fmt = new \NumberFormatter($number_locale, \NumberFormatter::CURRENCY);
|
||||
@@ -95,7 +147,7 @@ class Config extends Secure_Controller
|
||||
echo json_encode(array('success' => $number_local_example != FALSE, 'number_locale_example' => $number_local_example, 'currency_symbol' => $currency_symbol));
|
||||
}
|
||||
|
||||
function save_locale()
|
||||
public function save_locale()
|
||||
{
|
||||
$batch_save_data = array(
|
||||
'currency_symbol' => $this->input->post('currency_symbol'),
|
||||
|
||||
@@ -39,11 +39,9 @@ $lang["config_company_website_url"] = "Webseite ist nicht in korrektem Format";
|
||||
$lang["config_comma"] = "comma";
|
||||
$lang["config_country_codes"] = "Country Codes";
|
||||
$lang["config_country_codes_tooltip"] = "Comma separated list of country codes for nominatim address lookup.";
|
||||
$lang["config_currency_side"] = "Pos. rechts";
|
||||
$lang["config_currency_symbol"] = "Währungssymbol";
|
||||
$lang["config_currency_decimals"] = "Currency Decimals";
|
||||
$lang["config_custom1"] = "Zusatzfeld 1";
|
||||
$lang["config_custom10"] = "Zusatzfeld 10";
|
||||
$lang["config_custom2"] = "Zusatzfeld 2";
|
||||
$lang["config_custom3"] = "Zusatzfeld 3";
|
||||
$lang["config_custom4"] = "Zusatzfeld 4";
|
||||
@@ -52,6 +50,7 @@ $lang["config_custom6"] = "Zusatzfeld 6";
|
||||
$lang["config_custom7"] = "Zusatzfeld 7";
|
||||
$lang["config_custom8"] = "Zusatzfeld 8";
|
||||
$lang["config_custom9"] = "Zusatzfeld 9";
|
||||
$lang["config_custom10"] = "Zusatzfeld 10";
|
||||
$lang["config_datetimeformat"] = "Datum und Zeit";
|
||||
$lang["config_decimal_point"] = "Dezimaltrennzeichen";
|
||||
$lang["config_default_barcode_font_size_number"] = "Die Barcode Schriftgrösse muss eine Zahl sein";
|
||||
@@ -102,6 +101,8 @@ $lang["config_invoice_printer"] = "Rechnungsdrucker";
|
||||
$lang["config_jsprintsetup_required"] = "Warnung! Diese Funktion ist nur funktionsfähig";
|
||||
$lang["config_language"] = "Sprache";
|
||||
$lang["config_left"] = "Left";
|
||||
$lang["config_license"] = "License";
|
||||
$lang["config_license_configuration"] = "License Statement";
|
||||
$lang["config_lines_per_page"] = "Zeilen pro Seite";
|
||||
$lang["config_lines_per_page_number"] = "Zeilen pro Seite muss eine Zahl sein";
|
||||
$lang["config_lines_per_page_required"] = "Zeilen pro Seite ist erforderlich";
|
||||
|
||||
@@ -39,11 +39,9 @@ $lang["config_company_website_url"] = "Company website is not a valid URL (http:
|
||||
$lang["config_comma"] = "comma";
|
||||
$lang["config_country_codes"] = "Country Codes";
|
||||
$lang["config_country_codes_tooltip"] = "Comma separated list of country codes for nominatim address lookup.";
|
||||
$lang["config_currency_side"] = "Right side";
|
||||
$lang["config_currency_symbol"] = "Currency Symbol";
|
||||
$lang["config_currency_decimals"] = "Currency Decimals";
|
||||
$lang["config_custom1"] = "Custom Field 1";
|
||||
$lang["config_custom10"] = "Custom Field 10";
|
||||
$lang["config_custom2"] = "Custom Field 2";
|
||||
$lang["config_custom3"] = "Custom Field 3";
|
||||
$lang["config_custom4"] = "Custom Field 4";
|
||||
@@ -52,6 +50,7 @@ $lang["config_custom6"] = "Custom Field 6";
|
||||
$lang["config_custom7"] = "Custom Field 7";
|
||||
$lang["config_custom8"] = "Custom Field 8";
|
||||
$lang["config_custom9"] = "Custom Field 9";
|
||||
$lang["config_custom10"] = "Custom Field 10";
|
||||
$lang["config_datetimeformat"] = "Date and Time format";
|
||||
$lang["config_decimal_point"] = "Decimal Point";
|
||||
$lang["config_default_barcode_font_size_number"] = "The default barcode font size must be a number";
|
||||
@@ -102,6 +101,8 @@ $lang["config_invoice_printer"] = "Invoice Printer";
|
||||
$lang["config_jsprintsetup_required"] = "Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?";
|
||||
$lang["config_language"] = "Language";
|
||||
$lang["config_left"] = "Left";
|
||||
$lang["config_license"] = "License";
|
||||
$lang["config_license_configuration"] = "License Statement";
|
||||
$lang["config_lines_per_page"] = "Lines Per Page";
|
||||
$lang["config_lines_per_page_number"] = "";
|
||||
$lang["config_lines_per_page_required"] = "The lines per page is a required field";
|
||||
|
||||
@@ -39,11 +39,9 @@ $lang["config_company_website_url"] = "Sitio Web no es una URL estándar (http:/
|
||||
$lang["config_comma"] = "comma";
|
||||
$lang["config_country_codes"] = "Codigo de pais";
|
||||
$lang["config_country_codes_tooltip"] = "Lista de codigo de paises separado por coma para busqueda de direcciones";
|
||||
$lang["config_currency_side"] = "Lado derecho";
|
||||
$lang["config_currency_symbol"] = "Símbolo de moneda";
|
||||
$lang["config_currency_decimals"] = "Decimales de moneda";
|
||||
$lang["config_custom1"] = "Campo Libre 1";
|
||||
$lang["config_custom10"] = "Campo Libre 10";
|
||||
$lang["config_custom2"] = "Campo Libre 2";
|
||||
$lang["config_custom3"] = "Campo Libre 3";
|
||||
$lang["config_custom4"] = "Campo Libre 4";
|
||||
@@ -52,6 +50,7 @@ $lang["config_custom6"] = "Campo Libre 6";
|
||||
$lang["config_custom7"] = "Campo Libre 7";
|
||||
$lang["config_custom8"] = "Campo Libre 8";
|
||||
$lang["config_custom9"] = "Campo Libre 9";
|
||||
$lang["config_custom10"] = "Campo Libre 10";
|
||||
$lang["config_datetimeformat"] = "Formato de fecha y hora";
|
||||
$lang["config_decimal_point"] = "Punto Decimal";
|
||||
$lang["config_default_barcode_font_size_number"] = "Tamaño de fuente del código de barras debe ser un número";
|
||||
@@ -102,6 +101,8 @@ $lang["config_invoice_printer"] = "Impresora de Factura";
|
||||
$lang["config_jsprintsetup_required"] = "Advertencia!Esta funcionalidad desactivada solo funciona con el addon jsPrintSetup de FireFox instalado. Guardar de todas formas?";
|
||||
$lang["config_language"] = "Idioma";
|
||||
$lang["config_left"] = "Left";
|
||||
$lang["config_license"] = "License";
|
||||
$lang["config_license_configuration"] = "License Statement";
|
||||
$lang["config_lines_per_page"] = "Líneas por página";
|
||||
$lang["config_lines_per_page_number"] = "Líneas por página debe ser un número";
|
||||
$lang["config_lines_per_page_required"] = "Líneas por página es requerido";
|
||||
|
||||
@@ -39,11 +39,9 @@ $lang["config_company_website_url"] = "Le site web de l'entreprise n'est pas une
|
||||
$lang["config_comma"] = "comma";
|
||||
$lang["config_country_codes"] = "Country Codes";
|
||||
$lang["config_country_codes_tooltip"] = "Comma separated list of country codes for nominatim address lookup.";
|
||||
$lang["config_currency_side"] = "Symbole à droite";
|
||||
$lang["config_currency_symbol"] = "Symbole Monétaire";
|
||||
$lang["config_currency_decimals"] = "Currency Decimals";
|
||||
$lang["config_custom1"] = "Champ Personnalisé 1";
|
||||
$lang["config_custom10"] = "Champ Personnalisé 10";
|
||||
$lang["config_custom2"] = "Champ Personnalisé 2";
|
||||
$lang["config_custom3"] = "Champ Personnalisé 3";
|
||||
$lang["config_custom4"] = "Champ Personnalisé 4";
|
||||
@@ -52,6 +50,7 @@ $lang["config_custom6"] = "Champ Personnalisé 6";
|
||||
$lang["config_custom7"] = "Champ Personnalisé 7";
|
||||
$lang["config_custom8"] = "Champ Personnalisé 8";
|
||||
$lang["config_custom9"] = "Champ Personnalisé 9";
|
||||
$lang["config_custom10"] = "Champ Personnalisé 10";
|
||||
$lang["config_datetimeformat"] = "Date and Time format";
|
||||
$lang["config_decimal_point"] = " Decimal Point";
|
||||
$lang["config_default_barcode_font_size_number"] = "The default barcode font size must be a number";
|
||||
@@ -102,6 +101,8 @@ $lang["config_invoice_printer"] = "Invoice Printer";
|
||||
$lang["config_jsprintsetup_required"] = "Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?";
|
||||
$lang["config_language"] = "Langue";
|
||||
$lang["config_left"] = "Left";
|
||||
$lang["config_license"] = "License";
|
||||
$lang["config_license_configuration"] = "License Statement";
|
||||
$lang["config_lines_per_page"] = "Lines Per Page";
|
||||
$lang["config_lines_per_page_number"] = "The lines per page must be a number";
|
||||
$lang["config_lines_per_page_required"] = "The lines per page is a required field";
|
||||
|
||||
@@ -39,11 +39,9 @@ $lang["config_company_website_url"] = "Adresa web stranice nije valjana (http://
|
||||
$lang["config_comma"] = "comma";
|
||||
$lang["config_country_codes"] = "Country Codes";
|
||||
$lang["config_country_codes_tooltip"] = "Comma separated list of country codes for nominatim address lookup.";
|
||||
$lang["config_currency_side"] = "Desna strana";
|
||||
$lang["config_currency_symbol"] = "Valutna oznaka";
|
||||
$lang["config_currency_decimals"] = "Velutne decimale";
|
||||
$lang["config_custom1"] = "Korisničko polje1";
|
||||
$lang["config_custom10"] = "Korisničko polje10";
|
||||
$lang["config_custom2"] = "Korisničko polje2";
|
||||
$lang["config_custom3"] = "Korisničko polje3";
|
||||
$lang["config_custom4"] = "Korisničko polje4";
|
||||
@@ -52,6 +50,7 @@ $lang["config_custom6"] = "Korisničko polje6";
|
||||
$lang["config_custom7"] = "Korisničko polje7";
|
||||
$lang["config_custom8"] = "Korisničko polje8";
|
||||
$lang["config_custom9"] = "Korisničko polje9";
|
||||
$lang["config_custom10"] = "Korisničko polje10";
|
||||
$lang["config_datetimeformat"] = "Oblik datuma i vremena";
|
||||
$lang["config_decimal_point"] = "Decimalna točka";
|
||||
$lang["config_default_barcode_font_size_number"] = "Veličina pisma barkod-a mora biti broj";
|
||||
@@ -102,6 +101,8 @@ $lang["config_invoice_printer"] = "Printer za račun";
|
||||
$lang["config_jsprintsetup_required"] = "Upozorenje! Onemogućene opcije će raditi samo ako imate instaliran FireFox jsPrintSetup dodatak. Svakako snimiti?";
|
||||
$lang["config_language"] = "Jezik";
|
||||
$lang["config_left"] = "Left";
|
||||
$lang["config_license"] = "License";
|
||||
$lang["config_license_configuration"] = "License Statement";
|
||||
$lang["config_lines_per_page"] = "Linija po stranici";
|
||||
$lang["config_lines_per_page_number"] = "Linija po stranici mora biti broj";
|
||||
$lang["config_lines_per_page_required"] = "Broj linija po stranici je potreban podatak";
|
||||
|
||||
@@ -39,11 +39,9 @@ $lang["config_company_website_url"] = "A cég webcime nem érvényes URL (http:/
|
||||
$lang["config_comma"] = "comma";
|
||||
$lang["config_country_codes"] = "Country Codes";
|
||||
$lang["config_country_codes_tooltip"] = "Comma separated list of country codes for nominatim address lookup.";
|
||||
$lang["config_currency_side"] = "Jobb oldal";
|
||||
$lang["config_currency_symbol"] = "Pénznem";
|
||||
$lang["config_currency_decimals"] = "Currency Decimals";
|
||||
$lang["config_custom1"] = "Egyedi mező 1";
|
||||
$lang["config_custom10"] = "Egyedi mező 10";
|
||||
$lang["config_custom2"] = "Egyedi mező 2";
|
||||
$lang["config_custom3"] = "Egyedi mező 3";
|
||||
$lang["config_custom4"] = "Egyedi mező 4";
|
||||
@@ -52,6 +50,7 @@ $lang["config_custom6"] = "Egyedi mező 6";
|
||||
$lang["config_custom7"] = "Egyedi mező 7";
|
||||
$lang["config_custom8"] = "Egyedi mező 8";
|
||||
$lang["config_custom9"] = "Egyedi mező 9";
|
||||
$lang["config_custom10"] = "Egyedi mező 10";
|
||||
$lang["config_datetimeformat"] = "Dátum és idő formátum";
|
||||
$lang["config_decimal_point"] = "Tizedes pont";
|
||||
$lang["config_default_barcode_font_size_number"] = "Az alapértelmezett vonalkód font méretnek számnak kell lennie";
|
||||
@@ -102,6 +101,8 @@ $lang["config_invoice_printer"] = "Számla nyomtató";
|
||||
$lang["config_jsprintsetup_required"] = "Figyelem! Ez a letiltott funkció csak akkor működik megfelelően, ha a FireFox jsPrintSetup kiegészítő telepítve van. Menti mindezek tudatában?";
|
||||
$lang["config_language"] = "Nyelv";
|
||||
$lang["config_left"] = "Left";
|
||||
$lang["config_license"] = "License";
|
||||
$lang["config_license_configuration"] = "License Statement";
|
||||
$lang["config_lines_per_page"] = "Sorok száma oldalanként";
|
||||
$lang["config_lines_per_page_number"] = "A sorok száma oldalanként kötelező mező";
|
||||
$lang["config_lines_per_page_required"] = "A sor per oldal kötelező mező";
|
||||
|
||||
@@ -39,11 +39,9 @@ $lang["config_company_website_url"] = "Situs Perusahaan bukan URL yang benar(htt
|
||||
$lang["config_comma"] = "comma";
|
||||
$lang["config_country_codes"] = "Country Codes";
|
||||
$lang["config_country_codes_tooltip"] = "Comma separated list of country codes for nominatim address lookup.";
|
||||
$lang["config_currency_side"] = "Sisi Kanan";
|
||||
$lang["config_currency_symbol"] = "Simbol Mata Uang";
|
||||
$lang["config_currency_decimals"] = "Currency Decimals";
|
||||
$lang["config_custom1"] = "Custom Field 1";
|
||||
$lang["config_custom10"] = "Custom Field 10";
|
||||
$lang["config_custom2"] = "Custom Field 2";
|
||||
$lang["config_custom3"] = "Custom Field 3";
|
||||
$lang["config_custom4"] = "Custom Field 4";
|
||||
@@ -52,6 +50,7 @@ $lang["config_custom6"] = "Custom Field 6";
|
||||
$lang["config_custom7"] = "Custom Field 7";
|
||||
$lang["config_custom8"] = "Custom Field 8";
|
||||
$lang["config_custom9"] = "Custom Field 9";
|
||||
$lang["config_custom10"] = "Custom Field 10";
|
||||
$lang["config_datetimeformat"] = "Date and Time format";
|
||||
$lang["config_decimal_point"] = "Titik Desimal";
|
||||
$lang["config_default_barcode_font_size_number"] = "The default barcode font size must be a number";
|
||||
@@ -102,6 +101,8 @@ $lang["config_invoice_printer"] = "Invoice Printer";
|
||||
$lang["config_jsprintsetup_required"] = "Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?";
|
||||
$lang["config_language"] = "Bahasa";
|
||||
$lang["config_left"] = "Left";
|
||||
$lang["config_license"] = "License";
|
||||
$lang["config_license_configuration"] = "License Statement";
|
||||
$lang["config_lines_per_page"] = "Lines Per Page";
|
||||
$lang["config_lines_per_page_number"] = "The lines per page must be a number";
|
||||
$lang["config_lines_per_page_required"] = "The lines per page is a required field";
|
||||
|
||||
@@ -39,11 +39,9 @@ $lang["config_company_website_url"] = "De website van het bedrijf is geen geldig
|
||||
$lang["config_comma"] = "comma";
|
||||
$lang["config_country_codes"] = "Country Codes";
|
||||
$lang["config_country_codes_tooltip"] = "Comma separated list of country codes for nominatim address lookup.";
|
||||
$lang["config_currency_side"] = "Rechterkant";
|
||||
$lang["config_currency_symbol"] = "Valuta";
|
||||
$lang["config_currency_decimals"] = "Currency Decimals";
|
||||
$lang["config_custom1"] = "Custom Veld 1";
|
||||
$lang["config_custom10"] = "Custom Veld 10";
|
||||
$lang["config_custom2"] = "Custom Veld 2";
|
||||
$lang["config_custom3"] = "Custom Veld 3";
|
||||
$lang["config_custom4"] = "Custom Veld 4";
|
||||
@@ -52,6 +50,7 @@ $lang["config_custom6"] = "Custom Veld 6";
|
||||
$lang["config_custom7"] = "Custom Veld 7";
|
||||
$lang["config_custom8"] = "Custom Veld 8";
|
||||
$lang["config_custom9"] = "Custom Veld 9";
|
||||
$lang["config_custom10"] = "Custom Veld 10";
|
||||
$lang["config_datetimeformat"] = "Date and Time format";
|
||||
$lang["config_decimal_point"] = "Decimal Point";
|
||||
$lang["config_default_barcode_font_size_number"] = "The default barcode font size must be a number";
|
||||
@@ -102,6 +101,8 @@ $lang["config_invoice_printer"] = "Factuur Printer";
|
||||
$lang["config_jsprintsetup_required"] = "Opgelet! De uitgeschakelde functionaliteit werkt enkel met de jsPrintSetup addon in Firefox.";
|
||||
$lang["config_language"] = "Taal";
|
||||
$lang["config_left"] = "Left";
|
||||
$lang["config_license"] = "License";
|
||||
$lang["config_license_configuration"] = "License Statement";
|
||||
$lang["config_lines_per_page"] = "Lijnen Per Pagina";
|
||||
$lang["config_lines_per_page_number"] = "The lines per page must be a number";
|
||||
$lang["config_lines_per_page_required"] = "The lines per page is a required field";
|
||||
|
||||
@@ -39,11 +39,9 @@ $lang["config_company_website_url"] = "Site da empresa não é uma URL válida (
|
||||
$lang["config_comma"] = "Vírgula";
|
||||
$lang["config_country_codes"] = "Código do país";
|
||||
$lang["config_country_codes_tooltip"] = "Vírgula lista de códigos de país separado para pesquisa de endereços nominatim.";
|
||||
$lang["config_currency_side"] = "Lado Direito";
|
||||
$lang["config_currency_symbol"] = "Simbolo moeda";
|
||||
$lang["config_currency_decimals"] = "Decimais moeda";
|
||||
$lang["config_custom1"] = "Campo customizado 1";
|
||||
$lang["config_custom10"] = "Campo customizado 10";
|
||||
$lang["config_custom2"] = "Campo customizado 2";
|
||||
$lang["config_custom3"] = "Campo customizado 3";
|
||||
$lang["config_custom4"] = "Campo customizado 4";
|
||||
@@ -52,6 +50,7 @@ $lang["config_custom6"] = "Campo customizado 6";
|
||||
$lang["config_custom7"] = "Campo customizado 7";
|
||||
$lang["config_custom8"] = "Campo customizado 8";
|
||||
$lang["config_custom9"] = "Campo customizado 9";
|
||||
$lang["config_custom10"] = "Campo customizado 10";
|
||||
$lang["config_datetimeformat"] = "Formato da data e hora";
|
||||
$lang["config_decimal_point"] = "Ponto decimal";
|
||||
$lang["config_default_barcode_font_size_number"] = "O tamanho da fonte de código de barras padrão deve ser um número";
|
||||
@@ -102,6 +101,8 @@ $lang["config_invoice_printer"] = "Imprimir fatura";
|
||||
$lang["config_jsprintsetup_required"] = "Aviso! Esta funcionalidade só irá funcionar se você tem o addon FireFox jsPrintSetup instalado. Salvar de qualquer maneira?";
|
||||
$lang["config_language"] = "Linguagem";
|
||||
$lang["config_left"] = "Esquerda";
|
||||
$lang["config_license"] = "License";
|
||||
$lang["config_license_configuration"] = "License Statement";
|
||||
$lang["config_lines_per_page"] = "Linhas por página";
|
||||
$lang["config_lines_per_page_number"] = "Linhas por página deve ser um número";
|
||||
$lang["config_lines_per_page_required"] = "As linhas por página é um campo obrigatório";
|
||||
|
||||
@@ -39,11 +39,9 @@ $lang["config_company_website_url"] = "Веб-сайт Компании не я
|
||||
$lang["config_comma"] = "comma";
|
||||
$lang["config_country_codes"] = "Country Codes";
|
||||
$lang["config_country_codes_tooltip"] = "Comma separated list of country codes for nominatim address lookup.";
|
||||
$lang["config_currency_side"] = "Правая сторона";
|
||||
$lang["config_currency_symbol"] = "Символ валюты";
|
||||
$lang["config_currency_decimals"] = "Currency Decimals";
|
||||
$lang["config_custom1"] = "Изготовленный пробел 1";
|
||||
$lang["config_custom10"] = "Изготовленный пробел 10";
|
||||
$lang["config_custom2"] = "Изготовленный пробел 2";
|
||||
$lang["config_custom3"] = "Изготовленный пробел 3";
|
||||
$lang["config_custom4"] = "Изготовленный пробел 4";
|
||||
@@ -52,6 +50,7 @@ $lang["config_custom6"] = "Изготовленный пробел 6";
|
||||
$lang["config_custom7"] = "Изготовленный пробел 7";
|
||||
$lang["config_custom8"] = "Изготовленный пробел 8";
|
||||
$lang["config_custom9"] = "Изготовленный пробел 9";
|
||||
$lang["config_custom10"] = "Изготовленный пробел 10";
|
||||
$lang["config_datetimeformat"] = "Date and Time format";
|
||||
$lang["config_decimal_point"] = " Decimal Point";
|
||||
$lang["config_default_barcode_font_size_number"] = "The default barcode font size must be a number";
|
||||
@@ -102,6 +101,8 @@ $lang["config_invoice_printer"] = "Invoice Printer";
|
||||
$lang["config_jsprintsetup_required"] = "Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?";
|
||||
$lang["config_language"] = "Язик";
|
||||
$lang["config_left"] = "Left";
|
||||
$lang["config_license"] = "License";
|
||||
$lang["config_license_configuration"] = "License Statement";
|
||||
$lang["config_lines_per_page"] = "Lines Per Page";
|
||||
$lang["config_lines_per_page_number"] = "The lines per page must be a number";
|
||||
$lang["config_lines_per_page_required"] = "The lines per page is a required field";
|
||||
|
||||
@@ -39,11 +39,9 @@ $lang["config_company_website_url"] = "เว็บไซต์ร้านค
|
||||
$lang["config_comma"] = "comma";
|
||||
$lang["config_country_codes"] = "Country Codes";
|
||||
$lang["config_country_codes_tooltip"] = "Comma separated list of country codes for nominatim address lookup.";
|
||||
$lang["config_currency_side"] = "ด้านขวา";
|
||||
$lang["config_currency_symbol"] = "สัญลักษณ์ค่าเงิน";
|
||||
$lang["config_currency_decimals"] = "Currency Decimals";
|
||||
$lang["config_custom1"] = "พื้นที่เพิ่มเติม 1";
|
||||
$lang["config_custom10"] = "พื้นที่เพิ่มเติม 10";
|
||||
$lang["config_custom2"] = "พื้นที่เพิ่มเติม 2";
|
||||
$lang["config_custom3"] = "พื้นที่เพิ่มเติม 3";
|
||||
$lang["config_custom4"] = "พื้นที่เพิ่มเติม 4";
|
||||
@@ -52,6 +50,7 @@ $lang["config_custom6"] = "พื้นที่เพิ่มเติม 6";
|
||||
$lang["config_custom7"] = "พื้นที่เพิ่มเติม 7";
|
||||
$lang["config_custom8"] = "พื้นที่เพิ่มเติม 8";
|
||||
$lang["config_custom9"] = "พื้นที่เพิ่มเติม 9";
|
||||
$lang["config_custom10"] = "พื้นที่เพิ่มเติม 10";
|
||||
$lang["config_datetimeformat"] = "รูปแบบวันเวลา";
|
||||
$lang["config_decimal_point"] = "จุดทศนิยม";
|
||||
$lang["config_default_barcode_font_size_number"] = "The default barcode font size must be a number";
|
||||
@@ -102,6 +101,8 @@ $lang["config_invoice_printer"] = "Invoice Printer";
|
||||
$lang["config_jsprintsetup_required"] = "Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?";
|
||||
$lang["config_language"] = "ภาษา";
|
||||
$lang["config_left"] = "Left";
|
||||
$lang["config_license"] = "License";
|
||||
$lang["config_license_configuration"] = "License Statement";
|
||||
$lang["config_lines_per_page"] = "Lines Per Page";
|
||||
$lang["config_lines_per_page_number"] = "The lines per page must be a number";
|
||||
$lang["config_lines_per_page_required"] = "The lines per page is a required field";
|
||||
|
||||
@@ -39,11 +39,9 @@ $lang["config_company_website_url"] = "website adresi yanlış (http://...)";
|
||||
$lang["config_comma"] = "comma";
|
||||
$lang["config_country_codes"] = "Country Codes";
|
||||
$lang["config_country_codes_tooltip"] = "Comma separated list of country codes for nominatim address lookup.";
|
||||
$lang["config_currency_side"] = "Sağda";
|
||||
$lang["config_currency_symbol"] = "Para Birimi";
|
||||
$lang["config_currency_decimals"] = "Currency Decimals";
|
||||
$lang["config_custom1"] = "Özel Alan 1";
|
||||
$lang["config_custom10"] = "Özel Alan 10";
|
||||
$lang["config_custom2"] = "Özel Alan 2";
|
||||
$lang["config_custom3"] = "Özel Alan 3";
|
||||
$lang["config_custom4"] = "Özel Alan 4";
|
||||
@@ -52,6 +50,7 @@ $lang["config_custom6"] = "Özel Alan 6";
|
||||
$lang["config_custom7"] = "Özel Alan 7";
|
||||
$lang["config_custom8"] = "Özel Alan 8";
|
||||
$lang["config_custom9"] = "Özel Alan 9";
|
||||
$lang["config_custom10"] = "Özel Alan 10";
|
||||
$lang["config_datetimeformat"] = "Date and Time format";
|
||||
$lang["config_decimal_point"] = " Decimal Point";
|
||||
$lang["config_default_barcode_font_size_number"] = "The default barcode font size must be a number";
|
||||
@@ -102,6 +101,8 @@ $lang["config_invoice_printer"] = "Invoice Printer";
|
||||
$lang["config_jsprintsetup_required"] = "Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?";
|
||||
$lang["config_language"] = "Dil";
|
||||
$lang["config_left"] = "Left";
|
||||
$lang["config_license"] = "License";
|
||||
$lang["config_license_configuration"] = "License Statement";
|
||||
$lang["config_lines_per_page"] = "Lines Per Page";
|
||||
$lang["config_lines_per_page_number"] = "The lines per page must be a number";
|
||||
$lang["config_lines_per_page_required"] = "The lines per page is a required field";
|
||||
|
||||
@@ -39,11 +39,9 @@ $lang["config_company_website_url"] = "公司網址格式錯誤 (http://...)";
|
||||
$lang["config_comma"] = "comma";
|
||||
$lang["config_country_codes"] = "Country Codes";
|
||||
$lang["config_country_codes_tooltip"] = "Comma separated list of country codes for nominatim address lookup.";
|
||||
$lang["config_currency_side"] = "Right side";
|
||||
$lang["config_currency_symbol"] = "貨幣符號";
|
||||
$lang["config_currency_decimals"] = "Currency Decimals";
|
||||
$lang["config_custom1"] = "Custom Field 1";
|
||||
$lang["config_custom10"] = "Custom Field 10";
|
||||
$lang["config_custom2"] = "Custom Field 2";
|
||||
$lang["config_custom3"] = "Custom Field 3";
|
||||
$lang["config_custom4"] = "Custom Field 4";
|
||||
@@ -52,6 +50,7 @@ $lang["config_custom6"] = "Custom Field 6";
|
||||
$lang["config_custom7"] = "Custom Field 7";
|
||||
$lang["config_custom8"] = "Custom Field 8";
|
||||
$lang["config_custom9"] = "Custom Field 9";
|
||||
$lang["config_custom10"] = "Custom Field 10";
|
||||
$lang["config_datetimeformat"] = "Date and Time format";
|
||||
$lang["config_decimal_point"] = "Decimal Point";
|
||||
$lang["config_default_barcode_font_size_number"] = "The default barcode font size must be a number";
|
||||
@@ -102,6 +101,8 @@ $lang["config_invoice_printer"] = "Invoice Printer";
|
||||
$lang["config_jsprintsetup_required"] = "Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?";
|
||||
$lang["config_language"] = "語言";
|
||||
$lang["config_left"] = "Left";
|
||||
$lang["config_license"] = "License";
|
||||
$lang["config_license_configuration"] = "License Statement";
|
||||
$lang["config_lines_per_page"] = "Lines Per Page";
|
||||
$lang["config_lines_per_page_number"] = "The lines per page must be a number";
|
||||
$lang["config_lines_per_page_required"] = "The lines per page is a required field";
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
'name' => 'invoice_enable',
|
||||
'value' => 'invoice_enable',
|
||||
'id' => 'invoice_enable',
|
||||
'checked'=>$this->config->item('invoice_enable')));?>
|
||||
'checked' => $this->config->item('invoice_enable')));?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
'name' => 'sales_invoice_format',
|
||||
'id' => 'sales_invoice_format',
|
||||
'class' => 'form-control input-sm',
|
||||
'value'=>$this->config->item('sales_invoice_format'))); ?>
|
||||
'value' => $this->config->item('sales_invoice_format'))); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
'name' => 'recv_invoice_format',
|
||||
'id' => 'recv_invoice_format',
|
||||
'class' => 'form-control input-sm',
|
||||
'value'=>$this->config->item('recv_invoice_format'))); ?>
|
||||
'value' => $this->config->item('recv_invoice_format'))); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
'name' => 'invoice_default_comments',
|
||||
'id' => 'invoice_default_comments',
|
||||
'class' => 'form-control input-sm',
|
||||
'value'=>$this->config->item('invoice_default_comments')));?>
|
||||
'value '=> $this->config->item('invoice_default_comments')));?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -55,14 +55,14 @@
|
||||
'name' => 'invoice_email_message',
|
||||
'id' => 'invoice_email_message',
|
||||
'class' => 'form-control input-sm',
|
||||
'value'=>$this->config->item('invoice_email_message')));?>
|
||||
'value '=> $this->config->item('invoice_email_message')));?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php echo form_submit(array(
|
||||
'name' => 'submit_form',
|
||||
'id' => 'submit_form',
|
||||
'value'=>$this->lang->line('common_submit'),
|
||||
'value' => $this->lang->line('common_submit'),
|
||||
'class' => 'btn btn-primary btn-sm pull-right'));?>
|
||||
</fieldset>
|
||||
</div>
|
||||
@@ -74,13 +74,13 @@ $(document).ready(function()
|
||||
{
|
||||
var enable_disable_invoice_enable = (function() {
|
||||
var invoice_enable = $("#invoice_enable").is(":checked");
|
||||
$("#sales_invoice_format, #recv_invoice_format, #invoice_default_comments, #invoice_email_message").prop('disabled', !invoice_enable);
|
||||
$("#sales_invoice_format, #recv_invoice_format, #invoice_default_comments, #invoice_email_message").prop("disabled", !invoice_enable);
|
||||
return arguments.callee;
|
||||
})();
|
||||
|
||||
$("#invoice_enable").change(enable_disable_invoice_enable);
|
||||
|
||||
$('#invoice_config_form').validate($.extend(form_support.handler, {
|
||||
$("#invoice_config_form").validate($.extend(form_support.handler, {
|
||||
submitHandler: function(form) {
|
||||
$(form).ajaxSubmit({
|
||||
beforeSerialize: function(arr, $form, options) {
|
||||
|
||||
24
application/views/configs/license_config.php
Normal file
24
application/views/configs/license_config.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php echo form_open('', array('id' => 'license_config_form', 'enctype' => 'multipart/form-data', 'class' => 'form-horizontal')); ?>
|
||||
<div id="config_wrapper">
|
||||
<fieldset>
|
||||
<?php
|
||||
foreach($licenses as $license)
|
||||
{
|
||||
?>
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($license['title'], 'license', array('class' => 'control-label col-xs-3')); ?>
|
||||
<div class='col-xs-6'>
|
||||
<?php echo form_textarea(array(
|
||||
'name' => 'license',
|
||||
'id' => 'license',
|
||||
'class' => 'form-control',
|
||||
'readonly' => '',
|
||||
'value' => $license['text'])); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</fieldset>
|
||||
</div>
|
||||
<?php echo form_close(); ?>
|
||||
@@ -28,6 +28,9 @@
|
||||
<li role="presentation">
|
||||
<a data-toggle="tab" href="#message_tab" title="<?php echo $this->lang->line('config_message_configuration'); ?>"><?php echo $this->lang->line('config_message'); ?></a>
|
||||
</li>
|
||||
<li role="presentation">
|
||||
<a data-toggle="tab" href="#license_tab" title="<?php echo $this->lang->line('config_license_configuration'); ?>"><?php echo $this->lang->line('config_license'); ?></a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div class="tab-content">
|
||||
@@ -58,6 +61,9 @@
|
||||
<div class="tab-pane" id="message_tab">
|
||||
<?php $this->load->view("configs/message_config"); ?>
|
||||
</div>
|
||||
<div class="tab-pane" id="license_tab">
|
||||
<?php $this->load->view("configs/license_config"); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php $this->load->view("partial/footer"); ?>
|
||||
|
||||
19
license/beautifulflaticons.license
Normal file
19
license/beautifulflaticons.license
Normal file
@@ -0,0 +1,19 @@
|
||||
Elegant Themes Blog: http://www.elegantthemes.com/blog/freebie-of-the-week/beautiful-flat-icons-for-free
|
||||
|
||||
These icons are completely free and Open Source under the GPL-2.0,
|
||||
so feel free to use them in your personal and commercial projects alike.
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
|
||||
GNU General Public License, version 2 (GPL-2.0)
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
For full license statement please visit https://www.gnu.org/licenses/gpl-2.0.html
|
||||
1
license/beautifulflaticons.version
Normal file
1
license/beautifulflaticons.version
Normal file
@@ -0,0 +1 @@
|
||||
Beautiful Flat Icons
|
||||
21
license/bootstrap.license
Normal file
21
license/bootstrap.license
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2011-2015 Twitter, Inc
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
1
license/bootstrap.version
Normal file
1
license/bootstrap.version
Normal file
@@ -0,0 +1 @@
|
||||
Bootstrap 3.3.6
|
||||
21
license/bootswatch.license
Normal file
21
license/bootswatch.license
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2013 Thomas Park
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
1
license/bootswatch.version
Normal file
1
license/bootswatch.version
Normal file
@@ -0,0 +1 @@
|
||||
Bootswatch 3.3.6
|
||||
1
license/codeigniter.version
Normal file
1
license/codeigniter.version
Normal file
@@ -0,0 +1 @@
|
||||
Code Igniter 3.0.6
|
||||
@@ -1 +0,0 @@
|
||||
3.0.6
|
||||
44
license/jquery.license
Normal file
44
license/jquery.license
Normal file
@@ -0,0 +1,44 @@
|
||||
Copyright 2007, 2014 jQuery Foundation and other contributors,
|
||||
https://jquery.org/
|
||||
|
||||
This software consists of voluntary contributions made by many
|
||||
individuals. For exact contribution history, see the revision history
|
||||
available at https://github.com/jquery/jquery-ui
|
||||
|
||||
The following license applies to all parts of this software except as
|
||||
documented below:
|
||||
|
||||
====
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
====
|
||||
|
||||
Copyright and related rights for sample code are waived via CC0. Sample
|
||||
code is defined as all source code contained within the demos directory.
|
||||
|
||||
CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
||||
|
||||
====
|
||||
|
||||
All files located in the node_modules and external directories are
|
||||
externally maintained libraries used by this software which have their
|
||||
own licenses; we recommend you read them, as their terms may differ from
|
||||
the terms above.
|
||||
1
license/jquery.version
Normal file
1
license/jquery.version
Normal file
@@ -0,0 +1 @@
|
||||
jQuery 1.12.4 jQuery-UI 1.11.4
|
||||
@@ -41,7 +41,6 @@ config_country_codes_tooltip,Comma separated list of country codes for nominatim
|
||||
config_currency_symbol,Pénznem,Währungssymbol,Valuta,Símbolo de moneda,Currency Symbol,Symbole Monétaire,貨幣符號,Символ валюты,สัญลักษณ์ค่าเงิน,Para Birimi,Simbol Mata Uang,Simbolo moeda,Valutna oznaka
|
||||
config_currency_decimals,Currency Decimals,Currency Decimals,Currency Decimals,Decimales de moneda,Currency Decimals,Currency Decimals,Currency Decimals,Currency Decimals,Currency Decimals,Currency Decimals,Currency Decimals,Decimais moeda,Velutne decimale
|
||||
config_custom1,Egyedi mező 1,Zusatzfeld 1,Custom Veld 1,Campo Libre 1,Custom Field 1,Champ Personnalisé 1,Custom Field 1,Изготовленный пробел 1,พื้นที่เพิ่มเติม 1,Özel Alan 1,Custom Field 1,Campo customizado 1,Korisničko polje1
|
||||
config_custom10,Egyedi mező 10,Zusatzfeld 10,Custom Veld 10,Campo Libre 10,Custom Field 10,Champ Personnalisé 10,Custom Field 10,Изготовленный пробел 10,พื้นที่เพิ่มเติม 10,Özel Alan 10,Custom Field 10,Campo customizado 10,Korisničko polje10
|
||||
config_custom2,Egyedi mező 2,Zusatzfeld 2,Custom Veld 2,Campo Libre 2,Custom Field 2,Champ Personnalisé 2,Custom Field 2,Изготовленный пробел 2,พื้นที่เพิ่มเติม 2,Özel Alan 2,Custom Field 2,Campo customizado 2,Korisničko polje2
|
||||
config_custom3,Egyedi mező 3,Zusatzfeld 3,Custom Veld 3,Campo Libre 3,Custom Field 3,Champ Personnalisé 3,Custom Field 3,Изготовленный пробел 3,พื้นที่เพิ่มเติม 3,Özel Alan 3,Custom Field 3,Campo customizado 3,Korisničko polje3
|
||||
config_custom4,Egyedi mező 4,Zusatzfeld 4,Custom Veld 4,Campo Libre 4,Custom Field 4,Champ Personnalisé 4,Custom Field 4,Изготовленный пробел 4,พื้นที่เพิ่มเติม 4,Özel Alan 4,Custom Field 4,Campo customizado 4,Korisničko polje4
|
||||
@@ -50,6 +49,7 @@ config_custom6,Egyedi mező 6,Zusatzfeld 6,Custom Veld 6,Campo Libre 6,Custom Fi
|
||||
config_custom7,Egyedi mező 7,Zusatzfeld 7,Custom Veld 7,Campo Libre 7,Custom Field 7,Champ Personnalisé 7,Custom Field 7,Изготовленный пробел 7,พื้นที่เพิ่มเติม 7,Özel Alan 7,Custom Field 7,Campo customizado 7,Korisničko polje7
|
||||
config_custom8,Egyedi mező 8,Zusatzfeld 8,Custom Veld 8,Campo Libre 8,Custom Field 8,Champ Personnalisé 8,Custom Field 8,Изготовленный пробел 8,พื้นที่เพิ่มเติม 8,Özel Alan 8,Custom Field 8,Campo customizado 8,Korisničko polje8
|
||||
config_custom9,Egyedi mező 9,Zusatzfeld 9,Custom Veld 9,Campo Libre 9,Custom Field 9,Champ Personnalisé 9,Custom Field 9,Изготовленный пробел 9,พื้นที่เพิ่มเติม 9,Özel Alan 9,Custom Field 9,Campo customizado 9,Korisničko polje9
|
||||
config_custom10,Egyedi mező 10,Zusatzfeld 10,Custom Veld 10,Campo Libre 10,Custom Field 10,Champ Personnalisé 10,Custom Field 10,Изготовленный пробел 10,พื้นที่เพิ่มเติม 10,Özel Alan 10,Custom Field 10,Campo customizado 10,Korisničko polje10
|
||||
config_datetimeformat,Dátum és idő formátum,Datum und Zeit,Date and Time format,Formato de fecha y hora,Date and Time format,Date and Time format,Date and Time format,Date and Time format,รูปแบบวันเวลา,Date and Time format,Date and Time format,Formato da data e hora,Oblik datuma i vremena
|
||||
config_decimal_point,Tizedes pont,Dezimaltrennzeichen,Decimal Point,Punto Decimal,Decimal Point, Decimal Point,Decimal Point, Decimal Point,จุดทศนิยม, Decimal Point,Titik Desimal,Ponto decimal,Decimalna točka
|
||||
config_default_barcode_font_size_number,Az alapértelmezett vonalkód font méretnek számnak kell lennie,Die Barcode Schriftgrösse muss eine Zahl sein,The default barcode font size must be a number,Tamaño de fuente del código de barras debe ser un número,The default barcode font size must be a number,The default barcode font size must be a number,The default barcode font size must be a number,The default barcode font size must be a number,The default barcode font size must be a number,The default barcode font size must be a number,The default barcode font size must be a number,O tamanho da fonte de código de barras padrão deve ser um número,Veličina pisma barkod-a mora biti broj
|
||||
@@ -100,6 +100,8 @@ config_invoice_printer,Számla nyomtató,Rechnungsdrucker,Factuur Printer,Impres
|
||||
config_jsprintsetup_required,"Figyelem! Ez a letiltott funkció csak akkor működik megfelelően, ha a FireFox jsPrintSetup kiegészítő telepítve van. Menti mindezek tudatában?",Warnung! Diese Funktion ist nur funktionsfähig,Opgelet! De uitgeschakelde functionaliteit werkt enkel met de jsPrintSetup addon in Firefox.,Advertencia!Esta funcionalidad desactivada solo funciona con el addon jsPrintSetup de FireFox instalado. Guardar de todas formas?,Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?,Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?,Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?,Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?,Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?,Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?,Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?,Aviso! Esta funcionalidade só irá funcionar se você tem o addon FireFox jsPrintSetup instalado. Salvar de qualquer maneira?,Upozorenje! Onemogućene opcije će raditi samo ako imate instaliran FireFox jsPrintSetup dodatak. Svakako snimiti?
|
||||
config_language,Nyelv,Sprache,Taal,Idioma,Language,Langue,語言,Язик,ภาษา,Dil,Bahasa,Linguagem,Jezik
|
||||
config_left,Left,Left,Left,Left,Left,Left,Left,Left,Left,Left,Left,Esquerda,Left
|
||||
config_license,License,License,License,License,License,License,License,License,License,License,License,License,License
|
||||
config_license_configuration,License Statement,License Statement,License Statement,License Statement,License Statement,License Statement,License Statement,License Statement,License Statement,License Statement,License Statement,License Statement,License Statement
|
||||
config_lines_per_page,Sorok száma oldalanként,Zeilen pro Seite,Lijnen Per Pagina,Líneas por página,Lines Per Page,Lines Per Page,Lines Per Page,Lines Per Page,Lines Per Page,Lines Per Page,Lines Per Page,Linhas por página,Linija po stranici
|
||||
config_lines_per_page_number,A sorok száma oldalanként kötelező mező,Zeilen pro Seite muss eine Zahl sein,The lines per page must be a number,Líneas por página debe ser un número,,The lines per page must be a number,The lines per page must be a number,The lines per page must be a number,The lines per page must be a number,The lines per page must be a number,The lines per page must be a number,Linhas por página deve ser um número,Linija po stranici mora biti broj
|
||||
config_lines_per_page_required,A sor per oldal kötelező mező,Zeilen pro Seite ist erforderlich,The lines per page is a required field,Líneas por página es requerido,The lines per page is a required field,The lines per page is a required field,The lines per page is a required field,The lines per page is a required field,The lines per page is a required field,The lines per page is a required field,The lines per page is a required field,As linhas por página é um campo obrigatório,Broj linija po stranici je potreban podatak
|
||||
|
||||
|
Reference in New Issue
Block a user