diff --git a/application/config/autoload.php b/application/config/autoload.php
index cb62d45fa..fe5907cb9 100644
--- a/application/config/autoload.php
+++ b/application/config/autoload.php
@@ -64,7 +64,7 @@ $autoload['libraries'] = array('database','form_validation','session','user_agen
| $autoload['helper'] = array('url', 'file');
*/
-$autoload['helper'] = array('form','url','table','text','currency', 'html', 'download');
+$autoload['helper'] = array('form','url','table','text','currency', 'html', 'download', 'directory');
/*
@@ -96,7 +96,7 @@ $autoload['config'] = array();
|
*/
-$autoload['language'] = array('common', 'config', 'customers', 'employees', 'error', 'items', 'login', 'module', 'reports', 'sales','suppliers','receivings','giftcards', 'item_kits');
+$autoload['language'] = array();
/*
diff --git a/application/controllers/items.php b/application/controllers/items.php
index b04a9bd37..ad91bb66d 100644
--- a/application/controllers/items.php
+++ b/application/controllers/items.php
@@ -28,15 +28,17 @@ class Items extends Secure_area implements iData_controller
$is_serialized=$this->input->post('is_serialized');
$no_description=$this->input->post('no_description');
$search_custom=$this->input->post('search_custom');//GARRISON ADDED 4/13/2013
+ $is_deleted=$this->input->post('is_deleted'); // Parq 131215
$data['search_section_state']=$this->input->post('search_section_state');
$data['low_inventory']=$this->input->post('low_inventory');
$data['is_serialized']=$this->input->post('is_serialized');
$data['no_description']=$this->input->post('no_description');
$data['search_custom']=$this->input->post('search_custom');//GARRISON ADDED 4/13/2013
+ $data['is_deleted']=$this->input->post('is_deleted'); // Parq 131215
$data['controller_name']=strtolower(get_class());
$data['form_width']=$this->get_form_width();
- $data['manage_table']=get_items_manage_table($this->Item->get_all_filtered($low_inventory,$is_serialized,$no_description,$search_custom),$this);//GARRISON MODIFIED 4/13/2013
+ $data['manage_table']=get_items_manage_table($this->Item->get_all_filtered($low_inventory,$is_serialized,$no_description,$search_custom,$is_deleted),$this);//GARRISON MODIFIED 4/13/2013, Parq 131215
$this->load->view('items/manage',$data);
}
@@ -240,7 +242,7 @@ class Items extends Secure_area implements iData_controller
$suppliers[$row['person_id']] = $row['first_name'] .' '. $row['last_name'];
}
$data['suppliers'] = $suppliers;
- $data['allow_alt_desciption_choices'] = array(
+ $data['allow_alt_description_choices'] = array(
''=>$this->lang->line('items_do_nothing'),
1 =>$this->lang->line('items_change_all_to_allow_alt_desc'),
0 =>$this->lang->line('items_change_all_to_not_allow_allow_desc'));
@@ -267,6 +269,7 @@ class Items extends Secure_area implements iData_controller
'location'=>$this->input->post('location'),
'allow_alt_description'=>$this->input->post('allow_alt_description'),
'is_serialized'=>$this->input->post('is_serialized'),
+ 'deleted'=>$this->input->post('is_deleted'), /** Parq 131215 **/
'custom1'=>$this->input->post('custom1'), /**GARRISON ADDED 4/21/2013**/
'custom2'=>$this->input->post('custom2'),/**GARRISON ADDED 4/21/2013**/
'custom3'=>$this->input->post('custom3'),/**GARRISON ADDED 4/21/2013**/
diff --git a/application/helpers/table_helper.php b/application/helpers/table_helper.php
index 9f5927a11..ce162fd29 100644
--- a/application/helpers/table_helper.php
+++ b/application/helpers/table_helper.php
@@ -40,7 +40,7 @@ function get_people_manage_table_data_rows($people,$controller)
if($people->num_rows()==0)
{
- $table_data_rows.="
".$CI->lang->line('common_no_persons_to_display')." |
";
+ $table_data_rows.="".$CI->lang->line('common_no_persons_to_display')." |
";
}
return $table_data_rows;
diff --git a/application/hooks/load_config.php b/application/hooks/load_config.php
index 7f24ea02c..d1f969771 100644
--- a/application/hooks/load_config.php
+++ b/application/hooks/load_config.php
@@ -2,31 +2,38 @@
//Loads configuration from database into global CI config
function load_config()
{
- $CI =& get_instance();
- foreach( $CI->Appconfig->get_all()->result() as $app_config )
- {
- $CI->config->set_item( $app_config->key, $app_config->value );
- }
-
- if ( $CI->config->item( 'language' ) )
- {
- $CI->config->set_item( 'language', $CI->config->item( 'language' ) );
- $loaded = $CI->lang->is_loaded;
- $CI->lang->is_loaded = array();
-
- foreach($loaded as $file)
+ $CI =& get_instance();
+ foreach( $CI->Appconfig->get_all()->result() as $app_config )
{
- $CI->lang->load( str_replace( '_lang.php', '', $file ) );
+ $CI->config->set_item( $app_config->key, $app_config->value );
+ }
+
+ //Set language from config database
+ //Loads all the language files from the language directory
+
+ if ( $CI->config->item( 'language' ) )
+ {
+ $CI->config->set_item( 'language', $CI->config->item( 'language' ) );
+
+ $map = directory_map('./application/language/' . $CI->config->item( 'language' ));
+
+ foreach($map as $file)
+ {
+ if ( substr(strrchr($file,'.'),1) == "php")
+ {
+ $CI->lang->load( str_replace( '_lang.php', '', $file ) );
+ }
+ }
+ }
+
+ //Set timezone from config database
+ if ( $CI->config->item( 'timezone' ) )
+ {
+ date_default_timezone_set( $CI->config->item( 'timezone' ) );
+ }
+ else
+ {
+ date_default_timezone_set( 'America/New_York' );
}
- }
-
- if ( $CI->config->item( 'timezone' ) )
- {
- date_default_timezone_set( $CI->config->item( 'timezone' ) );
- }
- else
- {
- date_default_timezone_set( 'America/New_York' );
- }
}
?>
\ No newline at end of file
diff --git a/application/language/BahasaIndonesia/common_lang.php b/application/language/BahasaIndonesia/common_lang.php
deleted file mode 100644
index 53e4e9c6d..000000000
--- a/application/language/BahasaIndonesia/common_lang.php
+++ /dev/null
@@ -1,41 +0,0 @@
-
diff --git a/application/language/BahasaIndonesia/config_lang.php b/application/language/BahasaIndonesia/config_lang.php
deleted file mode 100644
index b28d95ff8..000000000
--- a/application/language/BahasaIndonesia/config_lang.php
+++ /dev/null
@@ -1,24 +0,0 @@
-
\ No newline at end of file
diff --git a/application/language/BahasaIndonesia/customers_lang.php b/application/language/BahasaIndonesia/customers_lang.php
deleted file mode 100644
index 4ce03c357..000000000
--- a/application/language/BahasaIndonesia/customers_lang.php
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/application/language/BahasaIndonesia/employees_lang.php b/application/language/BahasaIndonesia/employees_lang.php
deleted file mode 100644
index 5f2fc811e..000000000
--- a/application/language/BahasaIndonesia/employees_lang.php
+++ /dev/null
@@ -1,27 +0,0 @@
-
\ No newline at end of file
diff --git a/application/language/BahasaIndonesia/error_lang.php b/application/language/BahasaIndonesia/error_lang.php
deleted file mode 100644
index 5fb55ba97..000000000
--- a/application/language/BahasaIndonesia/error_lang.php
+++ /dev/null
@@ -1,4 +0,0 @@
-
\ No newline at end of file
diff --git a/application/language/BahasaIndonesia/giftcards_lang.php b/application/language/BahasaIndonesia/giftcards_lang.php
deleted file mode 100644
index c6ba2ebe1..000000000
--- a/application/language/BahasaIndonesia/giftcards_lang.php
+++ /dev/null
@@ -1,71 +0,0 @@
-
\ No newline at end of file
diff --git a/application/language/BahasaIndonesia/items_lang.php b/application/language/BahasaIndonesia/items_lang.php
deleted file mode 100644
index 2cc620e96..000000000
--- a/application/language/BahasaIndonesia/items_lang.php
+++ /dev/null
@@ -1,78 +0,0 @@
-
diff --git a/application/language/BahasaIndonesia/login_lang.php b/application/language/BahasaIndonesia/login_lang.php
deleted file mode 100644
index 7b0150f00..000000000
--- a/application/language/BahasaIndonesia/login_lang.php
+++ /dev/null
@@ -1,8 +0,0 @@
-
diff --git a/application/language/BahasaIndonesia/module_lang.php b/application/language/BahasaIndonesia/module_lang.php
deleted file mode 100644
index b45605a1f..000000000
--- a/application/language/BahasaIndonesia/module_lang.php
+++ /dev/null
@@ -1,33 +0,0 @@
-
diff --git a/application/language/BahasaIndonesia/receivings_lang.php b/application/language/BahasaIndonesia/receivings_lang.php
deleted file mode 100644
index 6702394ef..000000000
--- a/application/language/BahasaIndonesia/receivings_lang.php
+++ /dev/null
@@ -1,26 +0,0 @@
-
\ No newline at end of file
diff --git a/application/language/BahasaIndonesia/suppliers_lang.php b/application/language/BahasaIndonesia/suppliers_lang.php
deleted file mode 100644
index a99265701..000000000
--- a/application/language/BahasaIndonesia/suppliers_lang.php
+++ /dev/null
@@ -1,17 +0,0 @@
-
\ No newline at end of file
diff --git a/application/language/Language code definition b/application/language/Language code definition
new file mode 100644
index 000000000..be122151f
--- /dev/null
+++ b/application/language/Language code definition
@@ -0,0 +1,244 @@
+ISO Language Code Table
+-----------------------
+
+Code Name
+af Afrikaans
+af-ZA Afrikaans (South Africa)
+ar Arabic
+ar-AE Arabic (U.A.E.)
+ar-BH Arabic (Bahrain)
+ar-DZ Arabic (Algeria)
+ar-EG Arabic (Egypt)
+ar-IQ Arabic (Iraq)
+ar-JO Arabic (Jordan)
+ar-KW Arabic (Kuwait)
+ar-LB Arabic (Lebanon)
+ar-LY Arabic (Libya)
+ar-MA Arabic (Morocco)
+ar-OM Arabic (Oman)
+ar-QA Arabic (Qatar)
+ar-SA Arabic (Saudi Arabia)
+ar-SY Arabic (Syria)
+ar-TN Arabic (Tunisia)
+ar-YE Arabic (Yemen)
+az Azeri (Latin)
+az-AZ Azeri (Latin) (Azerbaijan)
+az-AZ Azeri (Cyrillic) (Azerbaijan)
+be Belarusian
+be-BY Belarusian (Belarus)
+bg Bulgarian
+bg-BG Bulgarian (Bulgaria)
+bs-BA Bosnian (Bosnia and Herzegovina)
+ca Catalan
+ca-ES Catalan (Spain)
+cs Czech
+cs-CZ Czech (Czech Republic)
+cy Welsh
+cy-GB Welsh (United Kingdom)
+da Danish
+da-DK Danish (Denmark)
+de German
+de-AT German (Austria)
+de-CH German (Switzerland)
+de-DE German (Germany)
+de-LI German (Liechtenstein)
+de-LU German (Luxembourg)
+dv Divehi
+dv-MV Divehi (Maldives)
+el Greek
+el-GR Greek (Greece)
+en English
+en-AU English (Australia)
+en-BZ English (Belize)
+en-CA English (Canada)
+en-CB English (Caribbean)
+en-GB English (United Kingdom)
+en-IE English (Ireland)
+en-JM English (Jamaica)
+en-NZ English (New Zealand)
+en-PH English (Republic of the Philippines)
+en-TT English (Trinidad and Tobago)
+en-US English (United States)
+en-ZA English (South Africa)
+en-ZW English (Zimbabwe)
+eo Esperanto
+es Spanish
+es-AR Spanish (Argentina)
+es-BO Spanish (Bolivia)
+es-CL Spanish (Chile)
+es-CO Spanish (Colombia)
+es-CR Spanish (Costa Rica)
+es-DO Spanish (Dominican Republic)
+es-EC Spanish (Ecuador)
+es-ES Spanish (Castilian)
+es-ES Spanish (Spain)
+es-GT Spanish (Guatemala)
+es-HN Spanish (Honduras)
+es-MX Spanish (Mexico)
+es-NI Spanish (Nicaragua)
+es-PA Spanish (Panama)
+es-PE Spanish (Peru)
+es-PR Spanish (Puerto Rico)
+es-PY Spanish (Paraguay)
+es-SV Spanish (El Salvador)
+es-UY Spanish (Uruguay)
+es-VE Spanish (Venezuela)
+et Estonian
+et-EE Estonian (Estonia)
+eu Basque
+eu-ES Basque (Spain)
+fa Farsi
+fa-IR Farsi (Iran)
+fi Finnish
+fi-FI Finnish (Finland)
+fo Faroese
+fo-FO Faroese (Faroe Islands)
+fr French
+fr-BE French (Belgium)
+fr-CA French (Canada)
+fr-CH French (Switzerland)
+fr-FR French (France)
+fr-LU French (Luxembourg)
+fr-MC French (Principality of Monaco)
+gl Galician
+gl-ES Galician (Spain)
+gu Gujarati
+gu-IN Gujarati (India)
+he Hebrew
+he-IL Hebrew (Israel)
+hi Hindi
+hi-IN Hindi (India)
+hr Croatian
+hr-BA Croatian (Bosnia and Herzegovina)
+hr-HR Croatian (Croatia)
+hu Hungarian
+hu-HU Hungarian (Hungary)
+hy Armenian
+hy-AM Armenian (Armenia)
+id Indonesian
+id-ID Indonesian (Indonesia)
+is Icelandic
+is-IS Icelandic (Iceland)
+it Italian
+it-CH Italian (Switzerland)
+it-IT Italian (Italy)
+ja Japanese
+ja-JP Japanese (Japan)
+ka Georgian
+ka-GE Georgian (Georgia)
+kk Kazakh
+kk-KZ Kazakh (Kazakhstan)
+kn Kannada
+kn-IN Kannada (India)
+ko Korean
+ko-KR Korean (Korea)
+kok Konkani
+kok-IN Konkani (India)
+ky Kyrgyz
+ky-KG Kyrgyz (Kyrgyzstan)
+lt Lithuanian
+lt-LT Lithuanian (Lithuania)
+lv Latvian
+lv-LV Latvian (Latvia)
+mi Maori
+mi-NZ Maori (New Zealand)
+mk FYRO Macedonian
+mk-MK FYRO Macedonian (Former Yugoslav Republic of Macedonia)
+mn Mongolian
+mn-MN Mongolian (Mongolia)
+mr Marathi
+mr-IN Marathi (India)
+ms Malay
+ms-BN Malay (Brunei Darussalam)
+ms-MY Malay (Malaysia)
+mt Maltese
+mt-MT Maltese (Malta)
+nb Norwegian (Bokm?l)
+nb-NO Norwegian (Bokm?l) (Norway)
+nl Dutch
+nl-BE Dutch (Belgium)
+nl-NL Dutch (Netherlands)
+nn-NO Norwegian (Nynorsk) (Norway)
+ns Northern Sotho
+ns-ZA Northern Sotho (South Africa)
+pa Punjabi
+pa-IN Punjabi (India)
+pl Polish
+pl-PL Polish (Poland)
+ps Pashto
+ps-AR Pashto (Afghanistan)
+pt Portuguese
+pt-BR Portuguese (Brazil)
+pt-PT Portuguese (Portugal)
+qu Quechua
+qu-BO Quechua (Bolivia)
+qu-EC Quechua (Ecuador)
+qu-PE Quechua (Peru)
+ro Romanian
+ro-RO Romanian (Romania)
+ru Russian
+ru-RU Russian (Russia)
+sa Sanskrit
+sa-IN Sanskrit (India)
+se Sami (Northern)
+se-FI Sami (Northern) (Finland)
+se-FI Sami (Skolt) (Finland)
+se-FI Sami (Inari) (Finland)
+se-NO Sami (Northern) (Norway)
+se-NO Sami (Lule) (Norway)
+se-NO Sami (Southern) (Norway)
+se-SE Sami (Northern) (Sweden)
+se-SE Sami (Lule) (Sweden)
+se-SE Sami (Southern) (Sweden)
+sk Slovak
+sk-SK Slovak (Slovakia)
+sl Slovenian
+sl-SI Slovenian (Slovenia)
+sq Albanian
+sq-AL Albanian (Albania)
+sr-BA Serbian (Latin) (Bosnia and Herzegovina)
+sr-BA Serbian (Cyrillic) (Bosnia and Herzegovina)
+sr-SP Serbian (Latin) (Serbia and Montenegro)
+sr-SP Serbian (Cyrillic) (Serbia and Montenegro)
+sv Swedish
+sv-FI Swedish (Finland)
+sv-SE Swedish (Sweden)
+sw Swahili
+sw-KE Swahili (Kenya)
+syr Syriac
+syr-SY Syriac (Syria)
+ta Tamil
+ta-IN Tamil (India)
+te Telugu
+te-IN Telugu (India)
+th Thai
+th-TH Thai (Thailand)
+tl Tagalog
+tl-PH Tagalog (Philippines)
+tn Tswana
+tn-ZA Tswana (South Africa)
+tr Turkish
+tr-TR Turkish (Turkey)
+tt Tatar
+tt-RU Tatar (Russia)
+ts Tsonga
+uk Ukrainian
+uk-UA Ukrainian (Ukraine)
+ur Urdu
+ur-PK Urdu (Islamic Republic of Pakistan)
+uz Uzbek (Latin)
+uz-UZ Uzbek (Latin) (Uzbekistan)
+uz-UZ Uzbek (Cyrillic) (Uzbekistan)
+vi Vietnamese
+vi-VN Vietnamese (Viet Nam)
+xh Xhosa
+xh-ZA Xhosa (South Africa)
+zh Chinese
+zh-CN Chinese (S)
+zh-HK Chinese (Hong Kong)
+zh-MO Chinese (Macau)
+zh-SG Chinese (Singapore)
+zh-TW Chinese (T)
+zu Zulu
+zu-ZA Zulu (South Africa)
+
diff --git a/application/language/Russian/common_lang.php b/application/language/Russian/common_lang.php
deleted file mode 100644
index c501ddf2e..000000000
--- a/application/language/Russian/common_lang.php
+++ /dev/null
@@ -1,41 +0,0 @@
-
\ No newline at end of file
diff --git a/application/language/Russian/config_lang.php b/application/language/Russian/config_lang.php
deleted file mode 100644
index 05f6082ee..000000000
--- a/application/language/Russian/config_lang.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
\ No newline at end of file
diff --git a/application/language/Russian/customers_lang.php b/application/language/Russian/customers_lang.php
deleted file mode 100644
index 685e72bc1..000000000
--- a/application/language/Russian/customers_lang.php
+++ /dev/null
@@ -1,16 +0,0 @@
-
diff --git a/application/language/Russian/employees_lang.php b/application/language/Russian/employees_lang.php
deleted file mode 100644
index 4de2d6300..000000000
--- a/application/language/Russian/employees_lang.php
+++ /dev/null
@@ -1,27 +0,0 @@
-
diff --git a/application/language/Russian/error_lang.php b/application/language/Russian/error_lang.php
deleted file mode 100644
index 3efc57ae5..000000000
--- a/application/language/Russian/error_lang.php
+++ /dev/null
@@ -1,4 +0,0 @@
-
diff --git a/application/language/Russian/giftcards_lang.php b/application/language/Russian/giftcards_lang.php
deleted file mode 100644
index 8885c5fac..000000000
--- a/application/language/Russian/giftcards_lang.php
+++ /dev/null
@@ -1,70 +0,0 @@
-
diff --git a/application/language/Russian/items_lang.php b/application/language/Russian/items_lang.php
deleted file mode 100644
index 8972dd6fe..000000000
--- a/application/language/Russian/items_lang.php
+++ /dev/null
@@ -1,80 +0,0 @@
-
diff --git a/application/language/Russian/login_lang.php b/application/language/Russian/login_lang.php
deleted file mode 100644
index b0bdae042..000000000
--- a/application/language/Russian/login_lang.php
+++ /dev/null
@@ -1,8 +0,0 @@
-
diff --git a/application/language/Russian/module_lang.php b/application/language/Russian/module_lang.php
deleted file mode 100644
index c618f6e73..000000000
--- a/application/language/Russian/module_lang.php
+++ /dev/null
@@ -1,34 +0,0 @@
-
diff --git a/application/language/Russian/receivings_lang.php b/application/language/Russian/receivings_lang.php
deleted file mode 100644
index 4f1aecbf9..000000000
--- a/application/language/Russian/receivings_lang.php
+++ /dev/null
@@ -1,26 +0,0 @@
-
diff --git a/application/language/Russian/suppliers_lang.php b/application/language/Russian/suppliers_lang.php
deleted file mode 100644
index ed2daec00..000000000
--- a/application/language/Russian/suppliers_lang.php
+++ /dev/null
@@ -1,17 +0,0 @@
-
diff --git a/application/language/Spanish/common_lang.php b/application/language/Spanish/common_lang.php
deleted file mode 100644
index 474db8325..000000000
--- a/application/language/Spanish/common_lang.php
+++ /dev/null
@@ -1,40 +0,0 @@
-
diff --git a/application/language/Spanish/config_lang.php b/application/language/Spanish/config_lang.php
deleted file mode 100644
index a39aa873e..000000000
--- a/application/language/Spanish/config_lang.php
+++ /dev/null
@@ -1,24 +0,0 @@
-
diff --git a/application/language/Spanish/customers_lang.php b/application/language/Spanish/customers_lang.php
deleted file mode 100644
index d36370d53..000000000
--- a/application/language/Spanish/customers_lang.php
+++ /dev/null
@@ -1,16 +0,0 @@
-
diff --git a/application/language/Spanish/employees_lang.php b/application/language/Spanish/employees_lang.php
deleted file mode 100644
index 52be3d99c..000000000
--- a/application/language/Spanish/employees_lang.php
+++ /dev/null
@@ -1,27 +0,0 @@
-
diff --git a/application/language/Spanish/error_lang.php b/application/language/Spanish/error_lang.php
deleted file mode 100644
index aef9e8c43..000000000
--- a/application/language/Spanish/error_lang.php
+++ /dev/null
@@ -1,4 +0,0 @@
-
diff --git a/application/language/Spanish/giftcards_lang.php b/application/language/Spanish/giftcards_lang.php
deleted file mode 100644
index 4a358491c..000000000
--- a/application/language/Spanish/giftcards_lang.php
+++ /dev/null
@@ -1,69 +0,0 @@
-
diff --git a/application/language/Spanish/items_lang.php b/application/language/Spanish/items_lang.php
deleted file mode 100644
index cc4f39bed..000000000
--- a/application/language/Spanish/items_lang.php
+++ /dev/null
@@ -1,77 +0,0 @@
-
diff --git a/application/language/Spanish/login_lang.php b/application/language/Spanish/login_lang.php
deleted file mode 100644
index 8c60ff3a4..000000000
--- a/application/language/Spanish/login_lang.php
+++ /dev/null
@@ -1,8 +0,0 @@
-
diff --git a/application/language/Spanish/module_lang.php b/application/language/Spanish/module_lang.php
deleted file mode 100644
index d00dc9862..000000000
--- a/application/language/Spanish/module_lang.php
+++ /dev/null
@@ -1,33 +0,0 @@
-
diff --git a/application/language/Spanish/receivings_lang.php b/application/language/Spanish/receivings_lang.php
deleted file mode 100644
index e86080793..000000000
--- a/application/language/Spanish/receivings_lang.php
+++ /dev/null
@@ -1,26 +0,0 @@
-
diff --git a/application/language/Spanish/suppliers_lang.php b/application/language/Spanish/suppliers_lang.php
deleted file mode 100644
index c2a436b1e..000000000
--- a/application/language/Spanish/suppliers_lang.php
+++ /dev/null
@@ -1,17 +0,0 @@
-
diff --git a/application/language/dutch/config_lang.php b/application/language/dutch/config_lang.php
deleted file mode 100755
index e280ccf21..000000000
--- a/application/language/dutch/config_lang.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
\ No newline at end of file
diff --git a/application/language/dutch/giftcards_lang.php b/application/language/dutch/giftcards_lang.php
deleted file mode 100644
index c3b61315f..000000000
--- a/application/language/dutch/giftcards_lang.php
+++ /dev/null
@@ -1,70 +0,0 @@
-
diff --git a/application/language/dutch/items_lang.php b/application/language/dutch/items_lang.php
deleted file mode 100755
index 36f0ebe67..000000000
--- a/application/language/dutch/items_lang.php
+++ /dev/null
@@ -1,80 +0,0 @@
-
diff --git a/application/language/dutch/login_lang.php b/application/language/dutch/login_lang.php
deleted file mode 100755
index 3f624eedd..000000000
--- a/application/language/dutch/login_lang.php
+++ /dev/null
@@ -1,8 +0,0 @@
-
diff --git a/application/language/dutch/module_lang.php b/application/language/dutch/module_lang.php
deleted file mode 100755
index 69d8afe62..000000000
--- a/application/language/dutch/module_lang.php
+++ /dev/null
@@ -1,34 +0,0 @@
-
diff --git a/application/language/dutch/receivings_lang.php b/application/language/dutch/receivings_lang.php
deleted file mode 100755
index 96d199d70..000000000
--- a/application/language/dutch/receivings_lang.php
+++ /dev/null
@@ -1,26 +0,0 @@
-
diff --git a/application/language/Azerbaijan/common_lang.php b/application/language/en/common_lang.php
similarity index 100%
rename from application/language/Azerbaijan/common_lang.php
rename to application/language/en/common_lang.php
diff --git a/application/language/Azerbaijan/config_lang.php b/application/language/en/config_lang.php
similarity index 100%
rename from application/language/Azerbaijan/config_lang.php
rename to application/language/en/config_lang.php
diff --git a/application/language/Azerbaijan/customers_lang.php b/application/language/en/customers_lang.php
similarity index 100%
rename from application/language/Azerbaijan/customers_lang.php
rename to application/language/en/customers_lang.php
diff --git a/application/language/Azerbaijan/employees_lang.php b/application/language/en/employees_lang.php
similarity index 100%
rename from application/language/Azerbaijan/employees_lang.php
rename to application/language/en/employees_lang.php
diff --git a/application/language/Azerbaijan/error_lang.php b/application/language/en/error_lang.php
similarity index 100%
rename from application/language/Azerbaijan/error_lang.php
rename to application/language/en/error_lang.php
diff --git a/application/language/en/form_validation_lang.php b/application/language/en/form_validation_lang.php
new file mode 100644
index 000000000..3418f29ab
--- /dev/null
+++ b/application/language/en/form_validation_lang.php
@@ -0,0 +1,29 @@
+
\ No newline at end of file
diff --git a/application/language/english/config_lang.php b/application/language/english/config_lang.php
index 6c7686880..b0c3f02f9 100644
--- a/application/language/english/config_lang.php
+++ b/application/language/english/config_lang.php
@@ -1,23 +1,23 @@
\ No newline at end of file
diff --git a/application/language/english/customers_lang.php b/application/language/english/customers_lang.php
index d6978d458..3f8804144 100644
--- a/application/language/english/customers_lang.php
+++ b/application/language/english/customers_lang.php
@@ -1,16 +1,16 @@
diff --git a/application/language/english/employees_lang.php b/application/language/english/employees_lang.php
index a30c32b99..5f77c5a85 100644
--- a/application/language/english/employees_lang.php
+++ b/application/language/english/employees_lang.php
@@ -1,27 +1,27 @@
diff --git a/application/language/english/error_lang.php b/application/language/english/error_lang.php
index cfcd2f0c9..c7c178e9f 100644
--- a/application/language/english/error_lang.php
+++ b/application/language/english/error_lang.php
@@ -1,4 +1,4 @@
+$lang['error_no_permission_module'] = 'You do not have permission to access the module named';
+$lang['error_unknown'] = 'unknown';
+?>
\ No newline at end of file
diff --git a/application/language/english/form_validation_lang.php b/application/language/english/form_validation_lang.php
new file mode 100644
index 000000000..3418f29ab
--- /dev/null
+++ b/application/language/english/form_validation_lang.php
@@ -0,0 +1,29 @@
+
+?>
\ No newline at end of file
diff --git a/application/language/english/items_lang.php b/application/language/english/items_lang.php
index 7535f42bb..2f5b7b03c 100644
--- a/application/language/english/items_lang.php
+++ b/application/language/english/items_lang.php
@@ -1,73 +1,73 @@
+$lang['items_is_deleted'] = 'Deleted';// Parq 131215
+?>
\ No newline at end of file
diff --git a/application/language/english/login_lang.php b/application/language/english/login_lang.php
index a5aa1bb26..db5f2753e 100644
--- a/application/language/english/login_lang.php
+++ b/application/language/english/login_lang.php
@@ -1,8 +1,8 @@
diff --git a/application/language/english/module_lang.php b/application/language/english/module_lang.php
index 9e95a2d81..d45a4b6b4 100644
--- a/application/language/english/module_lang.php
+++ b/application/language/english/module_lang.php
@@ -1,34 +1,34 @@
diff --git a/application/language/english/receivings_lang.php b/application/language/english/receivings_lang.php
index 2564d4d42..efeb84355 100644
--- a/application/language/english/receivings_lang.php
+++ b/application/language/english/receivings_lang.php
@@ -1,26 +1,26 @@
+?>
diff --git a/application/language/english/reports_lang.php b/application/language/english/reports_lang.php
index e41d34242..b37841815 100644
--- a/application/language/english/reports_lang.php
+++ b/application/language/english/reports_lang.php
@@ -28,9 +28,7 @@ $lang['reports_total'] = 'Total';
$lang['reports_tax'] = 'Tax';
$lang['reports_profit'] = 'Profit';
$lang['reports_report_input'] = 'Report Input';
-$lang['reports_discount'] = 'Discount';
$lang['reports_type'] = 'Type';
-$lang['reports_discount'] = 'A discount greater than ';
$lang['reports_date_range'] = 'Date Range';
$lang['reports_today'] = 'Today';
$lang['reports_yesterday'] = 'Yesterday';
@@ -86,4 +84,5 @@ $lang['reports_detailed_receivings_report'] = 'Detailed Receivings Report';
$lang['reports_sale_type'] = 'Sale Type';
$lang['reports_all'] = 'All';
$lang['reports_returns'] = 'Returns';
-?>
+$lang['reports_discount'] = 'A discount greater than ';
+?>
\ No newline at end of file
diff --git a/application/language/english/sales_lang.php b/application/language/english/sales_lang.php
index dc39c937f..ee82b2be7 100644
--- a/application/language/english/sales_lang.php
+++ b/application/language/english/sales_lang.php
@@ -1,45 +1,41 @@
\ No newline at end of file
diff --git a/application/language/english/suppliers_lang.php b/application/language/english/suppliers_lang.php
index 97191a352..6745f1e6c 100644
--- a/application/language/english/suppliers_lang.php
+++ b/application/language/english/suppliers_lang.php
@@ -1,17 +1,17 @@
+?>
\ No newline at end of file
diff --git a/application/language/es/common_lang.php b/application/language/es/common_lang.php
new file mode 100644
index 000000000..d05cd1dc1
--- /dev/null
+++ b/application/language/es/common_lang.php
@@ -0,0 +1,41 @@
+
\ No newline at end of file
diff --git a/application/language/es/config_lang.php b/application/language/es/config_lang.php
new file mode 100644
index 000000000..80c6bc951
--- /dev/null
+++ b/application/language/es/config_lang.php
@@ -0,0 +1,36 @@
+
diff --git a/application/language/es/customers_lang.php b/application/language/es/customers_lang.php
new file mode 100644
index 000000000..2c20d3c92
--- /dev/null
+++ b/application/language/es/customers_lang.php
@@ -0,0 +1,16 @@
+
diff --git a/application/language/es/employees_lang.php b/application/language/es/employees_lang.php
new file mode 100644
index 000000000..172f7afe2
--- /dev/null
+++ b/application/language/es/employees_lang.php
@@ -0,0 +1,27 @@
+
diff --git a/application/language/es/error_lang.php b/application/language/es/error_lang.php
new file mode 100644
index 000000000..0e0425c66
--- /dev/null
+++ b/application/language/es/error_lang.php
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/application/language/es/form_validation_lang.php b/application/language/es/form_validation_lang.php
new file mode 100644
index 000000000..3418f29ab
--- /dev/null
+++ b/application/language/es/form_validation_lang.php
@@ -0,0 +1,29 @@
+
\ No newline at end of file
diff --git a/application/language/Spanish/index.html b/application/language/es/index.html
similarity index 100%
rename from application/language/Spanish/index.html
rename to application/language/es/index.html
diff --git a/application/language/Spanish/item_kits_lang.php b/application/language/es/item_kits_lang.php
similarity index 93%
rename from application/language/Spanish/item_kits_lang.php
rename to application/language/es/item_kits_lang.php
index 2ffd7b807..927555e8f 100644
--- a/application/language/Spanish/item_kits_lang.php
+++ b/application/language/es/item_kits_lang.php
@@ -4,7 +4,7 @@ $lang['item_kits_description'] = 'Descripción del Kit de Artículos';
$lang['item_kits_no_item_kits_to_display'] = 'No hay kits de artículos para mostrar';
$lang['item_kits_update'] = 'Actualizar Kit de Artículos';
$lang['item_kits_new'] = 'Nuevo Kit de Artículos';
-$lang['item_kits_none_selected'] = "No has seleccionado kits de artículos";
+$lang['item_kits_none_selected'] = "No has seleccionado Kits de Artículos";
$lang['item_kits_info'] = 'Info de Kit de Artículos';
$lang['item_kits_successful_adding'] = 'Has agregado satisfactoriamente un Kit de Artículos';
$lang['item_kits_successful_updating'] = 'Has actualizado satisfactoriamente un Kit de Artículos';
diff --git a/application/language/es/items_lang.php b/application/language/es/items_lang.php
new file mode 100644
index 000000000..f87e7266c
--- /dev/null
+++ b/application/language/es/items_lang.php
@@ -0,0 +1,81 @@
+
\ No newline at end of file
diff --git a/application/language/es/login_lang.php b/application/language/es/login_lang.php
new file mode 100644
index 000000000..e1a4a4998
--- /dev/null
+++ b/application/language/es/login_lang.php
@@ -0,0 +1,8 @@
+
diff --git a/application/language/es/module_lang.php b/application/language/es/module_lang.php
new file mode 100644
index 000000000..adb46c4ee
--- /dev/null
+++ b/application/language/es/module_lang.php
@@ -0,0 +1,34 @@
+
diff --git a/application/language/es/receivings_lang.php b/application/language/es/receivings_lang.php
new file mode 100644
index 000000000..6aade0795
--- /dev/null
+++ b/application/language/es/receivings_lang.php
@@ -0,0 +1,26 @@
+
diff --git a/application/language/Spanish/reports_lang.php b/application/language/es/reports_lang.php
similarity index 85%
rename from application/language/Spanish/reports_lang.php
rename to application/language/es/reports_lang.php
index 94d67239c..93b7df5a4 100644
--- a/application/language/Spanish/reports_lang.php
+++ b/application/language/es/reports_lang.php
@@ -12,8 +12,6 @@ $lang['reports_taxes_summary_report'] = 'Reporte de Resumen de Impuestos';
$lang['reports_date'] = 'Fecha';
$lang['reports_name'] = 'Nombre';
$lang['reports_quantity_purchased'] = 'Cantidad Comprada';
-$lang['reports_serial_number'] = 'Serial #';
-$lang['reports_description'] = 'Descripción';
$lang['reports_sale_id'] = 'ID de Venta';
$lang['reports_items_purchased'] = 'Artículos Comprados';
$lang['reports_sold_by'] = 'Vendido Por';
@@ -25,7 +23,6 @@ $lang['reports_item'] = 'Artículo';
$lang['reports_items'] = 'Artículos';
$lang['reports_supplier'] = 'Proveedor';
$lang['reports_employees'] = 'Empleados';
-$lang['reports_taxes'] = 'Impuestos';
$lang['reports_subtotal'] = 'Subtotal';
$lang['reports_total'] = 'Total';
$lang['reports_tax'] = 'Impuesto';
@@ -37,10 +34,10 @@ $lang['reports_today'] = 'Hoy';
$lang['reports_yesterday'] = 'Ayer';
$lang['reports_last_7'] = 'Últimos 7 Días';
$lang['reports_this_month'] = 'Este Mes';
-$lang['reports_last_month'] = 'Mes Pasado';
+$lang['reports_last_month'] = 'Último Mes';
$lang['reports_this_year'] = 'Este Año';
-$lang['reports_last_year'] = 'Año Pasado';
-$lang['reports_all_time'] = 'Todos los Tiempos';
+$lang['reports_last_year'] = 'Último Año';
+$lang['reports_all_time'] = 'Todos';
$lang['reports_detailed_sales_report'] = 'Reporte de Ventas Detallado';
$lang['reports_comments'] = 'Comentarios';
$lang['reports_discount'] = 'Descuento';
@@ -51,24 +48,29 @@ $lang['reports_customers'] = 'Clientes';
$lang['reports_suppliers'] = 'Proveedores';
$lang['reports_items'] = 'Artículos';
$lang['reports_employees'] = 'Empleados';
+$lang['reports_taxes'] = 'Impuestos';
$lang['reports_customer'] = 'Cliente';
$lang['reports_employee'] = 'Empleado';
$lang['reports_tax_percent'] = 'Porcentaje de Impuestos';
+$lang['reports_quantity_purchased'] = 'Cantidad Comprada';
+$lang['reports_serial_number'] = 'S/N:';
+$lang['reports_description'] = 'Descripción';
+$lang['reports_date'] = 'Fecha';
$lang['reports_sales_amount'] = 'Monto de ventas';
$lang['reports_revenue'] = 'Ingresos';
$lang['reports_discounts'] = 'Descuentos';
$lang['reports_discounts_summary_report'] = 'Reporte de Resumen de Descuentos';
-$lang['reports_discount_percent'] = 'Porcentaje de Decuento';
+$lang['reports_discount_percent'] = 'Porcentaje de Descuento';
$lang['reports_count'] = 'Cuenta';
-$lang['reports_summary_reports'] = 'Reportes de Resumen';
+$lang['reports_summary_reports'] = 'Reportes Resumidos';
$lang['reports_graphical_reports'] = 'Reportes Gráficos';
$lang['reports_detailed_reports'] = 'Reportes Detallados';
$lang['reports_inventory_reports'] = 'Reportes de Inventario';
-$lang['reports_low_inventory'] = 'Inventario Escaso';
+$lang['reports_low_inventory'] = 'Inventario Bajo';
$lang['reports_inventory_summary'] = 'Resumen de Inventario';
$lang['reports_item_number'] = 'Número de Artículo';
-$lang['reports_reorder_level'] = 'Nivel de Reordenamiento';
-$lang['reports_low_inventory_report'] = 'Reporte de Inventario Escaso';
+$lang['reports_reorder_level'] = 'Cantidad Mínima';
+$lang['reports_low_inventory_report'] = 'Reporte de Inventario Bajo';
$lang['reports_item_name'] = 'Nombre del Artículo';
$lang['reports_inventory_summary_report'] = 'Reporte de Resumen de Inventario';
$lang['reports_payment_type'] = 'Tipo de Pago';
@@ -82,4 +84,5 @@ $lang['reports_detailed_receivings_report'] = 'Reporte Detallado de Entradas';
$lang['reports_sale_type'] = 'Tipo de Venta';
$lang['reports_all'] = 'Todo';
$lang['reports_returns'] = 'Devoluciones';
-?>
+$lang['reports_discount'] = 'Descuento mayor que ';
+?>
\ No newline at end of file
diff --git a/application/language/Spanish/sales_lang.php b/application/language/es/sales_lang.php
similarity index 54%
rename from application/language/Spanish/sales_lang.php
rename to application/language/es/sales_lang.php
index d1612d701..448a0ff11 100644
--- a/application/language/Spanish/sales_lang.php
+++ b/application/language/es/sales_lang.php
@@ -1,47 +1,48 @@
diff --git a/application/language/es/suppliers_lang.php b/application/language/es/suppliers_lang.php
new file mode 100644
index 000000000..143ffeb54
--- /dev/null
+++ b/application/language/es/suppliers_lang.php
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/application/language/id/common_lang.php b/application/language/id/common_lang.php
new file mode 100644
index 000000000..bad1431db
--- /dev/null
+++ b/application/language/id/common_lang.php
@@ -0,0 +1,41 @@
+
\ No newline at end of file
diff --git a/application/language/id/config_lang.php b/application/language/id/config_lang.php
new file mode 100644
index 000000000..b91030b62
--- /dev/null
+++ b/application/language/id/config_lang.php
@@ -0,0 +1,36 @@
+
\ No newline at end of file
diff --git a/application/language/id/customers_lang.php b/application/language/id/customers_lang.php
new file mode 100644
index 000000000..ca8c9a200
--- /dev/null
+++ b/application/language/id/customers_lang.php
@@ -0,0 +1,16 @@
+
\ No newline at end of file
diff --git a/application/language/id/employees_lang.php b/application/language/id/employees_lang.php
new file mode 100644
index 000000000..f2152d70c
--- /dev/null
+++ b/application/language/id/employees_lang.php
@@ -0,0 +1,27 @@
+
\ No newline at end of file
diff --git a/application/language/id/error_lang.php b/application/language/id/error_lang.php
new file mode 100644
index 000000000..9c2e268af
--- /dev/null
+++ b/application/language/id/error_lang.php
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/application/language/id/form_validation_lang.php b/application/language/id/form_validation_lang.php
new file mode 100644
index 000000000..3418f29ab
--- /dev/null
+++ b/application/language/id/form_validation_lang.php
@@ -0,0 +1,29 @@
+
\ No newline at end of file
diff --git a/application/language/BahasaIndonesia/index.html b/application/language/id/index.html
similarity index 100%
rename from application/language/BahasaIndonesia/index.html
rename to application/language/id/index.html
diff --git a/application/language/BahasaIndonesia/item_kits_lang.php b/application/language/id/item_kits_lang.php
similarity index 99%
rename from application/language/BahasaIndonesia/item_kits_lang.php
rename to application/language/id/item_kits_lang.php
index ebd06926b..601fae62d 100644
--- a/application/language/BahasaIndonesia/item_kits_lang.php
+++ b/application/language/id/item_kits_lang.php
@@ -17,4 +17,4 @@ $lang['item_kits_add_item'] = 'Add Item';
$lang['item_kits_items'] = 'Items';
$lang['item_kits_item'] = 'Item';
$lang['item_kits_quantity'] = 'Quantity';
-?>
\ No newline at end of file
+?>
diff --git a/application/language/id/items_lang.php b/application/language/id/items_lang.php
new file mode 100644
index 000000000..a6cf78e93
--- /dev/null
+++ b/application/language/id/items_lang.php
@@ -0,0 +1,81 @@
+
\ No newline at end of file
diff --git a/application/language/id/login_lang.php b/application/language/id/login_lang.php
new file mode 100644
index 000000000..e3e540262
--- /dev/null
+++ b/application/language/id/login_lang.php
@@ -0,0 +1,8 @@
+
diff --git a/application/language/id/module_lang.php b/application/language/id/module_lang.php
new file mode 100644
index 000000000..4aaaed19c
--- /dev/null
+++ b/application/language/id/module_lang.php
@@ -0,0 +1,34 @@
+
diff --git a/application/language/id/receivings_lang.php b/application/language/id/receivings_lang.php
new file mode 100644
index 000000000..efeb84355
--- /dev/null
+++ b/application/language/id/receivings_lang.php
@@ -0,0 +1,26 @@
+
diff --git a/application/language/BahasaIndonesia/reports_lang.php b/application/language/id/reports_lang.php
similarity index 96%
rename from application/language/BahasaIndonesia/reports_lang.php
rename to application/language/id/reports_lang.php
index a32b1bd22..f2c7156fb 100644
--- a/application/language/BahasaIndonesia/reports_lang.php
+++ b/application/language/id/reports_lang.php
@@ -12,8 +12,6 @@ $lang['reports_taxes_summary_report'] = 'Taxes Summary Report';
$lang['reports_date'] = 'Tanggal';
$lang['reports_name'] = 'Nama';
$lang['reports_quantity_purchased'] = 'Jumlah Dibeli';
-$lang['reports_serial_number'] = 'Serial #';
-$lang['reports_description'] = 'Description';
$lang['reports_sale_id'] = 'ID Penjualan ';
$lang['reports_items_purchased'] = 'Produk Dibeli';
$lang['reports_sold_by'] = 'Dijual Oleh';
@@ -25,7 +23,6 @@ $lang['reports_item'] = 'Produk/Item';
$lang['reports_items'] = 'Produk/Item';
$lang['reports_supplier'] = 'Pemasok';
$lang['reports_employees'] = 'Karyawan';
-$lang['reports_taxes'] = 'Taxes';
$lang['reports_subtotal'] = 'Subtotal';
$lang['reports_total'] = 'Total';
$lang['reports_tax'] = 'Pajak';
@@ -51,9 +48,14 @@ $lang['reports_customers'] = 'Pelanggan';
$lang['reports_suppliers'] = 'Pemasok';
$lang['reports_items'] = 'Item';
$lang['reports_employees'] = 'Karyawan';
+$lang['reports_taxes'] = 'Taxes';
$lang['reports_customer'] = 'Pelanggan';
$lang['reports_employee'] = 'Karyawan';
$lang['reports_tax_percent'] = 'Tax Percent';
+$lang['reports_quantity_purchased'] = 'Quantity Purchased';
+$lang['reports_serial_number'] = 'Serial #';
+$lang['reports_description'] = 'Description';
+$lang['reports_date'] = 'Date';
$lang['reports_sales_amount'] = 'Sales amount';
$lang['reports_revenue'] = 'Revenue';
$lang['reports_discounts'] = 'Discounts';
@@ -82,4 +84,5 @@ $lang['reports_detailed_receivings_report'] = 'Detailed Receivings Report';
$lang['reports_sale_type'] = 'Sale Type';
$lang['reports_all'] = 'All';
$lang['reports_returns'] = 'Returns';
-?>
+$lang['reports_discount'] = 'A discount greater than ';
+?>
\ No newline at end of file
diff --git a/application/language/BahasaIndonesia/sales_lang.php b/application/language/id/sales_lang.php
similarity index 59%
rename from application/language/BahasaIndonesia/sales_lang.php
rename to application/language/id/sales_lang.php
index 089c3ef23..47d6e60ca 100644
--- a/application/language/BahasaIndonesia/sales_lang.php
+++ b/application/language/id/sales_lang.php
@@ -1,47 +1,48 @@
+$lang['sales_discount_short']='%';
+$lang["sales_discount_included"]='% Discount';
+$lang['sales_sale_time']='Time';
+$lang['sales_payments_total'] = 'Payments Total';
+$lang['sales_amount_due'] = 'Amount Due';
+?>
\ No newline at end of file
diff --git a/application/language/id/suppliers_lang.php b/application/language/id/suppliers_lang.php
new file mode 100644
index 000000000..d38485dac
--- /dev/null
+++ b/application/language/id/suppliers_lang.php
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/application/language/dutch/.site_lang.php.swp b/application/language/nl-BE/.site_lang.php.swp
similarity index 100%
rename from application/language/dutch/.site_lang.php.swp
rename to application/language/nl-BE/.site_lang.php.swp
diff --git a/application/language/dutch/common_lang.php b/application/language/nl-BE/common_lang.php
similarity index 100%
rename from application/language/dutch/common_lang.php
rename to application/language/nl-BE/common_lang.php
diff --git a/application/language/nl-BE/config_lang.php b/application/language/nl-BE/config_lang.php
new file mode 100755
index 000000000..96aedb140
--- /dev/null
+++ b/application/language/nl-BE/config_lang.php
@@ -0,0 +1,36 @@
+
diff --git a/application/language/dutch/customers_lang.php b/application/language/nl-BE/customers_lang.php
similarity index 100%
rename from application/language/dutch/customers_lang.php
rename to application/language/nl-BE/customers_lang.php
diff --git a/application/language/dutch/employees_lang.php b/application/language/nl-BE/employees_lang.php
similarity index 100%
rename from application/language/dutch/employees_lang.php
rename to application/language/nl-BE/employees_lang.php
diff --git a/application/language/dutch/error_lang.php b/application/language/nl-BE/error_lang.php
similarity index 100%
rename from application/language/dutch/error_lang.php
rename to application/language/nl-BE/error_lang.php
diff --git a/application/language/nl-BE/form_validation_lang.php b/application/language/nl-BE/form_validation_lang.php
new file mode 100644
index 000000000..49b3513c7
--- /dev/null
+++ b/application/language/nl-BE/form_validation_lang.php
@@ -0,0 +1,28 @@
+
\ No newline at end of file
diff --git a/application/language/dutch/index.html b/application/language/nl-BE/index.html
old mode 100755
new mode 100644
similarity index 93%
rename from application/language/dutch/index.html
rename to application/language/nl-BE/index.html
index c942a79ce..7f684dff4
--- a/application/language/dutch/index.html
+++ b/application/language/nl-BE/index.html
@@ -7,4 +7,4 @@
Directory access is forbidden.