411 lines
12 KiB
PHP
Executable File
411 lines
12 KiB
PHP
Executable File
<?php
|
||
|
||
$app_list_strings['in'] = array(
|
||
'EcmStockDocIns' => 'PZ nr',
|
||
);
|
||
|
||
$app_list_strings['fk_parent_id_default'] = 'Brak';
|
||
$app_list_strings['wz_parent_id_default'] = 'Brak';
|
||
|
||
//modules
|
||
$app_list_strings['LBL_PANEL_ADVANCED'] = 'Informacje dodatkowe';
|
||
$app_list_strings['LBL_PANEL_ASSIGNMENT'] = 'Przypisany użytkownik';
|
||
|
||
//menu
|
||
$app_list_strings['LBL_TABGROUP_STOCK'] = 'Magazyn';
|
||
$app_list_strings['LBL_TABGROUP_AGREEMENTS'] = 'Umowy';
|
||
//doms
|
||
$GLOBALS['app_list_strings']['ecmsales_parent_dom'] = array (
|
||
'Accounts' => $app_list_strings['moduleList']['Accounts'],
|
||
'Contacts' => $app_list_strings['moduleList']['Contacts'],
|
||
);
|
||
|
||
$ecmservices_name_dom = array(
|
||
translate('LBL_ECMSERVICE_NAME_PAYABLE', 'EcmServices'),
|
||
translate('LBL_ECMSERVICE_NAME_WARRANTY', 'EcmServices'),
|
||
translate('LBL_ECMSERVICE_NAME_OTHER', 'EcmServices'),
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['ecmservices_name_dom'] = array_combine(
|
||
//array('payable', 'warranty', 'other'), $ecmservices_name_dom
|
||
$ecmservices_name_dom, $ecmservices_name_dom
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['ecmpurchaseorders_parent_dom'] = array (
|
||
'Accounts' => $app_list_strings['moduleList']['Accounts'],
|
||
'Contacts' => $app_list_strings['moduleList']['Contacts'],
|
||
);
|
||
$GLOBALS['app_list_strings']['ecmpurchaseorders_status_dom'] = array(
|
||
'registered' => 'Zarejestrowane',
|
||
'accepted' => 'Zaakceptowane',
|
||
'not_accepted' => 'Niezaakceptowane',
|
||
'completed'=>'Zrealizowany',
|
||
'partly_implemented'=>'Częściowo zrealizowany',
|
||
);
|
||
|
||
|
||
$GLOBALS['app_list_strings']['currency_dom'][$GLOBALS['sugar_config']['default_currency_iso4217']]=$GLOBALS['sugar_config']['default_currency_name'];
|
||
$w=$GLOBALS['db']->query("select id, name from currencies where deleted='0' order by name");
|
||
while($r=$GLOBALS['db']->fetchByAssoc($w)){
|
||
$GLOBALS['app_list_strings']['currency_dom'][$r['id']]=$r['name'];
|
||
|
||
}
|
||
$GLOBALS['app_list_strings']['ecmlanguages_dom'] = array(
|
||
'pl_pl' => 'Polski',
|
||
'en_us' => 'Angielski',
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['ecmproduct_origin_country_code_dom'] = array(
|
||
'BE' => 'BE',
|
||
'CN' => 'CN',
|
||
'DE' => 'DE',
|
||
'HU' => 'HU',
|
||
'IL' => 'IL',
|
||
'IN' => 'IN',
|
||
'IT' => 'IT',
|
||
'PL' => 'PL',
|
||
'PT' => 'PT',
|
||
'SK' => 'SK',
|
||
'TW' => 'TW',
|
||
'VN' => 'VN',
|
||
);
|
||
$GLOBALS['app_list_strings']['ecmproduct_shipment_country_code_dom'] = array(
|
||
'AT' => 'AT',
|
||
'BE' => 'BE',
|
||
'CY' => 'CY',
|
||
'DE' => 'DE',
|
||
'DK' => 'DK',
|
||
'ES' => 'ES',
|
||
'FR' => 'FR',
|
||
'HU' => 'HU',
|
||
'IT' => 'IT',
|
||
'NL' => 'NL',
|
||
'PL' => 'PL',
|
||
'PT' => 'PT',
|
||
);
|
||
$GLOBALS['app_list_strings']['ecmproduct_unit_name_dom'] = array(
|
||
'SZT.' => 'SZT.',
|
||
'KG' => 'KG',
|
||
'LITR' => 'LITR',
|
||
'SZT' => 'SZT',
|
||
'MB' => 'MB',
|
||
'WAGI:' => 'WAGI',
|
||
'OP.' => 'OP.',
|
||
'KPL' => 'KPL',
|
||
);
|
||
$GLOBALS['app_list_strings']['ecmproduct_tax_dom'] = array(
|
||
'' => 'wybierz',
|
||
23 => '23%',
|
||
22 => '22%',
|
||
8 => '8%',
|
||
7 => '7%',
|
||
0 => '0%',
|
||
);
|
||
$GLOBALS['app_list_strings']['ecmproduct_group_ks_dom']=array (
|
||
'1P' => '1P',
|
||
'1T' => '1T',
|
||
1 => '1',
|
||
2 => '2',
|
||
3 => '3',
|
||
4 => '4',
|
||
5 => '5',
|
||
6 => '6',
|
||
7 => '7',
|
||
8 => '8',
|
||
9 => '9',
|
||
10 => '10',
|
||
);
|
||
|
||
$db = $GLOBALS['db'];
|
||
|
||
$GLOBALS['app_list_strings']['ecmpaymentconditions_payment_method_dom ']=array (
|
||
1 => 'Gotówka',
|
||
0 => 'Przelew',
|
||
|
||
);
|
||
$GLOBALS['app_list_strings']['ecmpaymentconditions_payment_method_dom']=array (
|
||
1 => 'Gotówka',
|
||
0 => 'Przelew',
|
||
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['account_classification_dom']=array (
|
||
11 => '?',
|
||
10 => 'A',
|
||
5 => 'B',
|
||
1 => 'C',
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['ecmquotes_parent_dom']=array (
|
||
'Accounts' => 'Klienci',
|
||
'Leads' => 'Potencjalni klienci',
|
||
);
|
||
$GLOBALS['app_list_strings']['ecmaccountings_parent_dom']=array (
|
||
'Accounts' => 'Klienci',
|
||
'Contacts' => 'Kontakty',
|
||
);
|
||
$GLOBALS['app_list_strings']['ecmquotes_probability_dom']=array (
|
||
0 => '0%',
|
||
10 => '10%',
|
||
20 => '20%',
|
||
30 => '30%',
|
||
40 => '40%',
|
||
50 => '50%',
|
||
60 => '60%',
|
||
70 => '70%',
|
||
80 => '80%',
|
||
90 => '90%',
|
||
100 => '100%',
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['ecmquotes_status_dom']=array (
|
||
'created' => 'Utworzona/Wysłana',
|
||
'accepted' => 'Przyjęta',
|
||
'not_accepted' => 'Odrzucona',
|
||
);
|
||
$GLOBALS['app_list_strings']['ecmquotes_status_dom_ext']=array (
|
||
'accepted' => 'Oferta została zaakceptowana',
|
||
'not_accepted' => 'Oferta została odrzucona',
|
||
'created' => 'Oferta została utworzona',
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['ecmaccountings_status_dom']=array (
|
||
'created' => 'Utworzona/Wysłana',
|
||
'accepted' => 'Przyjęta',
|
||
'not_accepted' => 'Odrzucona',
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['ecmquotes_why_not_accepted_dom']=array (
|
||
'term' => 'Termin',
|
||
'price' => 'Cena',
|
||
'technical' => 'Wymogi techniczne',
|
||
'other' => 'Inne',
|
||
);
|
||
$GLOBALS['app_list_strings']['ecmstockdocins_status_dom']=array (
|
||
'registered' => 'Zarejestrowany',
|
||
'accepted' => 'Zaakceptowany',
|
||
);
|
||
$GLOBALS['app_list_strings']['ecmstockdocins_type_dom']=array (
|
||
'' => 'Normalny',
|
||
1 => 'Korekta',
|
||
);
|
||
|
||
|
||
$app_strings['LBL_GROUPTAB8_1330449954'] = 'Magazyn';
|
||
$app_strings['LBL_GROUPTAB7_1330449954'] = 'Sprzedaż';
|
||
|
||
$app_strings['LBL_GROUPTAB8_1330449954'] = 'Magazyn';
|
||
|
||
$app_strings['LBL_GROUPTAB7_1330449954'] = 'Sprzedaż';
|
||
|
||
$app_strings['LBL_GROUPTAB1_1330450769'] = '';
|
||
|
||
$app_strings['LBL_GROUPTAB6_1330451060'] = 'Klienci';
|
||
|
||
$app_strings['LBL_GROUPTAB5_1330451071'] = 'Nowa grupa';
|
||
|
||
$app_strings['LBL_GROUPTAB5_1330451296'] = 'Klienci';
|
||
|
||
$app_strings['LBL_GROUPTAB6_1330511160'] = 'Raporty';
|
||
|
||
$app_strings['LBL_GROUPTAB6_1331107923'] = 'Ustawienia';
|
||
|
||
$GLOBALS['app_list_strings']['ecmstockdocins_kind_dom']=array (
|
||
'other' => 'Kraj',
|
||
'import' => 'Import',
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['ecmstockdocins_participation_dom']=array (
|
||
'weight' => 'masy',
|
||
'value' => 'wartości',
|
||
);
|
||
|
||
|
||
$GLOBALS['app_list_strings']['task_status_dom']=array (
|
||
'planned' => 'Planowane',
|
||
'made' => 'Wykonane',
|
||
'canceled' => 'Anulowane',
|
||
);
|
||
$GLOBALS['app_list_strings']['call_status_dom']=array (
|
||
'planned' => 'Planowane',
|
||
'made' => 'Wykonane',
|
||
'canceled' => 'Anulowane',
|
||
);
|
||
$GLOBALS['app_list_strings']['meeting_status_dom']=array (
|
||
'planned' => 'Planowane',
|
||
'made' => 'Wykonane',
|
||
'canceled' => 'Anulowane',
|
||
);
|
||
$GLOBALS['app_list_strings']['account_group_dbf_dom']=array (
|
||
'' => '',
|
||
'001' => '001',
|
||
'002' => '002',
|
||
'003' => '003',
|
||
'004' => '004',
|
||
'005' => '005',
|
||
'006' => '006',
|
||
'015' => '015',
|
||
'025' => '025',
|
||
);
|
||
$GLOBALS['app_list_strings']['parent_type_display']=array (
|
||
'Accounts' => 'Kontrahent',
|
||
'Contacts' => 'Kontakt',
|
||
'EcmProducts' => 'Produkt',
|
||
'EcmQuotes' => 'Oferta',
|
||
);
|
||
$GLOBALS['app_list_strings']['task_type_dom']=array (
|
||
'call' => 'Rozmowa tel.',
|
||
'meeting' => 'Spotkanie',
|
||
'email' => 'Email',
|
||
'quote' => 'Oferta',
|
||
'other' => 'Inny (test)',
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['task_type_dom']=array (
|
||
'' => '',
|
||
'call' => 'Rozmowa tel.',
|
||
'meeting' => 'Spotkanie',
|
||
'email' => 'Email',
|
||
'quote' => 'Oferta',
|
||
'other' => 'Inny',
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['ecmproducts_type_dom']=array (
|
||
'article' => 'towar',
|
||
'service' => 'usługa',
|
||
);
|
||
|
||
$w=$GLOBALS['db']->query("select id, name from ecmstocks where deleted='0' order by name");
|
||
while($r=$GLOBALS['db']->fetchByAssoc($w)){
|
||
$GLOBALS['app_list_strings']['ecmstocks_list_dom'][$r['id']]=$r['name'];
|
||
}
|
||
$w=$GLOBALS['db']->query("select id, name from ecmcashs where deleted='0' order by name");
|
||
while($r=$GLOBALS['db']->fetchByAssoc($w)){
|
||
$GLOBALS['app_list_strings']['ecmcashs_list_dom'][$r['id']]=$r['name'];
|
||
}
|
||
$GLOBALS['app_list_strings']['ecmpurchaseorders_realization_dom']=array (
|
||
'none' => 'Brak',
|
||
'part' => 'Częściowa',
|
||
'full' => 'Pełna',
|
||
);
|
||
$GLOBALS['app_list_strings']['ecmtype_list_dom'][0]='KP';
|
||
$GLOBALS['app_list_strings']['ecmtype_list_dom'][1]='KW';
|
||
$app_list_strings['moduleList']['EcmReports'] = 'Raporty';
|
||
$app_list_strings['moduleList']['EcmCharts'] = 'Wykresy';
|
||
$app_list_strings['moduleList']['EcmPurchaseOrders'] = 'Zamówienia zakupu';
|
||
$app_list_strings['moduleList']['EcmInvoiceOuts'] = 'Faktury';
|
||
$app_list_strings['moduleList']['EcmSales'] = 'Zamówienia sprzedaży';
|
||
$app_list_strings['moduleList']['EcmServices'] = 'Zamówienia serwisowe';
|
||
$app_list_strings['moduleList']['EcmFkBooks'] = 'Księga';
|
||
$app_list_strings['moduleList']['EcmFkPackages'] = 'Paczka';
|
||
$app_list_strings['moduleList']['EcmReceipts'] = 'Paragony';
|
||
$app_list_strings['moduleList']['EcmStocks'] = 'Magazyny';
|
||
$app_list_strings['moduleList']['EcmStockDocIns'] = 'PZ';
|
||
$app_list_strings['moduleList']['EcmStockDocOuts'] = 'WZ';
|
||
$app_list_strings['moduleList']['EcmProducts'] = 'Produkty';
|
||
$app_list_strings['moduleList']['EcmVats'] = 'Stawki Podatku';
|
||
$app_list_strings['moduleList']['EcmQuotes'] = 'Oferty';
|
||
$app_list_strings['moduleList']['EcmGroupSales'] = 'Ustawienia';
|
||
$app_list_strings['moduleList']['EcmTexts'] = 'Teksty';
|
||
$app_list_strings['moduleList']['EcmDocumentTemplates'] = 'Szablony';
|
||
$app_list_strings['moduleList']['EcmDeliveryConditions'] = 'Warunki Dostawy';
|
||
$app_list_strings['moduleList']['EcmInsideOrders'] = 'Przyjęcie produkcyjne';
|
||
$app_list_strings['moduleList']['EcmStockStates'] = 'Stany magazynowe';
|
||
$app_list_strings['moduleList']['EcmStocks'] = 'Magazyny';
|
||
$app_list_strings['moduleList']['EcmStockOperations'] = 'Operacje magazynowe';
|
||
$app_list_strings['moduleList']['EcmStockDocInsideIns'] = 'PW';
|
||
$app_list_strings['moduleList']['EcmStockDocInsideOuts'] = 'RW';
|
||
$app_list_strings['moduleList']['EcmStockDocMoves'] = 'MM';
|
||
$app_list_strings['moduleList']['EcmStockDocCorrects'] = 'KS';
|
||
$app_list_strings['moduleList']['EcmPaymentStates'] = 'Rozrachunki';
|
||
$app_list_strings['moduleList']['EcmAccountings'] = 'Dokumenty księgowe';
|
||
$app_list_strings['moduleList']['EcmPrepaymentInvoices'] = 'Faktury zaliczkowe';
|
||
$app_list_strings['moduleList']['EcmPaymentStates'] = 'Rozliczenia';
|
||
$app_list_strings['moduleList']['EcmPayments'] = 'Płatności';
|
||
$app_list_strings['moduleList']['EcmAgreements']='Umowy';
|
||
$GLOBALS['app_list_strings']['ecmsales_priority_dom']=array (
|
||
'normal' => 'normalny',
|
||
'low' => 'niski',
|
||
'high' => 'wysoki',
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['ecmstockdocinsideouts_type_dom']=array (
|
||
2 => 'Montaż',
|
||
1 => 'Przerób handlowy',
|
||
3 => 'Naprawa',
|
||
4 => 'Wydanie do zużycia',
|
||
);
|
||
$GLOBALS['app_list_strings']['account_invoice_type_dom']=array (
|
||
'K' => 'Kraj',
|
||
'U' => 'UE',
|
||
'E' => 'Eksport',
|
||
);
|
||
/*
|
||
$GLOBALS['app_list_strings']['account_type_dom']=array (
|
||
'rec' => 'Odbiorca',
|
||
'sup' => 'Dostawca',
|
||
'rs' => 'Odbiorca / Dostawca',
|
||
);
|
||
*/
|
||
$GLOBALS['app_list_strings']['ecminvoiceouts_type_dom']=array (
|
||
'normal' => 'Normalna',
|
||
'correct' => 'Korekta',
|
||
);
|
||
$GLOBALS['app_list_strings']['account_status_dom']=array (
|
||
'active' => 'Aktywny',
|
||
'archival' => 'Archiwalny',
|
||
'lead' => 'Potencjalny',
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['payment_method_dom']=array (
|
||
'PRZELEW' => 'Przelew',
|
||
'' => 'Inny',
|
||
'PRZEDPLATA' => 'Przedpłata',
|
||
'ZA POBRANIEM' => 'Za pobraniem',
|
||
'PRZY ODBIORZE' => 'Przy odbiorze',
|
||
'GOTÓWKĄ' => 'Gotówka',
|
||
'*PRZELEW*' => '*Przelew*',
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['ecminsideorders_status_dom']=array (
|
||
'registered' => 'Zarejestrowane',
|
||
'checked' => 'Sprawdzone',
|
||
'accepted' => 'Wykonane',
|
||
'canceled' => 'Anulowane',
|
||
);
|
||
|
||
|
||
|
||
|
||
$app_strings['LBL_GROUPTAB7_1366283960'] = 'hjvghu';
|
||
$app_strings['LBL_TAB_PAYMENTS'] = 'Rozrachunki';
|
||
|
||
|
||
$app_strings['LBL_GROUPTAB7_1366963161'] = 'Nowa grupa';
|
||
|
||
|
||
$GLOBALS['app_list_strings']['task_priority_dom']=array (
|
||
'Medium' => 'Średni',
|
||
'High' => 'Wysoki',
|
||
'Low' => 'Niski',
|
||
);
|
||
$GLOBALS['app_list_strings']['call_direction_dom']=array (
|
||
'Inbound' => 'Przychodzące',
|
||
'Outbound' => 'Wychodzące',
|
||
);
|
||
|
||
$GLOBALS['app_list_strings']['intrastat_codes_list']=array (
|
||
28539030 => 'Ciekłe powietrze (nawet pozbawione gazów szlachetnych; sprężone powietrze)',
|
||
34022090 => 'Preparaty do prania i preparaty do czyszczenia',
|
||
38249945 => 'Preparaty zapobiegające tworzeniu się kamienia kotłowego oraz podobne preparaty',
|
||
55121990 => 'Pozostałe włókna, zawierające 85 % masy lub więcej włókien odcinkowych akrylowych lub modakrylowych',
|
||
34054000 => 'Pasty i proszki do czyszczenia i pozostałe preparaty do czyszczenia',
|
||
34012090 => 'Mydło, organiczne środki powierzchniowo czynne',
|
||
34011900 => 'Mydło, organiczne środki powierzchniowo czynne',
|
||
38089490 => 'Środki odkażające, POZOSTAŁE',
|
||
38249996 => 'Produkty chemiczne lub preparaty, złożone głównie ze związków organicznych, gdzie indziej niewymienione ani niewłączone , POZOTAŁE',
|
||
34029010 => 'Preparaty powierzchniowo czynne',
|
||
34022020 => 'Preparaty powierzchniowo czynne',
|
||
38249920 => 'Pochłaniacze gazów do lamp próżniowych',
|
||
33074900 => 'Preparaty do perfumowania lub odświeżania pomieszczeń, włącznie z preparatami zapachowymi stosowanymi w trakcie obrzędów religijnych , POZOSTAŁE',
|
||
); |