mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-05-25 00:44:03 -04:00
Compare commits
71 Commits
no-negativ
...
migration-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b92a134238 | ||
|
|
e11eba978f | ||
|
|
a4234a3129 | ||
|
|
ba8cb0ef86 | ||
|
|
2eee6313e0 | ||
|
|
95f19d6063 | ||
|
|
8a854d1912 | ||
|
|
80f8dd9b37 | ||
|
|
94e9d35314 | ||
|
|
8b5b4f9279 | ||
|
|
b3e4b72b30 | ||
|
|
ffd511bd06 | ||
|
|
393cee62aa | ||
|
|
870aad2d67 | ||
|
|
789eb82940 | ||
|
|
89783bc190 | ||
|
|
d11824ffd4 | ||
|
|
d0093253a1 | ||
|
|
1f7529baf9 | ||
|
|
feba68b08f | ||
|
|
37cf26b10a | ||
|
|
f80f3a9cab | ||
|
|
74a4bfac85 | ||
|
|
fa347aa281 | ||
|
|
c1f1e6306e | ||
|
|
dc9d66f3de | ||
|
|
a4f52b765c | ||
|
|
e023b081c5 | ||
|
|
9c6f1e4429 | ||
|
|
962a323694 | ||
|
|
49a99c68ff | ||
|
|
44024b0929 | ||
|
|
4e52c2f036 | ||
|
|
37e757128b | ||
|
|
394bd671aa | ||
|
|
d0b29d39bf | ||
|
|
eb970b2315 | ||
|
|
c0c2001754 | ||
|
|
ec51bb3991 | ||
|
|
4ce569d76e | ||
|
|
c08e32d016 | ||
|
|
8a495ffce6 | ||
|
|
ea1528f5b9 | ||
|
|
e59dbdf47e | ||
|
|
0e29a7950a | ||
|
|
3d32536292 | ||
|
|
be24044076 | ||
|
|
3986aa8e0a | ||
|
|
d7e40cbe43 | ||
|
|
f61307d380 | ||
|
|
ebae2eab5d | ||
|
|
795e030e07 | ||
|
|
0a91c0009f | ||
|
|
5cea9a7555 | ||
|
|
9838045683 | ||
|
|
e33c10e8c4 | ||
|
|
d680b78e49 | ||
|
|
4d7561d311 | ||
|
|
ad37b2cc24 | ||
|
|
562d760174 | ||
|
|
3ea32e7444 | ||
|
|
2953cf47ed | ||
|
|
0066447fdb | ||
|
|
8af2466b20 | ||
|
|
fb7fd0fc38 | ||
|
|
52c08e9210 | ||
|
|
f17388e755 | ||
|
|
a39b3ec1bc | ||
|
|
ddc7215424 | ||
|
|
2e09cd31c2 | ||
|
|
7726adbd6f |
71
.github/workflows/codeql-analysis.yml
vendored
Normal file
71
.github/workflows/codeql-analysis.yml
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
# For most projects, this workflow file will not need changing; you simply need
|
||||
# to commit it to your repository.
|
||||
#
|
||||
# You may wish to alter this file to override the set of languages analyzed,
|
||||
# or to provide custom queries or build logic.
|
||||
#
|
||||
# ******** NOTE ********
|
||||
# We have attempted to detect the languages in your repository. Please check
|
||||
# the `language` matrix defined below to confirm you have the correct set of
|
||||
# supported CodeQL languages.
|
||||
#
|
||||
name: "CodeQL"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
branches: [ master ]
|
||||
schedule:
|
||||
- cron: '21 12 * * 3'
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Analyze
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
security-events: write
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
language: [ 'javascript' ]
|
||||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
|
||||
# Learn more:
|
||||
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v1
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||
# By default, queries listed here will override any specified in a config file.
|
||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
||||
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
||||
|
||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||
# If this step fails, then you should remove it and run the build manually (see below)
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v1
|
||||
|
||||
# ℹ️ Command-line programs to run using the OS shell.
|
||||
# 📚 https://git.io/JvXDl
|
||||
|
||||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
||||
# and modify them (or add more) to build your code if your project
|
||||
# uses a compiled language
|
||||
|
||||
#- run: |
|
||||
# make bootstrap
|
||||
# make release
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v1
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -13,6 +13,7 @@ generate_langauges.php
|
||||
dist/
|
||||
docs/
|
||||
public/bower_components
|
||||
npm_modules
|
||||
*.patch
|
||||
patches/
|
||||
translations/
|
||||
|
||||
@@ -10,7 +10,6 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
||||
RUN a2enmod rewrite
|
||||
RUN docker-php-ext-install mysqli bcmath intl gd
|
||||
RUN echo "date.timezone = \"\${PHP_TIMEZONE}\"" > /usr/local/etc/php/conf.d/timezone.ini
|
||||
RUN echo -e “$(hostname -i)\t$(hostname) $(hostname).localhost” >> /etc/hosts
|
||||
|
||||
WORKDIR /app
|
||||
COPY . /app
|
||||
|
||||
83
Gruntfile.js
83
Gruntfile.js
@@ -58,10 +58,55 @@ module.exports = function(grunt) {
|
||||
}
|
||||
}
|
||||
},
|
||||
copy: {
|
||||
themes: {
|
||||
files: [
|
||||
{
|
||||
expand: true,
|
||||
cwd: 'node_modules/bootstrap-5/dist/css',
|
||||
src: ['bootstrap.css', 'bootstrap.min.css'],
|
||||
dest: 'public/dist/bootswatch-5/bootstrap/',
|
||||
filter: 'isFile'
|
||||
},
|
||||
{
|
||||
expand: true,
|
||||
cwd: 'node_modules/bootswatch-5/dist',
|
||||
src: ['**/bootstrap.css', '**/bootstrap.min.css'],
|
||||
dest: 'public/dist/bootswatch-5/',
|
||||
filter: 'isFile'
|
||||
}
|
||||
],
|
||||
},
|
||||
licenses: {
|
||||
files: [{
|
||||
expand: true,
|
||||
src: 'LICENSE',
|
||||
dest: 'public/license/',
|
||||
filter: 'isFile',},
|
||||
{
|
||||
expand: true,
|
||||
cwd: 'node_modules/bootstrap-5',
|
||||
src: 'LICENSE',
|
||||
dest: 'public/license/',
|
||||
rename: function(dest, src) { return dest + src.replace('LICENSE', 'bootstrap-5.license'); },
|
||||
filter: 'isFile'
|
||||
},
|
||||
{
|
||||
expand: true,
|
||||
cwd: 'node_modules/bootswatch-5',
|
||||
src: 'LICENSE',
|
||||
dest: 'public/license/',
|
||||
rename: function(dest, src) { return dest + src.replace('LICENSE', 'bootswatch-5.license'); },
|
||||
filter: 'isFile'
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
cssmin: {
|
||||
target: {
|
||||
files: {
|
||||
'public/dist/<%= pkg.name %>.min.css': ['tmp/opensourcepos_bower.css', 'public/css/*.css', '!public/css/login.css', '!public/css/invoice_email.css', '!public/css/barcode_font.css', '!public/css/darkly.css']
|
||||
'public/dist/<%= pkg.name %>.min.css': ['tmp/opensourcepos_bower.css', 'public/css/*.css', '!public/css/login.css', '!public/css/login.min.css', '!public/css/invoice_email.css', '!public/css/barcode_font.css', '!public/css/darkly.css'],
|
||||
'public/css/login.min.css': ['public/css/login.css']
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -71,7 +116,7 @@ module.exports = function(grunt) {
|
||||
separator: ';'
|
||||
},
|
||||
files: {
|
||||
'tmp/<%= pkg.name %>.js': ['tmp/opensourcepos_bower.js', 'public/js/jquery*', 'public/js/*.js']
|
||||
'tmp/<%= pkg.name %>.js': ['public/dist/jquery/jquery.js', 'tmp/opensourcepos_bower.js', 'public/js/*.js']
|
||||
}
|
||||
},
|
||||
sql: {
|
||||
@@ -114,7 +159,7 @@ module.exports = function(grunt) {
|
||||
closeTag: '<!-- end css template tags -->',
|
||||
ignorePath: '../../../public/'
|
||||
},
|
||||
src: ['public/css/*.css', '!public/css/login.css', '!public/css/invoice_email.css', '!public/css/barcode_font.css', '!public/css/darkly.css'],
|
||||
src: ['public/css/*.css', '!public/css/login.css', '!public/css/login.min.css', '!public/css/invoice_email.css', '!public/css/barcode_font.css', '!public/css/darkly.css'],
|
||||
dest: 'application/views/partial/header.php',
|
||||
},
|
||||
mincss_header: {
|
||||
@@ -135,7 +180,7 @@ module.exports = function(grunt) {
|
||||
closeTag: '<!-- end css template tags -->',
|
||||
ignorePath: '../../public/'
|
||||
},
|
||||
src: ['public/css/login.css'],
|
||||
src: 'public/css/login.min.css',
|
||||
dest: 'application/views/login.php'
|
||||
},
|
||||
js: {
|
||||
@@ -145,7 +190,7 @@ module.exports = function(grunt) {
|
||||
closeTag: '<!-- end js template tags -->',
|
||||
ignorePath: '../../../public/'
|
||||
},
|
||||
src: ['public/js/jquery*', 'public/js/*.js'],
|
||||
src: ['public/dist/bootstrap/js/*.min.js', 'public/js/jquery*', 'public/js/*.js'],
|
||||
dest: 'application/views/partial/header.php'
|
||||
},
|
||||
minjs: {
|
||||
@@ -159,18 +204,6 @@ module.exports = function(grunt) {
|
||||
dest: 'application/views/partial/header.php'
|
||||
}
|
||||
},
|
||||
mochaWebdriver: {
|
||||
options: {
|
||||
timeout: 1000 * 60 * 3
|
||||
},
|
||||
test : {
|
||||
options: {
|
||||
usePhantom: true,
|
||||
usePromises: true
|
||||
},
|
||||
src: ['test/**/*.js']
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
files: ['<%= jshint.files %>'],
|
||||
tasks: ['jshint']
|
||||
@@ -222,15 +255,6 @@ module.exports = function(grunt) {
|
||||
}
|
||||
}
|
||||
},
|
||||
apigen: {
|
||||
generate:{
|
||||
options: {
|
||||
apigenPath: 'vendor/bin/',
|
||||
source: 'application',
|
||||
destination: 'docs'
|
||||
}
|
||||
}
|
||||
},
|
||||
compress: {
|
||||
main: {
|
||||
options: {
|
||||
@@ -247,6 +271,8 @@ module.exports = function(grunt) {
|
||||
'!/public/images/menubar/png/',
|
||||
'!/public/dist/bootswatch/',
|
||||
'/public/dist/bootswatch/*/*.css',
|
||||
'!/public/dist/bootswatch-5/',
|
||||
'/public/dist/bootswatch-5/*/*.css',
|
||||
'database/**',
|
||||
'*.txt',
|
||||
'*.md',
|
||||
@@ -264,16 +290,13 @@ module.exports = function(grunt) {
|
||||
});
|
||||
|
||||
require('load-grunt-tasks')(grunt);
|
||||
grunt.loadNpmTasks('grunt-mocha-webdriver');
|
||||
grunt.loadNpmTasks('grunt-composer');
|
||||
grunt.loadNpmTasks('grunt-apigen');
|
||||
grunt.loadNpmTasks('grunt-contrib-compress');
|
||||
|
||||
grunt.registerTask('default', ['wiredep', 'bower_concat', 'bowercopy', 'concat', 'uglify', 'cssmin', 'tags', 'cachebreaker']);
|
||||
grunt.registerTask('default', ['wiredep', 'bower_concat', 'bowercopy', 'copy', 'concat', 'uglify', 'cssmin', 'tags', 'cachebreaker']);
|
||||
grunt.registerTask('update', ['composer:update', 'bower:update']);
|
||||
grunt.registerTask('genlicense', ['clean:license', 'license', 'bower-licensechecker']);
|
||||
grunt.registerTask('package', ['default', 'compress']);
|
||||
grunt.registerTask('packages', ['composer:update']);
|
||||
grunt.registerTask('gendocs', ['apigen:generate']);
|
||||
|
||||
};
|
||||
|
||||
28
LICENSE
28
LICENSE
@@ -26,12 +26,12 @@ Copyright (c) 2013 Ramel
|
||||
Copyright (c) 2012-2014 pappastech
|
||||
Copyright (c) 2012 Alain
|
||||
|
||||
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:
|
||||
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.
|
||||
@@ -40,13 +40,12 @@ You cannot claim copyright or ownership of the Software.
|
||||
|
||||
Versions ≥ 3.3.2:
|
||||
|
||||
Footer signatures "© 2010 - 2021 · opensourcepos.org · 3.3.3 - 6909c8"
|
||||
Footer signatures "© 2010 - 2021 · opensourcepos.org · 3.3.3 - 6909c8"
|
||||
In the format of: "© 2010 - Current Year · opensourcepos.org · Version - Commit"
|
||||
|
||||
and/or
|
||||
|
||||
"· opensourcepos.org ·"
|
||||
|
||||
with version, hash and URL link to the official website of the project MUST BE RETAINED,
|
||||
MUST BE VISIBLE IN EVERY PAGE and CANNOT BE MODIFIED.
|
||||
|
||||
@@ -61,9 +60,10 @@ and/or
|
||||
with version, hash and URL link to the original distribution of the code MUST BE RETAINED,
|
||||
MUST BE VISIBLE IN EVERY PAGE 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
|
||||
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.
|
||||
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.
|
||||
|
||||
@@ -184,7 +184,7 @@ class Config extends Secure_Controller
|
||||
if($dirinfo->isDir() && !$dirinfo->isDot() && $dirinfo->getFileName() != 'fonts')
|
||||
{
|
||||
$file = $this->xss_clean($dirinfo->getFileName());
|
||||
$themes[$file] = $file;
|
||||
$themes[$file] = ucfirst($file);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -283,6 +283,7 @@ class Config extends Secure_Controller
|
||||
{
|
||||
$batch_save_data = array(
|
||||
'theme' => $this->input->post('theme'),
|
||||
'login_form' => $this->input->post('login_form'),
|
||||
'default_sales_discount_type' => $this->input->post('default_sales_discount_type') != NULL,
|
||||
'default_sales_discount' => $this->input->post('default_sales_discount'),
|
||||
'default_receivings_discount_type' => $this->input->post('default_receivings_discount_type') != NULL,
|
||||
|
||||
@@ -48,6 +48,7 @@ class Login extends CI_Controller
|
||||
set_time_limit(3600);
|
||||
// trigger any required upgrade before starting the application
|
||||
$this->migration->latest();
|
||||
$this->session->userdata('migration_success', true);
|
||||
}
|
||||
|
||||
if(!$this->Employee->login($username, $password))
|
||||
|
||||
@@ -10,10 +10,17 @@ class MY_Lang extends CI_Lang
|
||||
$CI->config->set_item('language', $idiom);
|
||||
$loaded = $this->is_loaded;
|
||||
$this->is_loaded = array();
|
||||
|
||||
|
||||
foreach($loaded as $file)
|
||||
{
|
||||
$this->load(strtr($file, '', '_lang.php'));
|
||||
$filename = strtr($file, '', '_lang.php');
|
||||
$this->load($filename, 'english');
|
||||
$array = $this->load($filename, $idiom, TRUE);
|
||||
foreach($array as $lang_key => $lang_value) {
|
||||
if ($lang_value != '') {
|
||||
$this->language[$lang_key] = $lang_value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,8 +26,8 @@ function load_config()
|
||||
$CI->config->set_item('language_code', 'en-US');
|
||||
}
|
||||
|
||||
_load_language_files($CI, '../vendor/codeigniter/framework/system/language', current_language());
|
||||
_load_language_files($CI, '../application/language', current_language_code());
|
||||
_load_language_files($CI, '../vendor/codeigniter/framework/system/language', current_language(), FALSE);
|
||||
_load_language_files($CI, '../application/language', current_language_code(), TRUE);
|
||||
|
||||
//Set timezone from config database
|
||||
if($CI->config->item('timezone'))
|
||||
@@ -46,16 +46,33 @@ function load_config()
|
||||
* @param $CI
|
||||
* @param $path
|
||||
* @param $language
|
||||
* @param $fallback
|
||||
*/
|
||||
function _load_language_files($CI, $path, $language)
|
||||
function _load_language_files($CI, $path, $language, $fallback)
|
||||
{
|
||||
$map = directory_map($path . DIRECTORY_SEPARATOR . $language);
|
||||
|
||||
foreach($map as $file)
|
||||
{
|
||||
|
||||
if(!is_array($file) && substr(strrchr($file, '.'), 1) == 'php')
|
||||
{
|
||||
$CI->lang->load(strtr($file, '', '_lang.php'), $language);
|
||||
$filename = strtr($file, '', '_lang.php');
|
||||
if ($fallback) {
|
||||
$CI->lang->load($filename, 'en-US');
|
||||
|
||||
$array = $CI->lang->load($filename, $language, TRUE);
|
||||
foreach($array as $lang_key => $lang_value) {
|
||||
if ($lang_value !== '') {
|
||||
$CI->lang->language[$lang_key] = $lang_value;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$CI->lang->load($filename, $language);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "النوع";
|
||||
$lang["common_gender_female"] = "أنثى";
|
||||
$lang["common_gender_male"] = "ذكر";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "كود";
|
||||
$lang["common_import"] = "استيراد";
|
||||
$lang["common_import_change_file"] = "تغيير";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "الاسم الأخير مطلوب.";
|
||||
$lang["common_last_page"] = "الأخيرة";
|
||||
$lang["common_learn_about_project"] = "للتعرف على أخر المعلومات حول المشروع.";
|
||||
$lang["common_list_of"] = "قائمة بـ";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "خروج";
|
||||
$lang["common_migration_needed"] = "سيبدأ ترحيل قاعدة البيانات إلى ٪1 بعد تسجيل الدخول.";
|
||||
$lang["common_new"] = "جديد";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "سياسة الاسترجاع";
|
||||
$lang["common_search"] = "بحث";
|
||||
$lang["common_search_options"] = "خيارات البحث";
|
||||
$lang["common_searched_for"] = "بحث عن";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "المحافظة";
|
||||
$lang["common_submit"] = "حفظ";
|
||||
$lang["common_total_spent"] = "مجموع الصرف";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "1 مايو";
|
||||
$lang["config_financial_year_nov"] = "1 نوفمبر";
|
||||
$lang["config_financial_year_oct"] = "1 أكتوبر";
|
||||
$lang["config_financial_year_sep"] = "1 سبتمبر";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "صفحة تسجيل الدخول ريكابتشا";
|
||||
$lang["config_gcaptcha_secret_key"] = "مفتاح السرية ريكابتشا";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "مفتاح السرية ريكابتشا هو حقل مطلوب";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "";
|
||||
$lang["config_include_hsn"] = "تشمل الدعم لرمز نظام منسق";
|
||||
$lang["config_info"] = "معلومات";
|
||||
$lang["config_info_configuration"] = "معلومات الشركة";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "التكامل";
|
||||
$lang["config_integrations_configuration"] = "تكامل";
|
||||
$lang["config_invoice"] = "الفاتورة";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "معلومات التهيئة الإقليمية"
|
||||
$lang["config_location"] = "المخزون";
|
||||
$lang["config_location_configuration"] = "أماكن المخزون";
|
||||
$lang["config_location_info"] = "معلومات تهيئة الأماكن";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "هل تريد عمل نسخة إحتياطية قبل الخروج؟ اضغط [نعم] لعمل النسخة أو [الغاء] للخروج.";
|
||||
$lang["config_mailchimp"] = "mailchimp ميل تشامب";
|
||||
$lang["config_mailchimp_api_key"] = "mailchimp مفتاح";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "العلامة العشرية للضريبة";
|
||||
$lang["config_tax_id"] = "الرقم الضريبي";
|
||||
$lang["config_tax_included"] = "شامل الضريبة";
|
||||
$lang["config_theme"] = "السمة";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "فاصل الاف";
|
||||
$lang["config_timezone"] = "المنطقة الزمنية";
|
||||
$lang["config_timezone_error"] = "";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "رمز التحقق غير صحيح.";
|
||||
$lang["login_invalid_installation"] = "يوجد مشكلة بالتنصيب, الرجاء التحقق من ملف php.ini.";
|
||||
$lang["login_invalid_username_and_password"] = "اسم مستخدم/كلمة سر غير صحيح.";
|
||||
$lang["login_login"] = "دخول";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "كلمة السر";
|
||||
$lang["login_username"] = "اسم المستخدم";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,6 +10,7 @@ $lang["sales_amount_tendered"] = "المبلغ المدفوع";
|
||||
$lang["sales_authorized_signature"] = "توقيع معتمد";
|
||||
$lang["sales_cancel_sale"] = "الغاء عملية البيع";
|
||||
$lang["sales_cash"] = "نقدى";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_deposit"] = "ايداع نقدي";
|
||||
$lang["sales_cash_filter"] = "نقدى";
|
||||
$lang["sales_change_due"] = "الباقى";
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "النوع";
|
||||
$lang["common_gender_female"] = "أنثى";
|
||||
$lang["common_gender_male"] = "ذكر";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "كود";
|
||||
$lang["common_import"] = "استيراد";
|
||||
$lang["common_import_change_file"] = "تغيير";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "الاسم الأخير مطلوب.";
|
||||
$lang["common_last_page"] = "الأخيرة";
|
||||
$lang["common_learn_about_project"] = "للتعرف على أخر المعلومات حول المشروع.";
|
||||
$lang["common_list_of"] = "قائمة بـ";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "خروج";
|
||||
$lang["common_migration_needed"] = "سيبدأ ترحيل قاعدة البيانات إلى ٪1 بعد تسجيل الدخول.";
|
||||
$lang["common_new"] = "جديد";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "سياسة الاسترجاع";
|
||||
$lang["common_search"] = "بحث";
|
||||
$lang["common_search_options"] = "خيارات البحث";
|
||||
$lang["common_searched_for"] = "بحث عن";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "المحافظة";
|
||||
$lang["common_submit"] = "حفظ";
|
||||
$lang["common_total_spent"] = "مجموع الصرف";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "1 مايو";
|
||||
$lang["config_financial_year_nov"] = "1 نوفمبر";
|
||||
$lang["config_financial_year_oct"] = "1 أكتوبر";
|
||||
$lang["config_financial_year_sep"] = "1 سبتمبر";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "صفحة تسجيل الدخول ريكابتشا";
|
||||
$lang["config_gcaptcha_secret_key"] = "مفتاح السرية ريكابتشا";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "مفتاح السرية ريكابتشا هو حقل مطلوب";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "";
|
||||
$lang["config_include_hsn"] = "تشمل الدعم لرمز نظام منسق";
|
||||
$lang["config_info"] = "معلومات";
|
||||
$lang["config_info_configuration"] = "معلومات الشركة";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "التكامل";
|
||||
$lang["config_integrations_configuration"] = "تكامل";
|
||||
$lang["config_invoice"] = "الفاتورة";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "معلومات التهيئة الإقليمية"
|
||||
$lang["config_location"] = "المخزون";
|
||||
$lang["config_location_configuration"] = "أماكن المخزون";
|
||||
$lang["config_location_info"] = "معلومات تهيئة الأماكن";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "هل تريد عمل نسخة إحتياطية قبل الخروج؟ اضغط [نعم] لعمل النسخة أو [الغاء] للخروج.";
|
||||
$lang["config_mailchimp"] = "mailchimp ميل تشامب";
|
||||
$lang["config_mailchimp_api_key"] = "mailchimp مفتاح";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "العلامة العشرية للضريبة";
|
||||
$lang["config_tax_id"] = "الرقم الضريبي";
|
||||
$lang["config_tax_included"] = "شامل الضريبة";
|
||||
$lang["config_theme"] = "السمة";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "فاصل الاف";
|
||||
$lang["config_timezone"] = "المنطقة الزمنية";
|
||||
$lang["config_timezone_error"] = "";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "رمز التحقق غير صحيح.";
|
||||
$lang["login_invalid_installation"] = "يوجد مشكلة بالتنصيب, الرجاء التحقق من ملف php.ini.";
|
||||
$lang["login_invalid_username_and_password"] = "اسم مستخدم/كلمة سر غير صحيح.";
|
||||
$lang["login_login"] = "دخول";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "كلمة السر";
|
||||
$lang["login_username"] = "اسم المستخدم";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,10 +10,11 @@ $lang["sales_amount_tendered"] = "المبلغ المدفوع";
|
||||
$lang["sales_authorized_signature"] = "توقيع معتمد";
|
||||
$lang["sales_cancel_sale"] = "الغاء عملية البيع";
|
||||
$lang["sales_cash"] = "نقدى";
|
||||
$lang["sales_cash_adjustment"] = "تعديل الدفع";
|
||||
$lang["sales_cash_deposit"] = "ايداع نقدي";
|
||||
$lang["sales_cash_filter"] = "نقدى";
|
||||
$lang["sales_change_due"] = "الباقى";
|
||||
$lang["sales_change_price"] = "";
|
||||
$lang["sales_change_price"] = "تغيير سعر البيع";
|
||||
$lang["sales_check"] = "شيك";
|
||||
$lang["sales_check_balance"] = "تذكير بموعد الشيك";
|
||||
$lang["sales_check_filter"] = "شيك";
|
||||
@@ -25,13 +26,13 @@ $lang["sales_confirm_delete"] = "هل تريد حذف عمليات البيع ا
|
||||
$lang["sales_confirm_restore"] = "هل انت متاكد من استعادة عملية البيع؟";
|
||||
$lang["sales_credit"] = "بطاقة إئتمانية";
|
||||
$lang["sales_credit_deposit"] = "ايداع ببطاقة ائتمان";
|
||||
$lang["sales_credit_filter"] = "";
|
||||
$lang["sales_credit_filter"] = "بطاقة بنكية";
|
||||
$lang["sales_customer"] = "العميل";
|
||||
$lang["sales_customer_address"] = "العنوان";
|
||||
$lang["sales_customer_discount"] = "الخصم";
|
||||
$lang["sales_customer_email"] = "البريد الإلكترونى";
|
||||
$lang["sales_customer_location"] = "المكان";
|
||||
$lang["sales_customer_mailchimp_status"] = "حالة ميل تشيمب";
|
||||
$lang["sales_customer_mailchimp_status"] = "حالة بريد ميل تشيمب";
|
||||
$lang["sales_customer_optional"] = "(مطلوب للدفعات المستحقة)";
|
||||
$lang["sales_customer_required"] = "(اجباري)";
|
||||
$lang["sales_customer_total"] = "المجموع";
|
||||
@@ -53,26 +54,26 @@ $lang["sales_discount_included"] = "% خصم";
|
||||
$lang["sales_discount_short"] = "%";
|
||||
$lang["sales_due"] = "مستحق";
|
||||
$lang["sales_due_filter"] = "مستحق";
|
||||
$lang["sales_edit"] = "تحرير";
|
||||
$lang["sales_edit_item"] = "تحرير صنف";
|
||||
$lang["sales_edit_sale"] = "تحرير عملية بيع";
|
||||
$lang["sales_edit"] = "تعديل";
|
||||
$lang["sales_edit_item"] = "تعديل مادة";
|
||||
$lang["sales_edit_sale"] = "تعديل عملية بيع";
|
||||
$lang["sales_email_receipt"] = "إرسال الايصال بالبريد الالكترونى";
|
||||
$lang["sales_employee"] = "الموظف";
|
||||
$lang["sales_entry"] = "ادخال";
|
||||
$lang["sales_error_editing_item"] = "خطاء فى تحرير الصنف";
|
||||
$lang["sales_find_or_scan_item"] = "بحث/مسح باركود صنف";
|
||||
$lang["sales_find_or_scan_item_or_receipt"] = "بحث/مسح باركود صنف أو ايصال";
|
||||
$lang["sales_error_editing_item"] = "خطاء فى تعديل المادة";
|
||||
$lang["sales_find_or_scan_item"] = "بحث/مسح باركود المادة";
|
||||
$lang["sales_find_or_scan_item_or_receipt"] = "بحث/مسح باركود المادة أو الايصال";
|
||||
$lang["sales_giftcard"] = "بطاقة هدية";
|
||||
$lang["sales_giftcard_balance"] = "رصيد بطاقة الهدية";
|
||||
$lang["sales_giftcard_number"] = "رقم بطاقة الهدية";
|
||||
$lang["sales_group_by_category"] = "تصفية حسب الفئة";
|
||||
$lang["sales_group_by_type"] = "تجميع حسب النوع";
|
||||
$lang["sales_group_by_category"] = "ترتيب حسب الفئة";
|
||||
$lang["sales_group_by_type"] = "ترتيب حسب النوع";
|
||||
$lang["sales_hsn"] = "رمز نظام منسق";
|
||||
$lang["sales_id"] = "كود عملية البيع";
|
||||
$lang["sales_id"] = "رقم عملية البيع";
|
||||
$lang["sales_include_prices"] = "يشمل الاسعار؟";
|
||||
$lang["sales_invoice"] = "فاتورة";
|
||||
$lang["sales_invoice_confirm"] = "هذه الفاتورة سوف ترسل إلى";
|
||||
$lang["sales_invoice_enable"] = "إنشاء فاتورة";
|
||||
$lang["sales_invoice_enable"] = "رقم فاتورة";
|
||||
$lang["sales_invoice_filter"] = "الفواتير";
|
||||
$lang["sales_invoice_no_email"] = "هذا العميل ليس لدية بريد الكترونى صالح.";
|
||||
$lang["sales_invoice_number"] = "فاتورة رقم #";
|
||||
@@ -85,32 +86,32 @@ $lang["sales_invoice_type_invoice"] = "الفاتورة (invoice.php)";
|
||||
$lang["sales_invoice_type_tax_invoice"] = "الفاتورة الضريبية (tax_invoice.php)";
|
||||
$lang["sales_invoice_unsent"] = "فشل إرسال الفاتورة إلى";
|
||||
$lang["sales_invoice_update"] = "إعادة العد";
|
||||
$lang["sales_item_insufficient_of_stock"] = "لايوجد مخزون كافى من الصنف.";
|
||||
$lang["sales_item_name"] = "اسم الصنف";
|
||||
$lang["sales_item_number"] = "صنف #";
|
||||
$lang["sales_item_out_of_stock"] = "لايوجد مخزون من الصنف.";
|
||||
$lang["sales_item_insufficient_of_stock"] = "لايوجد مخزون كافى من المادة.";
|
||||
$lang["sales_item_name"] = "اسم المادة";
|
||||
$lang["sales_item_number"] = "مادة رقم #";
|
||||
$lang["sales_item_out_of_stock"] = "لايوجد مخزون من المادة.";
|
||||
$lang["sales_mode"] = "وضع التسجيل";
|
||||
$lang["sales_must_enter_numeric"] = "يجب إدخال رقم للمبلغ الفعلى المدفوع.";
|
||||
$lang["sales_must_enter_numeric_giftcard"] = "رقم بطاقة الهدية يجب أن يكون رقم.";
|
||||
$lang["sales_must_enter_numeric_giftcard"] = "رمز بطاقة الهدية يجب أن يكتون ارقام فقط.";
|
||||
$lang["sales_new_customer"] = "عميل جديد";
|
||||
$lang["sales_new_item"] = "صنف جديد";
|
||||
$lang["sales_new_item"] = "مادة جديدة";
|
||||
$lang["sales_no_description"] = "بدون وصف";
|
||||
$lang["sales_no_filter"] = "الكل";
|
||||
$lang["sales_no_items_in_cart"] = "لايوجد أصناف فى السلة.";
|
||||
$lang["sales_no_items_in_cart"] = "لايوجد اي مادة فى السلة.";
|
||||
$lang["sales_no_sales_to_display"] = "لاتوجد عمليات بيع لعرضها.";
|
||||
$lang["sales_none_selected"] = "لم تقم بإختيار أى عمليات بيع لحذفها.";
|
||||
$lang["sales_nontaxed_ind"] = "";
|
||||
$lang["sales_not_authorized"] = "هذه العملية لا يمكن فعلها لعدم تخويلك.";
|
||||
$lang["sales_not_authorized"] = "ليس لديك صلاحية.";
|
||||
$lang["sales_one_or_multiple"] = "عمليات بيع";
|
||||
$lang["sales_payment"] = "طريقة الدفع";
|
||||
$lang["sales_payment_amount"] = "المبلغ";
|
||||
$lang["sales_payment_amount"] = "القيمة";
|
||||
$lang["sales_payment_not_cover_total"] = "المبلغ المدفوع لايغطى المبلغ الإجمالى.";
|
||||
$lang["sales_payment_type"] = "طريقة";
|
||||
$lang["sales_payments_total"] = "إجمالى المدفوعات";
|
||||
$lang["sales_price"] = "السعر";
|
||||
$lang["sales_print_after_sale"] = "اطبع بعد عملية البيع";
|
||||
$lang["sales_quantity"] = "الكمية";
|
||||
$lang["sales_quantity_less_than_reorder_level"] = "تحذير: الكمية/العدد المطلوب غير متوفر لهذا الصنف.";
|
||||
$lang["sales_quantity_less_than_reorder_level"] = "تحذير: الكمية أقل من الحد المطلوب لهذه المادة.";
|
||||
$lang["sales_quantity_less_than_zero"] = "تحذير! الكمية المطلوبة غير كافية، بإمكانك إتمام عملية البيع ، لكن تحقق من مخزنك.";
|
||||
$lang["sales_quantity_of_items"] = "عدد ال 1% من الاصناف";
|
||||
$lang["sales_quote"] = "عرض اسعار";
|
||||
@@ -123,10 +124,10 @@ $lang["sales_receipt_no_email"] = "هذا العميل ليس له اي بريد
|
||||
$lang["sales_receipt_number"] = "إيصال بيع";
|
||||
$lang["sales_receipt_sent"] = "تم إرسال الإيصال إلى";
|
||||
$lang["sales_receipt_unsent"] = "فشل إرسال الإيصال إلى";
|
||||
$lang["sales_refund"] = "";
|
||||
$lang["sales_register"] = "مسجل المبيعات";
|
||||
$lang["sales_refund"] = "نوع/سبب الاسترجاع";
|
||||
$lang["sales_register"] = "سجل المبيعات";
|
||||
$lang["sales_remove_customer"] = "حذف عميل";
|
||||
$lang["sales_return"] = "إرتجاع";
|
||||
$lang["sales_return"] = "إسترجاع";
|
||||
$lang["sales_rewards"] = "نقاط المكافئة";
|
||||
$lang["sales_rewards_balance"] = "رصيد نقاط المكافئة";
|
||||
$lang["sales_sale"] = "بيع";
|
||||
@@ -145,7 +146,7 @@ $lang["sales_show_receipt"] = "عرض الإيصال";
|
||||
$lang["sales_start_typing_customer_name"] = "ابداء بكتابة اسم العميل...";
|
||||
$lang["sales_start_typing_item_name"] = "ابداء بكتابة اسم أو مسح باركود الصنف...";
|
||||
$lang["sales_stock"] = "المخزن";
|
||||
$lang["sales_stock_location"] = "مكان المخزون";
|
||||
$lang["sales_stock_location"] = "موقع التخزين";
|
||||
$lang["sales_sub_total"] = "المجموع الفرعي";
|
||||
$lang["sales_successfully_deleted"] = "لقد تم الحذف بنجاح";
|
||||
$lang["sales_successfully_restored"] = "لقد تمت عملية الاستعادة بنجاح";
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "Cins";
|
||||
$lang["common_gender_female"] = "Q";
|
||||
$lang["common_gender_male"] = "K";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "ID";
|
||||
$lang["common_import"] = "Daxil et";
|
||||
$lang["common_import_change_file"] = "Dəyiş";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "Soyad tələb olunur.";
|
||||
$lang["common_last_page"] = "Son";
|
||||
$lang["common_learn_about_project"] = "Proyekt haqqında ən son məlumatı öyrənmək.";
|
||||
$lang["common_list_of"] = "Siyahısı";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Çıxış";
|
||||
$lang["common_migration_needed"] = "Girişdən sonra bazaya %1 köçməsi başlayacaq.";
|
||||
$lang["common_new"] = "Yenisi";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "Qaytarma siyasəti";
|
||||
$lang["common_search"] = "Axtarış";
|
||||
$lang["common_search_options"] = "Axtarış variantları";
|
||||
$lang["common_searched_for"] = "Axtarıldı";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "Əyalət";
|
||||
$lang["common_submit"] = "Təsdiqlə";
|
||||
$lang["common_total_spent"] = "Ümumi xərc";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "1 May";
|
||||
$lang["config_financial_year_nov"] = "1 Noyabr";
|
||||
$lang["config_financial_year_oct"] = "1 Oktyabr";
|
||||
$lang["config_financial_year_sep"] = "1 Sentyabr";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "Giriş Səyfəsi reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key"] = "reCAPTCHA Gizli Açarı";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "reCAPTCHA Gizli Açar olan sahə boş qala bilməz";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "Şəkil yükləmə məhdudiyyətləri";
|
||||
$lang["config_include_hsn"] = "HSN Kodlarına dəstək verin";
|
||||
$lang["config_info"] = "Məlumat";
|
||||
$lang["config_info_configuration"] = "Dükan İnformasiyası";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "İnteqrasiya";
|
||||
$lang["config_integrations_configuration"] = "Üçüncü tərəf inteqrasiya";
|
||||
$lang["config_invoice"] = "Faktura";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "Lokallaşdırma Konfiqurasiya Məlumatı";
|
||||
$lang["config_location"] = "Fond";
|
||||
$lang["config_location_configuration"] = "Anbar Yerləri";
|
||||
$lang["config_location_info"] = "Yer Konfiqurasiya Məlumatı";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "Çıxışdan əvvəl məlumatlari ehtiyat bazasına köçürmək istəyirsinizmi? Çıxış üçün Bekap və ya [Ləğv] üçün [OK]' düyməsinə basın.";
|
||||
$lang["config_mailchimp"] = "Mailçimp";
|
||||
$lang["config_mailchimp_api_key"] = "Mailchimp API Açarı";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "Vaxt";
|
||||
$lang["config_tax_id"] = "Vergi İD";
|
||||
$lang["config_tax_included"] = "Vergi Daxildir";
|
||||
$lang["config_theme"] = "Vebsayt";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "Minliklər Ayıran";
|
||||
$lang["config_timezone"] = "Vaxt Zonası";
|
||||
$lang["config_timezone_error"] = "OSPOS Saat qurşağı Yerli saat qurşağınızdan fərqlidir.";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["item_kits_add_item"] = "Mal Əlavə Etmək";
|
||||
$lang["item_kits_all"] = "Hamısı";
|
||||
$lang["item_kits_cannot_be_deleted"] = "Dəst Mal (lar) silinə bilməz.";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "Yanlış, Mən robot deyiləm.";
|
||||
$lang["login_invalid_installation"] = "Quraşdırma düzgün deyil, php.ini faylını yoxlayın.";
|
||||
$lang["login_invalid_username_and_password"] = "Ad və ya şifrə səhvdir.";
|
||||
$lang["login_login"] = "Giriş";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "Şifrə";
|
||||
$lang["login_username"] = "İstifadəçi";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,6 +10,7 @@ $lang["sales_amount_tendered"] = "Ödənilən məbləğ";
|
||||
$lang["sales_authorized_signature"] = "Səlahiyyətli İmza";
|
||||
$lang["sales_cancel_sale"] = "İmtina";
|
||||
$lang["sales_cash"] = "Nəğd pullar";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_deposit"] = "Nağd depozit";
|
||||
$lang["sales_cash_filter"] = "Nəğd Pul";
|
||||
$lang["sales_change_due"] = "Qalıq";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["tables_all"] = "Всичко/и";
|
||||
$lang["tables_columns"] = "Колони";
|
||||
$lang["tables_hide_show_pagination"] = "Скриване / Показване на страници";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["common_address_1"] = "Адрес 1";
|
||||
$lang["common_address_2"] = "Адрес 2";
|
||||
$lang["common_city"] = "Град";
|
||||
@@ -27,6 +28,7 @@ $lang["common_gender"] = "Пол";
|
||||
$lang["common_gender_female"] = "Ж";
|
||||
$lang["common_gender_male"] = "М";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "Номер";
|
||||
$lang["common_import"] = "Внос";
|
||||
$lang["common_import_change_file"] = "Промяна";
|
||||
@@ -40,6 +42,8 @@ $lang["common_last_name_required"] = "Фамилия е задължително
|
||||
$lang["common_last_page"] = "Последна";
|
||||
$lang["common_learn_about_project"] = "за да научите най-новата информация за проекта.";
|
||||
$lang["common_list_of"] = "Списък с";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Излизане от профила";
|
||||
$lang["common_migration_needed"] = "Мигриране на база данни ще започне след влизане.";
|
||||
$lang["common_new"] = "Нов";
|
||||
@@ -60,6 +64,8 @@ $lang["common_return_policy"] = "Условия за връщане";
|
||||
$lang["common_search"] = "Търсене";
|
||||
$lang["common_search_options"] = "Опции за търсене";
|
||||
$lang["common_searched_for"] = "Търсене за";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "Щат";
|
||||
$lang["common_submit"] = "Изпращане";
|
||||
$lang["common_total_spent"] = "Общо изразходвани";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "1st of May";
|
||||
$lang["config_financial_year_nov"] = "1st of November";
|
||||
$lang["config_financial_year_oct"] = "1st of October";
|
||||
$lang["config_financial_year_sep"] = "1st of September";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "Login Page reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key"] = "reCAPTCHA Secret Key";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "reCAPTCHA Secret Key is a required field";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "";
|
||||
$lang["config_include_hsn"] = "";
|
||||
$lang["config_info"] = "Information";
|
||||
$lang["config_info_configuration"] = "Store Information";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "";
|
||||
$lang["config_integrations_configuration"] = "";
|
||||
$lang["config_invoice"] = "Invoice";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "Localization Configuration Information";
|
||||
$lang["config_location"] = "Stock";
|
||||
$lang["config_location_configuration"] = "Stock Locations";
|
||||
$lang["config_location_info"] = "Location Configuration Information";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.";
|
||||
$lang["config_mailchimp"] = "Mailchimp";
|
||||
$lang["config_mailchimp_api_key"] = "Mailchimp API Key";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "Tax Decimals";
|
||||
$lang["config_tax_id"] = "";
|
||||
$lang["config_tax_included"] = "Tax Included";
|
||||
$lang["config_theme"] = "Theme";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "Thousands Separator";
|
||||
$lang["config_timezone"] = "Timezone";
|
||||
$lang["config_timezone_error"] = "";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["customers_account_number"] = "Сметка #";
|
||||
$lang["customers_account_number_duplicate"] = "Номерът на сметката вече е в базата данни.";
|
||||
$lang["customers_available_points"] = "Налични точки";
|
||||
|
||||
@@ -1,9 +1,14 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["login_gcaptcha"] = "Не съм робот.";
|
||||
$lang["login_go"] = "Go";
|
||||
$lang["login_invalid_gcaptcha"] = "Invalid I'm not a robot.";
|
||||
$lang["login_invalid_installation"] = "The installation is not correct, check your php.ini file.";
|
||||
$lang["login_invalid_username_and_password"] = "Invalid Username or Password.";
|
||||
$lang["login_login"] = "Login";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "Password";
|
||||
$lang["login_username"] = "Username";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["customers_available_points"] = "Налични точки";
|
||||
$lang["rewards_package"] = "Награди";
|
||||
$lang["rewards_remaining_balance"] = "Оставащата стойност на точките за награда е ";
|
||||
@@ -9,6 +10,7 @@ $lang["sales_amount_tendered"] = "Предоставена сума";
|
||||
$lang["sales_authorized_signature"] = "Оторизиран подпис";
|
||||
$lang["sales_cancel_sale"] = "Отказ";
|
||||
$lang["sales_cash"] = "В брой";
|
||||
$lang["sales_cash_adjustment"] = "Корекция на пари в брой";
|
||||
$lang["sales_cash_deposit"] = "Депозит в брой";
|
||||
$lang["sales_cash_filter"] = "В брой";
|
||||
$lang["sales_change_due"] = "Промяна на дължимото";
|
||||
@@ -178,4 +180,3 @@ $lang["sales_work_order_number"] = "Номер работна поръчка";
|
||||
$lang["sales_work_order_number_duplicate"] = "Номерът на работната поръчка трябва да е уникален.";
|
||||
$lang["sales_work_order_sent"] = "Работната поръчка е изпратена до";
|
||||
$lang["sales_work_order_unsent"] = "Работната поръчка не бе изпратена до";
|
||||
$lang["sales_cash_adjustment"] = "Корекция на пари в брой";
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "Pol";
|
||||
$lang["common_gender_female"] = "Ž";
|
||||
$lang["common_gender_male"] = "M";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "Id";
|
||||
$lang["common_import"] = "Uvoz";
|
||||
$lang["common_import_change_file"] = "Promjena";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "Prezime je obavezno";
|
||||
$lang["common_last_page"] = "Poslednja";
|
||||
$lang["common_learn_about_project"] = "da biste saznali najnovije informacije o projektu";
|
||||
$lang["common_list_of"] = "Lista";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Odjava";
|
||||
$lang["common_migration_needed"] = "Premještanje baze podataka na %1 počinje nakon prijave.";
|
||||
$lang["common_new"] = "Novi";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "Povratna informacija";
|
||||
$lang["common_search"] = "Traži";
|
||||
$lang["common_search_options"] = "Opcije pretrage";
|
||||
$lang["common_searched_for"] = "Traženo";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "Entitet";
|
||||
$lang["common_submit"] = "Prihvati";
|
||||
$lang["common_total_spent"] = "Ukupno potrošeno";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "1. Maj";
|
||||
$lang["config_financial_year_nov"] = "1. Novembar";
|
||||
$lang["config_financial_year_oct"] = "1. Oktobar";
|
||||
$lang["config_financial_year_sep"] = "1. Septembar";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "Stranica za prijavu reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key"] = "reCAPTCHA tajni ključ";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "reCAPTCHA tajni ključ je obavezno polje";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "Ograničenja za učitavanje slike";
|
||||
$lang["config_include_hsn"] = "Uključite podršku za HSN kodove";
|
||||
$lang["config_info"] = "Informacije";
|
||||
$lang["config_info_configuration"] = "Info o web trgovini";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "Integracije";
|
||||
$lang["config_integrations_configuration"] = "Integracije trećih strana";
|
||||
$lang["config_invoice"] = "Faktura";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "Info o lokalnoj konfiguraciji";
|
||||
$lang["config_location"] = "Skladište";
|
||||
$lang["config_location_configuration"] = "Lokacije skladišta";
|
||||
$lang["config_location_info"] = "Informacije o konfiguraciji lokacije";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "Zar ne želite da napravite rezervnu kopiju prije odjave? Kliknite [OK] za sigurnosnu kopiju, [Cancel] da biste se odjavili.";
|
||||
$lang["config_mailchimp"] = "Mailchimp";
|
||||
$lang["config_mailchimp_api_key"] = "Mailchimp API ključ";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "Poreske decimale";
|
||||
$lang["config_tax_id"] = "Poreska identifikacija";
|
||||
$lang["config_tax_included"] = "Uključen porez";
|
||||
$lang["config_theme"] = "Tema";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "Separator za hiljade";
|
||||
$lang["config_timezone"] = "Vremenska zona";
|
||||
$lang["config_timezone_error"] = "Vremenska zona OSPOS razlikuje se od vaše lokalne vremenske zone.";
|
||||
|
||||
@@ -12,6 +12,10 @@ $lang["customers_confirm_delete"] = "Želite li izbrisati izabranog kupca?";
|
||||
$lang["customers_confirm_restore"] = "Da li ste sigurni da želite da povratite izabranog kupca?";
|
||||
$lang["customers_consent"] = "Pristanak na registraciju";
|
||||
$lang["customers_consent_required"] = "Prihvatanje registracije je obavezno polje.";
|
||||
$lang["customers_csv_import_failed"] = "Greška kod uvoza iz CSV-a";
|
||||
$lang["customers_csv_import_nodata_wrongformat"] = "Vaša učitana datoteka nema podataka ili je pogrešnog formata";
|
||||
$lang["customers_csv_import_partially_failed"] = "Većina kupaca je uvezena. Ali neki nisu, evo liste";
|
||||
$lang["customers_csv_import_success"] = "Uvoz kupaca je uspješan";
|
||||
$lang["customers_customer"] = "Kupac";
|
||||
$lang["customers_date"] = "Datum";
|
||||
$lang["customers_discount"] = "Popust";
|
||||
@@ -21,10 +25,6 @@ $lang["customers_discount_type"] = "Tip popusta";
|
||||
$lang["customers_email_duplicate"] = "E-mail adresa već postoji u bazi podataka.";
|
||||
$lang["customers_employee"] = "Zaposlenik";
|
||||
$lang["customers_error_adding_updating"] = "Greška kod dodavanja/ažuriranja kupca";
|
||||
$lang["customers_csv_import_failed"] = "Greška kod uvoza iz CSV-a";
|
||||
$lang["customers_csv_import_nodata_wrongformat"] = "Vaša učitana datoteka nema podataka ili je pogrešnog formata";
|
||||
$lang["customers_csv_import_partially_failed"] = "Većina kupaca je uvezena. Ali neki nisu, evo liste";
|
||||
$lang["customers_csv_import_success"] = "Uvoz kupaca je uspješan";
|
||||
$lang["customers_import_items_csv"] = "Uvezi kupce iz CSV datoteke";
|
||||
$lang["customers_mailchimp_activity_click"] = "Klik na e-mail";
|
||||
$lang["customers_mailchimp_activity_lastopen"] = "Zadnji otvoreni e-mail";
|
||||
|
||||
@@ -42,8 +42,8 @@ $lang["items_image"] = "Slika";
|
||||
$lang["items_import_items_csv"] = "Uvezi artikle iz CSV datoteke";
|
||||
$lang["items_info_provided_by"] = "Informacije pruža";
|
||||
$lang["items_inventory"] = "Zaliha";
|
||||
$lang["items_inventory_comments"] = "Komentari";
|
||||
$lang["items_inventory_CSV_import_quantity"] = "Količina uvezena iz CSV-a";
|
||||
$lang["items_inventory_comments"] = "Komentari";
|
||||
$lang["items_inventory_data_tracking"] = "Praćenje podataka zalihe";
|
||||
$lang["items_inventory_date"] = "Datum";
|
||||
$lang["items_inventory_employee"] = "Zaposlenik";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "Pogrešno ja nisam robot.";
|
||||
$lang["login_invalid_installation"] = "Instalacija nije ispravna, provjerite vašu php.ini datoteku.";
|
||||
$lang["login_invalid_username_and_password"] = "Pogrešno korisničko ime ili lozinka";
|
||||
$lang["login_login"] = "Prijava";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "Lozinka";
|
||||
$lang["login_username"] = "Korisničko ime";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,6 +10,7 @@ $lang["sales_amount_tendered"] = "Ponuđeni iznos";
|
||||
$lang["sales_authorized_signature"] = "Ovlašćeni potpis";
|
||||
$lang["sales_cancel_sale"] = "Otkaži";
|
||||
$lang["sales_cash"] = "Gotovina";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_deposit"] = "Polog gotovine";
|
||||
$lang["sales_cash_filter"] = "Gotovina";
|
||||
$lang["sales_change_due"] = "Kusur";
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "Pohlaví";
|
||||
$lang["common_gender_female"] = "Ž";
|
||||
$lang["common_gender_male"] = "M";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "Id";
|
||||
$lang["common_import"] = "Import";
|
||||
$lang["common_import_change_file"] = "Změnit";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "Příjmení je vyžadováno.";
|
||||
$lang["common_last_page"] = "Poslední";
|
||||
$lang["common_learn_about_project"] = "pro získání dalších informací k projektu.";
|
||||
$lang["common_list_of"] = "Seznam";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Odhlásit";
|
||||
$lang["common_migration_needed"] = "";
|
||||
$lang["common_new"] = "Nový";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "Podmínky pro vrácení";
|
||||
$lang["common_search"] = "Hledat";
|
||||
$lang["common_search_options"] = "Volby pro hledání";
|
||||
$lang["common_searched_for"] = "Hledat";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "Stát";
|
||||
$lang["common_submit"] = "Odeslat";
|
||||
$lang["common_total_spent"] = "Celkem utraceno";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "";
|
||||
$lang["config_financial_year_nov"] = "";
|
||||
$lang["config_financial_year_oct"] = "";
|
||||
$lang["config_financial_year_sep"] = "";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "";
|
||||
$lang["config_gcaptcha_secret_key"] = "";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "";
|
||||
$lang["config_include_hsn"] = "";
|
||||
$lang["config_info"] = "";
|
||||
$lang["config_info_configuration"] = "";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "";
|
||||
$lang["config_integrations_configuration"] = "";
|
||||
$lang["config_invoice"] = "";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "";
|
||||
$lang["config_location"] = "";
|
||||
$lang["config_location_configuration"] = "";
|
||||
$lang["config_location_info"] = "";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "";
|
||||
$lang["config_mailchimp"] = "";
|
||||
$lang["config_mailchimp_api_key"] = "";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "";
|
||||
$lang["config_tax_id"] = "";
|
||||
$lang["config_tax_included"] = "";
|
||||
$lang["config_theme"] = "";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "";
|
||||
$lang["config_timezone"] = "";
|
||||
$lang["config_timezone_error"] = "";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "Špatné zadání.";
|
||||
$lang["login_invalid_installation"] = "Instalace není v pořádku, zkontrolujte soubor php.ini.";
|
||||
$lang["login_invalid_username_and_password"] = "Neplatné jméno nebo heslo.";
|
||||
$lang["login_login"] = "Login";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "Heslo";
|
||||
$lang["login_username"] = "Uživatelské jméno";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,6 +10,7 @@ $lang["sales_amount_tendered"] = "Uhrazeno";
|
||||
$lang["sales_authorized_signature"] = "";
|
||||
$lang["sales_cancel_sale"] = "Zrušit";
|
||||
$lang["sales_cash"] = "Hotovost";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_deposit"] = "";
|
||||
$lang["sales_cash_filter"] = "Hotově";
|
||||
$lang["sales_change_due"] = "Zbývá";
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "Køn";
|
||||
$lang["common_gender_female"] = "Kvinde";
|
||||
$lang["common_gender_male"] = "Mand";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "Id";
|
||||
$lang["common_import"] = "Import";
|
||||
$lang["common_import_change_file"] = "Skift";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "Efternavn er et obligatorisk felt.";
|
||||
$lang["common_last_page"] = "Sidste";
|
||||
$lang["common_learn_about_project"] = "for at lære det seneste information om projektet.";
|
||||
$lang["common_list_of"] = "Liste af";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Log ud";
|
||||
$lang["common_migration_needed"] = "En database migration til %1 vil starte efter du er logget ind.";
|
||||
$lang["common_new"] = "Ny";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "Returpolitik";
|
||||
$lang["common_search"] = "Søg";
|
||||
$lang["common_search_options"] = "Søgeindstillinger";
|
||||
$lang["common_searched_for"] = "Søgt efter";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "Stat";
|
||||
$lang["common_submit"] = "Indsend";
|
||||
$lang["common_total_spent"] = "Samlet brugt";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "1st of May";
|
||||
$lang["config_financial_year_nov"] = "1st of November";
|
||||
$lang["config_financial_year_oct"] = "1st of October";
|
||||
$lang["config_financial_year_sep"] = "1st of September";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "Login Page reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key"] = "reCAPTCHA Secret Key";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "reCAPTCHA Secret Key is a required field";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "";
|
||||
$lang["config_include_hsn"] = "Include Support for HSN Codes";
|
||||
$lang["config_info"] = "Information";
|
||||
$lang["config_info_configuration"] = "Store Information";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "Integrations";
|
||||
$lang["config_integrations_configuration"] = "Third Party Integrations";
|
||||
$lang["config_invoice"] = "Invoice";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "Localization Configuration Information";
|
||||
$lang["config_location"] = "Stock";
|
||||
$lang["config_location_configuration"] = "Stock Locations";
|
||||
$lang["config_location_info"] = "Location Configuration Information";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.";
|
||||
$lang["config_mailchimp"] = "Mailchimp";
|
||||
$lang["config_mailchimp_api_key"] = "Mailchimp API Key";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "Tax Decimals";
|
||||
$lang["config_tax_id"] = "Tax Id";
|
||||
$lang["config_tax_included"] = "Tax Included";
|
||||
$lang["config_theme"] = "Theme";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "Thousands Separator";
|
||||
$lang["config_timezone"] = "Timezone";
|
||||
$lang["config_timezone_error"] = "";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "";
|
||||
$lang["login_invalid_installation"] = "";
|
||||
$lang["login_invalid_username_and_password"] = "";
|
||||
$lang["login_login"] = "";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "";
|
||||
$lang["login_username"] = "";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,6 +10,7 @@ $lang["sales_amount_tendered"] = "";
|
||||
$lang["sales_authorized_signature"] = "";
|
||||
$lang["sales_cancel_sale"] = "";
|
||||
$lang["sales_cash"] = "";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_deposit"] = "";
|
||||
$lang["sales_cash_filter"] = "";
|
||||
$lang["sales_change_due"] = "";
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "Geschlecht";
|
||||
$lang["common_gender_female"] = "F";
|
||||
$lang["common_gender_male"] = "M";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "Id";
|
||||
$lang["common_import"] = "Import";
|
||||
$lang["common_import_change_file"] = "Change";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "Nachname ist erforderlich";
|
||||
$lang["common_last_page"] = "Letzte";
|
||||
$lang["common_learn_about_project"] = "für neueste Nachrichten zum Projekt";
|
||||
$lang["common_list_of"] = "Liste von";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Logout";
|
||||
$lang["common_migration_needed"] = "";
|
||||
$lang["common_new"] = "Neu";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "Rücknahmepolitik";
|
||||
$lang["common_search"] = "Suche";
|
||||
$lang["common_search_options"] = "Suchkriterien";
|
||||
$lang["common_searched_for"] = "Gescuht nach";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "BL/Kanton";
|
||||
$lang["common_submit"] = "Senden";
|
||||
$lang["common_total_spent"] = "";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "";
|
||||
$lang["config_financial_year_nov"] = "";
|
||||
$lang["config_financial_year_oct"] = "";
|
||||
$lang["config_financial_year_sep"] = "";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "";
|
||||
$lang["config_gcaptcha_secret_key"] = "";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "";
|
||||
$lang["config_include_hsn"] = "";
|
||||
$lang["config_info"] = "Instellungen";
|
||||
$lang["config_info_configuration"] = "Instellungen";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "";
|
||||
$lang["config_integrations_configuration"] = "";
|
||||
$lang["config_invoice"] = "Rechnungs";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "Info Länderkonfiguration";
|
||||
$lang["config_location"] = "Lagerort";
|
||||
$lang["config_location_configuration"] = "Lagerort";
|
||||
$lang["config_location_info"] = "Lagerort-Information";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "Wollen Sie eine Sicherung machen vor dem Beenden? Klicke [OK] für Sicherung";
|
||||
$lang["config_mailchimp"] = "";
|
||||
$lang["config_mailchimp_api_key"] = "";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "Tax Decimals";
|
||||
$lang["config_tax_id"] = "";
|
||||
$lang["config_tax_included"] = "MWSt inbegriffen";
|
||||
$lang["config_theme"] = "Design";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "Tausendertrennzeichen";
|
||||
$lang["config_timezone"] = "Zeitzone";
|
||||
$lang["config_timezone_error"] = "";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "";
|
||||
$lang["login_invalid_installation"] = "";
|
||||
$lang["login_invalid_username_and_password"] = "Ungültiger Benutzername/Passwort";
|
||||
$lang["login_login"] = "Login";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "Passwort";
|
||||
$lang["login_username"] = "Benutzername";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,6 +10,7 @@ $lang["sales_amount_tendered"] = "Erhalten";
|
||||
$lang["sales_authorized_signature"] = "";
|
||||
$lang["sales_cancel_sale"] = "Annullieren";
|
||||
$lang["sales_cash"] = "Bar";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_deposit"] = "";
|
||||
$lang["sales_cash_filter"] = "Bar";
|
||||
$lang["sales_change_due"] = "Wechselgeld";
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "Geschlecht";
|
||||
$lang["common_gender_female"] = "W";
|
||||
$lang["common_gender_male"] = "M";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "ID";
|
||||
$lang["common_import"] = "Import";
|
||||
$lang["common_import_change_file"] = "Ändern";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "Nachname ist erforderlich.";
|
||||
$lang["common_last_page"] = "Letzte";
|
||||
$lang["common_learn_about_project"] = "für neueste Nachrichten zum Projekt.";
|
||||
$lang["common_list_of"] = "Liste von";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Ausloggen";
|
||||
$lang["common_migration_needed"] = "Eine Datenbankmigration auf %1 wird nach der Anmeldung gestartet.";
|
||||
$lang["common_new"] = "Neu";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "Rücknahmeerklärung";
|
||||
$lang["common_search"] = "Suche";
|
||||
$lang["common_search_options"] = "Suchkriterien";
|
||||
$lang["common_searched_for"] = "Gescuht nach";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "BL/Kanton";
|
||||
$lang["common_submit"] = "Senden";
|
||||
$lang["common_total_spent"] = "Gesamtausgaben";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "1. Mai";
|
||||
$lang["config_financial_year_nov"] = "1. November";
|
||||
$lang["config_financial_year_oct"] = "1. Oktober";
|
||||
$lang["config_financial_year_sep"] = "1. September";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "Login reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key"] = "reCAPTCHA: Geheimer Schlüssel";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "reCAPTCHA Secret Key wird benötigt";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "";
|
||||
$lang["config_include_hsn"] = "Unterstützung für HSN-Codes einbinden";
|
||||
$lang["config_info"] = "Informationen";
|
||||
$lang["config_info_configuration"] = "Generelle Einstellungen";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "Integrationen";
|
||||
$lang["config_integrations_configuration"] = "Drittanbieter Integrationen";
|
||||
$lang["config_invoice"] = "Rechnungs";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "Info Länderkonfiguration";
|
||||
$lang["config_location"] = "Lagerort";
|
||||
$lang["config_location_configuration"] = "Lagerort";
|
||||
$lang["config_location_info"] = "Lagerort-Information";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "Wollen Sie vor dem Beenden eine Sicherung erstellen? Klicke [OK] für Sicherung.";
|
||||
$lang["config_mailchimp"] = "Mailchimp";
|
||||
$lang["config_mailchimp_api_key"] = "Mailchimp API Schlüssel";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "Steuer Dezimalstellen";
|
||||
$lang["config_tax_id"] = "Steuer ID";
|
||||
$lang["config_tax_included"] = "MWSt inbegriffen";
|
||||
$lang["config_theme"] = "Design";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "Tausendertrennzeichen";
|
||||
$lang["config_timezone"] = "Zeitzone";
|
||||
$lang["config_timezone_error"] = "";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "Ich bin kein Roboter ist ungültig.";
|
||||
$lang["login_invalid_installation"] = "Die Installation ist nicht korrekt, überprüfen Sie Ihre php.ini-Datei.";
|
||||
$lang["login_invalid_username_and_password"] = "Ungültiger Benutzername oder Passwort.";
|
||||
$lang["login_login"] = "Login";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "Passwort";
|
||||
$lang["login_username"] = "Benutzername";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,6 +10,7 @@ $lang["sales_amount_tendered"] = "Erhalten";
|
||||
$lang["sales_authorized_signature"] = "Unterschrift";
|
||||
$lang["sales_cancel_sale"] = "Annullieren";
|
||||
$lang["sales_cash"] = "Bar";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_deposit"] = "Bareinzahlung";
|
||||
$lang["sales_cash_filter"] = "Bar";
|
||||
$lang["sales_change_due"] = "Wechselgeld";
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "Φύλο";
|
||||
$lang["common_gender_female"] = "Θ";
|
||||
$lang["common_gender_male"] = "Α";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "Id";
|
||||
$lang["common_import"] = "Εισαγωγή";
|
||||
$lang["common_import_change_file"] = "Αλλαγή";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "Το Επίθετο απαιτείται."
|
||||
$lang["common_last_page"] = "Τελευταίο";
|
||||
$lang["common_learn_about_project"] = "ώστε να ενημερωθείτε για τις τελευταίες πληροφορίες του έργου.";
|
||||
$lang["common_list_of"] = "Λίστα από";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Έξοδος";
|
||||
$lang["common_migration_needed"] = "Η ενσωμάτωση της βάσης δεδομένων σε %1 θα ξεκινήσει μετά την είσοδο.";
|
||||
$lang["common_new"] = "Νέο";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "Πολιτική Επιστροφών";
|
||||
$lang["common_search"] = "Αναζήτηση";
|
||||
$lang["common_search_options"] = "Επιλογές αναζήτησης";
|
||||
$lang["common_searched_for"] = "Αναζητήσατε για";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "Περιοχή/Νομός";
|
||||
$lang["common_submit"] = "Καταχώριση";
|
||||
$lang["common_total_spent"] = "Σύνολο εξόδων";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "";
|
||||
$lang["config_financial_year_nov"] = "";
|
||||
$lang["config_financial_year_oct"] = "";
|
||||
$lang["config_financial_year_sep"] = "";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "";
|
||||
$lang["config_gcaptcha_secret_key"] = "";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "";
|
||||
$lang["config_include_hsn"] = "";
|
||||
$lang["config_info"] = "";
|
||||
$lang["config_info_configuration"] = "";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "";
|
||||
$lang["config_integrations_configuration"] = "";
|
||||
$lang["config_invoice"] = "";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "";
|
||||
$lang["config_location"] = "";
|
||||
$lang["config_location_configuration"] = "";
|
||||
$lang["config_location_info"] = "";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "";
|
||||
$lang["config_mailchimp"] = "";
|
||||
$lang["config_mailchimp_api_key"] = "";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "";
|
||||
$lang["config_tax_id"] = "";
|
||||
$lang["config_tax_included"] = "";
|
||||
$lang["config_theme"] = "";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "";
|
||||
$lang["config_timezone"] = "";
|
||||
$lang["config_timezone_error"] = "";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "";
|
||||
$lang["login_invalid_installation"] = "";
|
||||
$lang["login_invalid_username_and_password"] = "";
|
||||
$lang["login_login"] = "";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "";
|
||||
$lang["login_username"] = "";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,6 +10,7 @@ $lang["sales_amount_tendered"] = "Ποσό Είσπραξης";
|
||||
$lang["sales_authorized_signature"] = "Εγκεκριμένη Υπογραφή";
|
||||
$lang["sales_cancel_sale"] = "Ακύρωση";
|
||||
$lang["sales_cash"] = "Μετρητά";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_deposit"] = "Προκαταβολή Μετρητών";
|
||||
$lang["sales_cash_filter"] = "Μετρητά";
|
||||
$lang["sales_change_due"] = "Ποσό Επιστροφής";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["common_address_1"] = "Address 1";
|
||||
$lang["common_address_2"] = "Address 2";
|
||||
$lang["common_city"] = "City";
|
||||
@@ -27,6 +28,7 @@ $lang["common_gender"] = "Gender";
|
||||
$lang["common_gender_female"] = "F";
|
||||
$lang["common_gender_male"] = "M";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "Id";
|
||||
$lang["common_import"] = "Import";
|
||||
$lang["common_import_change_file"] = "Change";
|
||||
@@ -40,6 +42,8 @@ $lang["common_last_name_required"] = "Last Name is a required field";
|
||||
$lang["common_last_page"] = "Last";
|
||||
$lang["common_learn_about_project"] = "to learn the latest information about the project";
|
||||
$lang["common_list_of"] = "List of";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Logout";
|
||||
$lang["common_migration_needed"] = "A database migration to %1 will start after login";
|
||||
$lang["common_new"] = "New";
|
||||
@@ -60,6 +64,8 @@ $lang["common_return_policy"] = "Return Policy";
|
||||
$lang["common_search"] = "Search";
|
||||
$lang["common_search_options"] = "Search options";
|
||||
$lang["common_searched_for"] = "Searched for";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "County";
|
||||
$lang["common_submit"] = "Submit";
|
||||
$lang["common_total_spent"] = "Total Spent";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["config_address"] = "Company Address";
|
||||
$lang["config_address_required"] = "Company Address is a required field";
|
||||
$lang["config_all_set"] = "All file permissions are set correctly!";
|
||||
@@ -126,6 +127,7 @@ $lang["config_financial_year_may"] = "1st of May";
|
||||
$lang["config_financial_year_nov"] = "1st of November";
|
||||
$lang["config_financial_year_oct"] = "1st of October";
|
||||
$lang["config_financial_year_sep"] = "1st of September";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "Login Page reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key"] = "reCAPTCHA Secret Key";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "reCAPTCHA Secret Key is a required field";
|
||||
@@ -145,6 +147,7 @@ $lang["config_image_restrictions"] = "Image Upload Restrictions";
|
||||
$lang["config_include_hsn"] = "Include Support for HSN Codes";
|
||||
$lang["config_info"] = "Information";
|
||||
$lang["config_info_configuration"] = "Shop Information";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "Integrations";
|
||||
$lang["config_integrations_configuration"] = "Third Party Integrations";
|
||||
$lang["config_invoice"] = "Invoice";
|
||||
@@ -174,6 +177,7 @@ $lang["config_locale_info"] = "Localisation Configuration Information";
|
||||
$lang["config_location"] = "Stock";
|
||||
$lang["config_location_configuration"] = "Stock Locations";
|
||||
$lang["config_location_info"] = "Location Configuration Information";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "Don't you want to make a backup before logging out? Click [OK] to backup, [Cancel] to logout";
|
||||
$lang["config_mailchimp"] = "MailChimp";
|
||||
$lang["config_mailchimp_api_key"] = "MailChimp API Key";
|
||||
@@ -288,6 +292,7 @@ $lang["config_tax_decimals"] = "Tax Decimals";
|
||||
$lang["config_tax_id"] = "Tax Id";
|
||||
$lang["config_tax_included"] = "Tax Included";
|
||||
$lang["config_theme"] = "Theme";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "Thousands Separator";
|
||||
$lang["config_timezone"] = "Timezone";
|
||||
$lang["config_timezone_error"] = "OSPOS Timezone is Different from your Local Timezone.";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["customers_account_number"] = "Account #";
|
||||
$lang["customers_account_number_duplicate"] = "Account Number is already present in the database";
|
||||
$lang["customers_available_points"] = "Available points";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["expenses_add_item"] = "Add Expense";
|
||||
$lang["expenses_amount"] = "Amount";
|
||||
$lang["expenses_amount_number"] = "Amount must be a number";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["item_kits_add_item"] = "Add Item";
|
||||
$lang["item_kits_all"] = "All";
|
||||
$lang["item_kits_cannot_be_deleted"] = "Item Kit(s) delete failed";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "Invalid I'm not a robot";
|
||||
$lang["login_invalid_installation"] = "The installation is not correct, check your php.ini file";
|
||||
$lang["login_invalid_username_and_password"] = "Invalid Username or Password";
|
||||
$lang["login_login"] = "Login";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "Database migration to %1 was successful. Please login again.";
|
||||
$lang["login_password"] = "Password";
|
||||
$lang["login_username"] = "Username";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["customers_available_points"] = "Available Points";
|
||||
$lang["rewards_package"] = "Rewards";
|
||||
$lang["rewards_remaining_balance"] = "Reward Points remaining value is ";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["common_address_1"] = "Address 1";
|
||||
$lang["common_address_2"] = "Address 2";
|
||||
$lang["common_city"] = "City";
|
||||
@@ -27,7 +28,8 @@ $lang["common_gender"] = "Gender";
|
||||
$lang["common_gender_female"] = "F";
|
||||
$lang["common_gender_male"] = "M";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_id"] = "Id";
|
||||
$lang["common_icon"] = "Icon";
|
||||
$lang["common_id"] = "ID";
|
||||
$lang["common_import"] = "Import";
|
||||
$lang["common_import_change_file"] = "Change";
|
||||
$lang["common_import_csv"] = "CSV Import";
|
||||
@@ -40,8 +42,10 @@ $lang["common_last_name_required"] = "Last Name is a required field.";
|
||||
$lang["common_last_page"] = "Last";
|
||||
$lang["common_learn_about_project"] = "to learn the latest information about the project.";
|
||||
$lang["common_list_of"] = "List of";
|
||||
$lang["common_logout"] = "Logout";
|
||||
$lang["common_migration_needed"] = "A database migration to %1 will start after login.";
|
||||
$lang["common_logo"] = "Logo";
|
||||
$lang["common_logo_mark"] = "Mark";
|
||||
$lang["common_logout"] = "";
|
||||
$lang["common_migration_needed"] = "";
|
||||
$lang["common_new"] = "New";
|
||||
$lang["common_no"] = "";
|
||||
$lang["common_no_persons_to_display"] = "There are no people to display.";
|
||||
@@ -60,6 +64,8 @@ $lang["common_return_policy"] = "Return Policy";
|
||||
$lang["common_search"] = "Search";
|
||||
$lang["common_search_options"] = "Search options";
|
||||
$lang["common_searched_for"] = "Searched for";
|
||||
$lang["common_software_short"] = "OSPOS";
|
||||
$lang["common_software_title"] = "Open Source Point of Sale";
|
||||
$lang["common_state"] = "State";
|
||||
$lang["common_submit"] = "Submit";
|
||||
$lang["common_total_spent"] = "Total Spent";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["config_address"] = "Company Address";
|
||||
$lang["config_address_required"] = "Company address is a required field.";
|
||||
$lang["config_all_set"] = "All file permissions are set correctly!";
|
||||
@@ -126,6 +127,7 @@ $lang["config_financial_year_may"] = "1st of May";
|
||||
$lang["config_financial_year_nov"] = "1st of November";
|
||||
$lang["config_financial_year_oct"] = "1st of October";
|
||||
$lang["config_financial_year_sep"] = "1st of September";
|
||||
$lang["config_floating_labels"] = "Floating Labels";
|
||||
$lang["config_gcaptcha_enable"] = "Login Page reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key"] = "reCAPTCHA Secret Key";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "reCAPTCHA Secret Key is a required field";
|
||||
@@ -145,6 +147,7 @@ $lang["config_image_restrictions"] = "Image Upload Restrictions";
|
||||
$lang["config_include_hsn"] = "Include Support for HSN Codes";
|
||||
$lang["config_info"] = "Information";
|
||||
$lang["config_info_configuration"] = "Store Information";
|
||||
$lang["config_input_groups"] = "Input Groups";
|
||||
$lang["config_integrations"] = "Integrations";
|
||||
$lang["config_integrations_configuration"] = "Third Party Integrations";
|
||||
$lang["config_invoice"] = "Invoice";
|
||||
@@ -174,6 +177,7 @@ $lang["config_locale_info"] = "Localization Configuration Information";
|
||||
$lang["config_location"] = "Stock";
|
||||
$lang["config_location_configuration"] = "Stock Locations";
|
||||
$lang["config_location_info"] = "Location Configuration Information";
|
||||
$lang["config_login_form"] = "Login Form Style";
|
||||
$lang["config_logout"] = "Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.";
|
||||
$lang["config_mailchimp"] = "MailChimp";
|
||||
$lang["config_mailchimp_api_key"] = "MailChimp API Key";
|
||||
@@ -288,6 +292,7 @@ $lang["config_tax_decimals"] = "Tax Decimals";
|
||||
$lang["config_tax_id"] = "Tax Id";
|
||||
$lang["config_tax_included"] = "Tax Included";
|
||||
$lang["config_theme"] = "Theme";
|
||||
$lang["config_theme_preview"] = "Preview Theme:";
|
||||
$lang["config_thousands_separator"] = "Thousands Separator";
|
||||
$lang["config_timezone"] = "Timezone";
|
||||
$lang["config_timezone_error"] = "OSPOS Timezone is Different from your Local Timezone.";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["customers_account_number"] = "Account #";
|
||||
$lang["customers_account_number_duplicate"] = "Account Number is already present in the database.";
|
||||
$lang["customers_available_points"] = "Available Points";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["expenses_add_item"] = "Add Expense";
|
||||
$lang["expenses_amount"] = "Amount";
|
||||
$lang["expenses_amount_number"] = "Amount must be a number";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["items_add_minus"] = "Inventory to add or subtract.";
|
||||
$lang["items_allow_alt_description"] = "Allow Alternate Description";
|
||||
$lang["items_amount_entry"] = "Amount Entry";
|
||||
|
||||
@@ -1,9 +1,14 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["login_gcaptcha"] = "I'm not a robot.";
|
||||
$lang["login_go"] = "Go";
|
||||
$lang["login_invalid_gcaptcha"] = "Please verify that you are not a robot.";
|
||||
$lang["login_invalid_installation"] = "The installation is not correct, check your php.ini file.";
|
||||
$lang["login_invalid_username_and_password"] = "Invalid Username or Password.";
|
||||
$lang["login_invalid_username_and_password"] = "Invalid username and/or password.";
|
||||
$lang["login_login"] = "Login";
|
||||
$lang["login_logout"] = "Logout";
|
||||
$lang["login_migration_needed"] = "A database migration to %1 will start after login.";
|
||||
$lang["login_migration_success"] = "Database migration to %1 was successful. Please login again.";
|
||||
$lang["login_password"] = "Password";
|
||||
$lang["login_username"] = "Username";
|
||||
$lang["login_welcome"] = "Welcome to %1!";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["customers_available_points"] = "Available Points";
|
||||
$lang["rewards_package"] = "Rewards";
|
||||
$lang["rewards_remaining_balance"] = "Reward Points remaining value is ";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["attributes_attribute_value_invalid_chars"] = "El valor del atributo no puede contener ':' o '|'";
|
||||
$lang["attributes_confirm_delete"] = "¿Está seguro de que desea borrar los atributos seleccionados?";
|
||||
$lang["attributes_confirm_restore"] = "¿Está seguro de que desea restaurar los atributos seleccionados?";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["tables_all"] = "Todos";
|
||||
$lang["tables_columns"] = "Columnas";
|
||||
$lang["tables_hide_show_pagination"] = "Ocultar/Mostrar paginación";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["cashups_amount"] = "Cantidad";
|
||||
$lang["cashups_amount_number"] = "Cantidad debe ser un numero";
|
||||
$lang["cashups_amount_required"] = "Cantidad es un campo obligatorio.";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["common_address_1"] = "Dirección 1";
|
||||
$lang["common_address_2"] = "Dirección 2";
|
||||
$lang["common_city"] = "Ciudad";
|
||||
@@ -27,6 +28,7 @@ $lang["common_gender"] = "Género";
|
||||
$lang["common_gender_female"] = "F";
|
||||
$lang["common_gender_male"] = "M";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "Id";
|
||||
$lang["common_import"] = "Importar";
|
||||
$lang["common_import_change_file"] = "Cambiar";
|
||||
@@ -40,6 +42,8 @@ $lang["common_last_name_required"] = "Apellidos es un campo requerido.";
|
||||
$lang["common_last_page"] = "Ultima";
|
||||
$lang["common_learn_about_project"] = "para leer la información más reciente acerca del proyecto.";
|
||||
$lang["common_list_of"] = "Lista de";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Salir";
|
||||
$lang["common_migration_needed"] = "La migración de la base de datos hacia %1 comenzará después de iniciar sesión.";
|
||||
$lang["common_new"] = "Nuevo";
|
||||
@@ -60,6 +64,8 @@ $lang["common_return_policy"] = "Política de Devolución";
|
||||
$lang["common_search"] = "Buscar";
|
||||
$lang["common_search_options"] = "Opciones de búsqueda";
|
||||
$lang["common_searched_for"] = "Buscado";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "Estado";
|
||||
$lang["common_submit"] = "Enviar";
|
||||
$lang["common_total_spent"] = "Total gastado";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["config_address"] = "Dirección del Comercio";
|
||||
$lang["config_address_required"] = "Dirección del Comercio es requerida.";
|
||||
$lang["config_all_set"] = "¡Todos los permisos de archivo están configurados correctamente!";
|
||||
@@ -126,6 +127,7 @@ $lang["config_financial_year_may"] = "1º de Mayo";
|
||||
$lang["config_financial_year_nov"] = "1º de Noviembre";
|
||||
$lang["config_financial_year_oct"] = "1º de Octubre";
|
||||
$lang["config_financial_year_sep"] = "1º de Septiembre";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "Inicio de sesión con reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key"] = "Llave secreta reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "reCAPTCHA Secret Key es requerida si se usa";
|
||||
@@ -145,6 +147,7 @@ $lang["config_image_restrictions"] = "Restricciones de carga de imágenes";
|
||||
$lang["config_include_hsn"] = "Incluir Soporte para Códigos HSN";
|
||||
$lang["config_info"] = "Información";
|
||||
$lang["config_info_configuration"] = "Información del Comercio";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "Componentes Integrados";
|
||||
$lang["config_integrations_configuration"] = "Componentes de Terceros Integrados";
|
||||
$lang["config_invoice"] = "Factura";
|
||||
@@ -174,6 +177,7 @@ $lang["config_locale_info"] = "Informacion de la configuracion de la zona";
|
||||
$lang["config_location"] = "Inventario";
|
||||
$lang["config_location_configuration"] = "Ubicación de Inventario";
|
||||
$lang["config_location_info"] = "Información de Configuración de Ubicación";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "Desea hacer un respaldo antes de salir? Pulsa [OK] para respaldar o [Cancelar] para salir.";
|
||||
$lang["config_mailchimp"] = "Correo Chimp";
|
||||
$lang["config_mailchimp_api_key"] = "Clave de la API Mailchimp";
|
||||
@@ -288,6 +292,7 @@ $lang["config_tax_decimals"] = "Decimales de impuestos";
|
||||
$lang["config_tax_id"] = "Identificador del Impuesto";
|
||||
$lang["config_tax_included"] = "Impuestos incluidos";
|
||||
$lang["config_theme"] = "Tema";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "Separador de miles";
|
||||
$lang["config_timezone"] = "Zona Horaria";
|
||||
$lang["config_timezone_error"] = "";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "Inválido, no soy un robot.";
|
||||
$lang["login_invalid_installation"] = "La instalación no es correcta, comprueba el fichero php.ini.";
|
||||
$lang["login_invalid_username_and_password"] = "Usuario o Contraseña no válidos.";
|
||||
$lang["login_login"] = "Iniciar Sesión";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "Contraseña";
|
||||
$lang["login_username"] = "Usuario";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,6 +10,7 @@ $lang["sales_amount_tendered"] = "Cantidad Recibida";
|
||||
$lang["sales_authorized_signature"] = "Firma Autorizada";
|
||||
$lang["sales_cancel_sale"] = "Cancelar Venta";
|
||||
$lang["sales_cash"] = "Efectivo";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_deposit"] = "Deposito Efectivo";
|
||||
$lang["sales_cash_filter"] = "Efectivo";
|
||||
$lang["sales_change_due"] = "Cambio";
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "Género";
|
||||
$lang["common_gender_female"] = "M";
|
||||
$lang["common_gender_male"] = "H";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "Id";
|
||||
$lang["common_import"] = "Importar";
|
||||
$lang["common_import_change_file"] = "Cambiar";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "El/Los Apellido(s) es un campo requerido."
|
||||
$lang["common_last_page"] = "Último";
|
||||
$lang["common_learn_about_project"] = "para conocer la última información sobre el proyecto.";
|
||||
$lang["common_list_of"] = "Lista de";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Cerrar Sesión";
|
||||
$lang["common_migration_needed"] = "La migración de la base de datos a %1 comenzará luego de acceder.";
|
||||
$lang["common_new"] = "Nuevo(a)";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "Política de Devoluciones";
|
||||
$lang["common_search"] = "Buscar";
|
||||
$lang["common_search_options"] = "Opciones de búsqueda";
|
||||
$lang["common_searched_for"] = "Buscado por";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "Estado";
|
||||
$lang["common_submit"] = "Enviar";
|
||||
$lang["common_total_spent"] = "Total Gastado";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["config_address"] = "Dirección de la Empresa";
|
||||
$lang["config_address_required"] = "La Dirección de la Empresa es un campo requerido.";
|
||||
$lang["config_all_set"] = "All file permissions are set correctly!";
|
||||
@@ -126,6 +127,7 @@ $lang["config_financial_year_may"] = "1st of May";
|
||||
$lang["config_financial_year_nov"] = "1st of November";
|
||||
$lang["config_financial_year_oct"] = "1st of October";
|
||||
$lang["config_financial_year_sep"] = "1st of September";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "Login Page reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key"] = "reCAPTCHA Secret Key";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "reCAPTCHA Secret Key is a required field";
|
||||
@@ -145,6 +147,7 @@ $lang["config_image_restrictions"] = "Restricciones de carga de imágenes";
|
||||
$lang["config_include_hsn"] = "Include Support for HSN Codes";
|
||||
$lang["config_info"] = "Information";
|
||||
$lang["config_info_configuration"] = "Store Information";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "Integraciones";
|
||||
$lang["config_integrations_configuration"] = "Integraciones Externas";
|
||||
$lang["config_invoice"] = "Invoice";
|
||||
@@ -174,6 +177,7 @@ $lang["config_locale_info"] = "Localization Configuration Information";
|
||||
$lang["config_location"] = "Stock";
|
||||
$lang["config_location_configuration"] = "Stock Locations";
|
||||
$lang["config_location_info"] = "Location Configuration Information";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.";
|
||||
$lang["config_mailchimp"] = "Mailchimp";
|
||||
$lang["config_mailchimp_api_key"] = "Mailchimp Clave API";
|
||||
@@ -288,6 +292,7 @@ $lang["config_tax_decimals"] = "Tax Decimals";
|
||||
$lang["config_tax_id"] = "Tax Id";
|
||||
$lang["config_tax_included"] = "Tax Included";
|
||||
$lang["config_theme"] = "Theme";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "Thousands Separator";
|
||||
$lang["config_timezone"] = "Timezone";
|
||||
$lang["config_timezone_error"] = "La zona horaria de OSPOS es diferente a su zona horaria local.";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["item_kits_add_item"] = "Agregar Artículo";
|
||||
$lang["item_kits_all"] = "Todo";
|
||||
$lang["item_kits_cannot_be_deleted"] = "Borrado de Kit(s) de Artículos fallido.";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "";
|
||||
$lang["login_invalid_installation"] = "";
|
||||
$lang["login_invalid_username_and_password"] = "";
|
||||
$lang["login_login"] = "";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "";
|
||||
$lang["login_username"] = "";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["reports_all"] = "Todas";
|
||||
$lang["reports_authority"] = "Autoridad";
|
||||
$lang["reports_canceled"] = "Cancelado";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["customers_available_points"] = "Puntos Disponibles";
|
||||
$lang["rewards_package"] = "Premios";
|
||||
$lang["rewards_remaining_balance"] = "Puntos de recompensa sobrante son: ";
|
||||
@@ -9,6 +10,7 @@ $lang["sales_amount_tendered"] = "Cantidad Recibida";
|
||||
$lang["sales_authorized_signature"] = "Firma Autorizada";
|
||||
$lang["sales_cancel_sale"] = "Cancelar";
|
||||
$lang["sales_cash"] = "Efectivo";
|
||||
$lang["sales_cash_adjustment"] = "Ajuste de efectivo";
|
||||
$lang["sales_cash_deposit"] = "Deposito en Efectivo";
|
||||
$lang["sales_cash_filter"] = "Efectivo";
|
||||
$lang["sales_change_due"] = "Cambio";
|
||||
@@ -178,4 +180,3 @@ $lang["sales_work_order_number"] = "Número de orden de trabajo";
|
||||
$lang["sales_work_order_number_duplicate"] = "El número de orden de trabajo debe ser único.";
|
||||
$lang["sales_work_order_sent"] = "Orden de trabajo enviada a";
|
||||
$lang["sales_work_order_unsent"] = "Fallo al enviar la orden de trabajo a";
|
||||
$lang["sales_cash_adjustment"] = "Ajuste de efectivo";
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "جنس";
|
||||
$lang["common_gender_female"] = "خانم";
|
||||
$lang["common_gender_male"] = "آقا";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "شناسه";
|
||||
$lang["common_import"] = "وارد كردن";
|
||||
$lang["common_import_change_file"] = "تغییر";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "نام خانوادگی یک فیلد ضر
|
||||
$lang["common_last_page"] = "آخر";
|
||||
$lang["common_learn_about_project"] = "برای یادگیری آخرین اطلاعات در مورد پروژه.";
|
||||
$lang["common_list_of"] = "فهرست";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "خروج";
|
||||
$lang["common_migration_needed"] = "انتقال پایگاه داده به٪ 1 پس از ورود به سیستم آغاز می شود.";
|
||||
$lang["common_new"] = "جدید";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "خط مشی بازگشت";
|
||||
$lang["common_search"] = "جستجو کردن";
|
||||
$lang["common_search_options"] = "گزینه های جستجو";
|
||||
$lang["common_searched_for"] = "جستجو شد";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "دولت";
|
||||
$lang["common_submit"] = "ارسال";
|
||||
$lang["common_total_spent"] = "جمع هزینه";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "اول ماه مه";
|
||||
$lang["config_financial_year_nov"] = "اول نوامبر";
|
||||
$lang["config_financial_year_oct"] = "اول اکتبر";
|
||||
$lang["config_financial_year_sep"] = "اول سپتامبر";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "صفحه ورود کپچا";
|
||||
$lang["config_gcaptcha_secret_key"] = "کلید مخفی کپچا";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "کلید مخفی کپچا یک زمینه مورد نیاز است";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "محدودیتهای آپلود تصویر
|
||||
$lang["config_include_hsn"] = "شامل پشتیبانی از کدهای اچاسان";
|
||||
$lang["config_info"] = "اطلاعات";
|
||||
$lang["config_info_configuration"] = "اطلاعات فروشگاه";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "ادغام";
|
||||
$lang["config_integrations_configuration"] = "ادغام های شخص ثالث";
|
||||
$lang["config_invoice"] = "صورتحساب";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "اطلاعات پیکربندی محلی سازی
|
||||
$lang["config_location"] = "موجودی";
|
||||
$lang["config_location_configuration"] = "محل سهام";
|
||||
$lang["config_location_info"] = "اطلاعات پیکربندی موقعیت مکانی";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "آیا می خواهید قبل از ورود ، نسخه پشتیبان تهیه کنید؟ برای پشتیبان گیری یا [لغو] برای ورود به سیستم ، روی [اوکی] کلیک کنید";
|
||||
$lang["config_mailchimp"] = "Mailchimp";
|
||||
$lang["config_mailchimp_api_key"] = "کلید ایپیآی میلچیمپ";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "اعشار مالیاتی";
|
||||
$lang["config_tax_id"] = "شناسه مالیاتی";
|
||||
$lang["config_tax_included"] = "با احتساب مالیات";
|
||||
$lang["config_theme"] = "موضوع";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "هزاران نفر";
|
||||
$lang["config_timezone"] = "منطقه زمانی";
|
||||
$lang["config_timezone_error"] = "منطقه زمانی اوسپوس با منطقه زمانی محلی شما متفاوت است.";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "نامعتبر من یک روبات نیست
|
||||
$lang["login_invalid_installation"] = "نصب صحیح نیست ، پرونده php.ini خود را بررسی کنید.";
|
||||
$lang["login_invalid_username_and_password"] = "نام کاربری یا گذرواژه نامعتبر است.";
|
||||
$lang["login_login"] = "وارد شدن";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "کلمه عبور";
|
||||
$lang["login_username"] = "نام کاربری";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,6 +10,7 @@ $lang["sales_amount_tendered"] = "مبلغ مناقصه";
|
||||
$lang["sales_authorized_signature"] = "امضای مجاز";
|
||||
$lang["sales_cancel_sale"] = "لغو";
|
||||
$lang["sales_cash"] = "نقدی";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_deposit"] = "سپرده نقدی";
|
||||
$lang["sales_cash_filter"] = "نقدی";
|
||||
$lang["sales_change_due"] = "تغییر بدهی";
|
||||
|
||||
@@ -1,31 +1,31 @@
|
||||
<?php
|
||||
|
||||
$lang["attributes_attribute_value_invalid_chars"] = "";
|
||||
$lang["attributes_confirm_delete"] = "";
|
||||
$lang["attributes_confirm_restore"] = "";
|
||||
$lang["attributes_definition_cannot_be_deleted"] = "";
|
||||
$lang["attributes_definition_error_adding_updating"] = "";
|
||||
$lang["attributes_definition_flags"] = "";
|
||||
$lang["attributes_definition_group"] = "";
|
||||
$lang["attributes_definition_id"] = "";
|
||||
$lang["attributes_definition_name"] = "";
|
||||
$lang["attributes_definition_name_required"] = "";
|
||||
$lang["attributes_definition_one_or_multiple"] = "";
|
||||
$lang["attributes_definition_successful_adding"] = "";
|
||||
$lang["attributes_definition_successful_deleted"] = "";
|
||||
$lang["attributes_definition_successful_updating"] = "";
|
||||
$lang["attributes_definition_type"] = "";
|
||||
$lang["attributes_definition_type_required"] = "";
|
||||
$lang["attributes_definition_unit"] = "";
|
||||
$lang["attributes_definition_values"] = "";
|
||||
$lang["attributes_new"] = "";
|
||||
$lang["attributes_no_attributes_to_display"] = "";
|
||||
$lang["attributes_receipt_visibility"] = "";
|
||||
$lang["attributes_show_in_items"] = "";
|
||||
$lang["attributes_show_in_items_visibility"] = "";
|
||||
$lang["attributes_show_in_receipt"] = "";
|
||||
$lang["attributes_show_in_receivings"] = "";
|
||||
$lang["attributes_show_in_receivings_visibility"] = "";
|
||||
$lang["attributes_show_in_sales"] = "";
|
||||
$lang["attributes_show_in_sales_visibility"] = "";
|
||||
$lang["attributes_update"] = "";
|
||||
$lang["attributes_attribute_value_invalid_chars"] = "La valeur de l'attribut ne doit pas contenir '_' ou '|'";
|
||||
$lang["attributes_confirm_delete"] = "Êtes-vous certain que vous voulez supprimer le(s) attribut(s) sélectionné(s)?";
|
||||
$lang["attributes_confirm_restore"] = "Êtes-vous certain que vous voulez restaurer le(s) attribut(s) sélectionné(s)?";
|
||||
$lang["attributes_definition_cannot_be_deleted"] = "Le(s) attribut(s) sélectionné(s) n'ont pas pu être supprimé(s)";
|
||||
$lang["attributes_definition_error_adding_updating"] = "L'attribut %1 n'a pas pu être ajouté ou mis-à-jour. Veuillez vérifier le journal des erreurs.";
|
||||
$lang["attributes_definition_flags"] = "Visibilité de l'attribut";
|
||||
$lang["attributes_definition_group"] = "Groupe";
|
||||
$lang["attributes_definition_id"] = "ID";
|
||||
$lang["attributes_definition_name"] = "Ajouter un attribut";
|
||||
$lang["attributes_definition_name_required"] = "Le nom de l'attribut est requis";
|
||||
$lang["attributes_definition_one_or_multiple"] = "attribut(s)";
|
||||
$lang["attributes_definition_successful_adding"] = "Vous avez ajouté l'item avec succès";
|
||||
$lang["attributes_definition_successful_deleted"] = "Vous avez supprimé avec succès";
|
||||
$lang["attributes_definition_successful_updating"] = "Vous avez mis-à-jour l'attribut avec succès";
|
||||
$lang["attributes_definition_type"] = "Type d'attribut";
|
||||
$lang["attributes_definition_type_required"] = "Le type d'attribut est requis";
|
||||
$lang["attributes_definition_unit"] = "Unité de mesure";
|
||||
$lang["attributes_definition_values"] = "Valeurs de l'attribut";
|
||||
$lang["attributes_new"] = "Nouvel attribut";
|
||||
$lang["attributes_no_attributes_to_display"] = "Aucun attribut à afficher";
|
||||
$lang["attributes_receipt_visibility"] = "Reçu";
|
||||
$lang["attributes_show_in_items"] = "Afficher dans les items";
|
||||
$lang["attributes_show_in_items_visibility"] = "Items";
|
||||
$lang["attributes_show_in_receipt"] = "Afficher dans le reçu";
|
||||
$lang["attributes_show_in_receivings"] = "Afficher dans les réceptions";
|
||||
$lang["attributes_show_in_receivings_visibility"] = "Réceptions";
|
||||
$lang["attributes_show_in_sales"] = "Afficher dans les ventes";
|
||||
$lang["attributes_show_in_sales_visibility"] = "Ventes";
|
||||
$lang["attributes_update"] = "Mettre à jour l'attribut";
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "Genre";
|
||||
$lang["common_gender_female"] = "F";
|
||||
$lang["common_gender_male"] = "M";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "Id";
|
||||
$lang["common_import"] = "Import";
|
||||
$lang["common_import_change_file"] = "Changer";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "Le nom de famille est un champ obligatoire
|
||||
$lang["common_last_page"] = "Dernier";
|
||||
$lang["common_learn_about_project"] = "pour les dernières informations sur le projet.";
|
||||
$lang["common_list_of"] = "Liste de";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Déconnexion";
|
||||
$lang["common_migration_needed"] = "Une migration de la base de donnée vers %1 démarrera après le connexion.";
|
||||
$lang["common_new"] = "Nouveau";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "Politique de Reprise";
|
||||
$lang["common_search"] = "Recherche";
|
||||
$lang["common_search_options"] = "Options de recherche";
|
||||
$lang["common_searched_for"] = "Recherché";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "État";
|
||||
$lang["common_submit"] = "Envoyer";
|
||||
$lang["common_total_spent"] = "Dépenses Totales";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "1er mai";
|
||||
$lang["config_financial_year_nov"] = "1er novembre";
|
||||
$lang["config_financial_year_oct"] = "1er octobre";
|
||||
$lang["config_financial_year_sep"] = "1er septembre";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "Page de connexion reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key"] = "clé secrète reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "La clé secrète reCAPTCHA est un champ obligatoire";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "";
|
||||
$lang["config_include_hsn"] = "";
|
||||
$lang["config_info"] = "Entreprise";
|
||||
$lang["config_info_configuration"] = "Çonfiguration de l'Entreprise";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "";
|
||||
$lang["config_integrations_configuration"] = "";
|
||||
$lang["config_invoice"] = "Facture";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "Informations de configuration de localisation";
|
||||
$lang["config_location"] = "Stock";
|
||||
$lang["config_location_configuration"] = "Emplacements de stock";
|
||||
$lang["config_location_info"] = "Informations de configuration de l'emplacement";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "Voulez-vous faire une sauvegarde avant de vous déconnecter? Cliquez sur [OK] pour sauvegarder ou sur [Annuler] pour vous déconnecter.";
|
||||
$lang["config_mailchimp"] = "MailChimp";
|
||||
$lang["config_mailchimp_api_key"] = "Clé API Mailchimp";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "Décimales fiscales";
|
||||
$lang["config_tax_id"] = "";
|
||||
$lang["config_tax_included"] = "Taxe inclu";
|
||||
$lang["config_theme"] = "Thème";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "Séparateur de milliers";
|
||||
$lang["config_timezone"] = "Fuseau Horaire";
|
||||
$lang["config_timezone_error"] = "";
|
||||
|
||||
@@ -2,9 +2,13 @@
|
||||
|
||||
$lang["login_gcaptcha"] = "Je ne suis pas un robot.";
|
||||
$lang["login_go"] = "Lancer";
|
||||
$lang["login_invalid_gcaptcha"] = "Invalide, je ne suis pas un robot.";
|
||||
$lang["login_invalid_installation"] = "";
|
||||
$lang["login_invalid_gcaptcha"] = "Veuillez vérifier que vous n'êtes pas un robot.";
|
||||
$lang["login_invalid_installation"] = "Cette installation est incorrecte, veuillez vérifier votre fichier php.ini.";
|
||||
$lang["login_invalid_username_and_password"] = "Entrée invalide.";
|
||||
$lang["login_login"] = "Login";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "Mot de passe";
|
||||
$lang["login_username"] = "Nom d'utilisateur";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,6 +10,7 @@ $lang["sales_amount_tendered"] = "Montant Présenté";
|
||||
$lang["sales_authorized_signature"] = "Signature autorisée";
|
||||
$lang["sales_cancel_sale"] = "Annuler la Vente";
|
||||
$lang["sales_cash"] = "Espèce";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_deposit"] = "Dépôt d'Espèce";
|
||||
$lang["sales_cash_filter"] = "Espèce";
|
||||
$lang["sales_change_due"] = "Monnaie Rendu";
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "מין";
|
||||
$lang["common_gender_female"] = "נקבה";
|
||||
$lang["common_gender_male"] = "זכר";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "מספר זיהוי";
|
||||
$lang["common_import"] = "ייבוא";
|
||||
$lang["common_import_change_file"] = "שינוי";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "שם משפחה הוא שדה חובה.";
|
||||
$lang["common_last_page"] = "אחרון";
|
||||
$lang["common_learn_about_project"] = "כדי ללמוד את המידע העדכני ביותר על הפרויקט.";
|
||||
$lang["common_list_of"] = "רשימה של";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "התנתק";
|
||||
$lang["common_migration_needed"] = "העברת נתונים ל-%1 תתחיל לאחר הכניסה למערכת.";
|
||||
$lang["common_new"] = "חדש";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "מדיניות החזרה";
|
||||
$lang["common_search"] = "חפש";
|
||||
$lang["common_search_options"] = "אפשרויות חיפוש";
|
||||
$lang["common_searched_for"] = "חיפוש עבור";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "מדינה";
|
||||
$lang["common_submit"] = "שלח";
|
||||
$lang["common_total_spent"] = "ההוצאה הכוללת";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "1 של מאי";
|
||||
$lang["config_financial_year_nov"] = "1 של נובמבר";
|
||||
$lang["config_financial_year_oct"] = "1 של אוקטובר";
|
||||
$lang["config_financial_year_sep"] = "1 של ספטמבר";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "דף התחברות reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key"] = "מפתח סודי של reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "מפתח סודי של reCAPTCHA הינו שדה חובה";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "";
|
||||
$lang["config_include_hsn"] = "כלול תמיכה בקודי HSN";
|
||||
$lang["config_info"] = "מידע";
|
||||
$lang["config_info_configuration"] = "אחסון מידע";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "אינטגרציה";
|
||||
$lang["config_integrations_configuration"] = "שילובים של צד שלישי";
|
||||
$lang["config_invoice"] = "חשבונית";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "מידע על הגדרות התאמת שפה";
|
||||
$lang["config_location"] = "מלאי";
|
||||
$lang["config_location_configuration"] = "מיקום המלאי";
|
||||
$lang["config_location_info"] = "מידע על הגדרות מיקום";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "האם ברצונך לבצע גיבוי לפני היציאה? לחץ על [OK] כדי לגבות או [ביטול] כדי להתנתק.";
|
||||
$lang["config_mailchimp"] = "Mailchimp (פלטפורמה לשליחת מיילים)";
|
||||
$lang["config_mailchimp_api_key"] = "מפתח API של Mailchimp";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "מס עשרוני";
|
||||
$lang["config_tax_id"] = "מזהה לצורך מס";
|
||||
$lang["config_tax_included"] = "כולל מס";
|
||||
$lang["config_theme"] = "ערכת נושא";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "מפריד אלפים";
|
||||
$lang["config_timezone"] = "אזור זמן";
|
||||
$lang["config_timezone_error"] = "";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "שגיאת אימות.";
|
||||
$lang["login_invalid_installation"] = "ההתקנה אינה נכונה, בדוק את קובץ php.ini.";
|
||||
$lang["login_invalid_username_and_password"] = "שם משתמש או סיסמה לא נכונים.";
|
||||
$lang["login_login"] = "כניסה";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "סיסמה";
|
||||
$lang["login_username"] = "שם משתמש";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,6 +10,7 @@ $lang["sales_amount_tendered"] = "סכום ההצעה";
|
||||
$lang["sales_authorized_signature"] = "חתימת מורשה";
|
||||
$lang["sales_cancel_sale"] = "בטל";
|
||||
$lang["sales_cash"] = "מזומן";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_deposit"] = "הפקדת מזומן";
|
||||
$lang["sales_cash_filter"] = "מזומן";
|
||||
$lang["sales_change_due"] = "עודף לתשלום";
|
||||
|
||||
@@ -28,6 +28,7 @@ $lang["common_gender"] = "Spol";
|
||||
$lang["common_gender_female"] = "Ž";
|
||||
$lang["common_gender_male"] = "M";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "Id";
|
||||
$lang["common_import"] = "Uvoz";
|
||||
$lang["common_import_change_file"] = "Promjena";
|
||||
@@ -41,6 +42,8 @@ $lang["common_last_name_required"] = "Prezime je obavezno";
|
||||
$lang["common_last_page"] = "Zadnja";
|
||||
$lang["common_learn_about_project"] = "za pregled zadnjih informacija o projektu";
|
||||
$lang["common_list_of"] = "Lista";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Odjava";
|
||||
$lang["common_migration_needed"] = "";
|
||||
$lang["common_new"] = "Novi";
|
||||
@@ -61,6 +64,8 @@ $lang["common_return_policy"] = "Povratne obavijesti";
|
||||
$lang["common_search"] = "Traži";
|
||||
$lang["common_search_options"] = "Opcije pretrage";
|
||||
$lang["common_searched_for"] = "Tražili";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_state"] = "Država";
|
||||
$lang["common_submit"] = "Prihvati";
|
||||
$lang["common_total_spent"] = "";
|
||||
|
||||
@@ -127,6 +127,7 @@ $lang["config_financial_year_may"] = "";
|
||||
$lang["config_financial_year_nov"] = "";
|
||||
$lang["config_financial_year_oct"] = "";
|
||||
$lang["config_financial_year_sep"] = "";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_gcaptcha_enable"] = "";
|
||||
$lang["config_gcaptcha_secret_key"] = "";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "";
|
||||
@@ -146,6 +147,7 @@ $lang["config_image_restrictions"] = "";
|
||||
$lang["config_include_hsn"] = "";
|
||||
$lang["config_info"] = "Info";
|
||||
$lang["config_info_configuration"] = "Info o web trgovini";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_integrations"] = "";
|
||||
$lang["config_integrations_configuration"] = "";
|
||||
$lang["config_invoice"] = "Račun";
|
||||
@@ -175,6 +177,7 @@ $lang["config_locale_info"] = "Informacije o lokalnoj konfiguraciji";
|
||||
$lang["config_location"] = "Skladišta";
|
||||
$lang["config_location_configuration"] = "Mjesto skladišta";
|
||||
$lang["config_location_info"] = "Info o lokaciji skladišta";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_logout"] = "Želite napraviti arhivu prije nego izađete? Pritisnite [OK] za arhivu, [Cancel] to otkazivanje.";
|
||||
$lang["config_mailchimp"] = "";
|
||||
$lang["config_mailchimp_api_key"] = "";
|
||||
@@ -289,6 +292,7 @@ $lang["config_tax_decimals"] = "Porezne decimale";
|
||||
$lang["config_tax_id"] = "";
|
||||
$lang["config_tax_included"] = "Uključuje porez";
|
||||
$lang["config_theme"] = "Theme";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_thousands_separator"] = "Razdjelnik za tisućice";
|
||||
$lang["config_timezone"] = "Vremenska zona";
|
||||
$lang["config_timezone_error"] = "";
|
||||
|
||||
@@ -6,5 +6,9 @@ $lang["login_invalid_gcaptcha"] = "";
|
||||
$lang["login_invalid_installation"] = "";
|
||||
$lang["login_invalid_username_and_password"] = "Neispravno ime/lozinka";
|
||||
$lang["login_login"] = "Prijava";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_migration_success"] = "";
|
||||
$lang["login_password"] = "Lozinka";
|
||||
$lang["login_username"] = "Korisničko ime";
|
||||
$lang["login_welcome"] = "";
|
||||
|
||||
@@ -10,6 +10,7 @@ $lang["sales_amount_tendered"] = "Ponuđeni iznos";
|
||||
$lang["sales_authorized_signature"] = "";
|
||||
$lang["sales_cancel_sale"] = "Otkaži";
|
||||
$lang["sales_cash"] = "Novčanice";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_deposit"] = "";
|
||||
$lang["sales_cash_filter"] = "Novčanice";
|
||||
$lang["sales_change_due"] = "Ostatak";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["attributes_attribute_value_invalid_chars"] = "Tulajdonság értéke nem tartalmazhat '_' vagy '|' karaktert";
|
||||
$lang["attributes_confirm_delete"] = "Biztosan törli szeretné a kijelölt tulajdonságokat?";
|
||||
$lang["attributes_confirm_restore"] = "Biztosan visszaállítja a kijelölt tulajdonságokat?";
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
$lang["cashups_amount"] = "Összeg";
|
||||
$lang["cashups_amount_number"] = "Az összeg csak szám lehet";
|
||||
$lang["cashups_amount_required"] = "Az összeg kitöltése kötelező.";
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user