diff --git a/app/config/version.php b/app/config/version.php index 1997e1465c..4b34529634 100644 --- a/app/config/version.php +++ b/app/config/version.php @@ -1,5 +1,5 @@ 'v2.0-101', - 'hash_version' => 'v2.0-101-g2c54c93', + 'app_version' => 'v2.0-114', + 'hash_version' => 'v2.0-114-g06c9076', ); \ No newline at end of file diff --git a/app/controllers/admin/GroupsController.php b/app/controllers/admin/GroupsController.php index 9a876b17e1..eb394c67ef 100755 --- a/app/controllers/admin/GroupsController.php +++ b/app/controllers/admin/GroupsController.php @@ -163,7 +163,7 @@ class GroupsController extends AdminController if (!Config::get('app.lock_passwords')) { - try { + try { // Update the group data $group->name = Input::get('name'); $group->permissions = Input::get('permissions'); @@ -196,18 +196,22 @@ class GroupsController extends AdminController */ public function getDelete($id = null) { - try { - // Get group information - $group = Sentry::getGroupProvider()->findById($id); + if (!Config::get('app.lock_passwords')) { + try { + // Get group information + $group = Sentry::getGroupProvider()->findById($id); - // Delete the group - $group->delete(); + // Delete the group + $group->delete(); - // Redirect to the group management page - return Redirect::route('groups')->with('success', Lang::get('admin/groups/message.success.delete')); - } catch (GroupNotFoundException $e) { - // Redirect to the group management page - return Redirect::route('groups')->with('error', Lang::get('admin/groups/message.group_not_found', compact('id'))); + // Redirect to the group management page + return Redirect::route('groups')->with('success', Lang::get('admin/groups/message.success.delete')); + } catch (GroupNotFoundException $e) { + // Redirect to the group management page + return Redirect::route('groups')->with('error', Lang::get('admin/groups/message.group_not_found', compact('id'))); + } + } else { + return Redirect::route('groups')->with('error', Lang::get('general.feature_disabled')); } } diff --git a/app/controllers/admin/SettingsController.php b/app/controllers/admin/SettingsController.php index dcbc53d14a..c714fefac1 100755 --- a/app/controllers/admin/SettingsController.php +++ b/app/controllers/admin/SettingsController.php @@ -13,6 +13,7 @@ use View; use Image; use Config; use Response; +use Artisan; class SettingsController extends AdminController { @@ -172,12 +173,34 @@ class SettingsController extends AdminController } closedir($handle); + $files = array_reverse($files); } return View::make('backend/settings/backups', compact('path','files')); } + + /** + * Generate the backup page + * + * @return View + **/ + + public function postBackups() + { + if (!Config::get('app.lock_passwords')) { + Artisan::call('snipe:backup'); + return Redirect::to("admin/settings/backups")->with('success', Lang::get('admin/settings/message.backup.generated')); + } else { + Artisan::call('snipe:backup'); + return Redirect::to("admin/settings/backups")->with('error', Lang::get('general.feature_disabled')); + } + + + } + + /** * Download the dump file * @@ -186,20 +209,45 @@ class SettingsController extends AdminController **/ public function downloadFile($filename = null) { + if (!Config::get('app.lock_passwords')) { + $file = Config::get('backup::path').'/'.$filename; + if (file_exists($file)) { + return Response::download($file); + } else { - $file = Config::get('backup::path').'/'.$filename; - - - // the license is valid - if (file_exists($file)) { - return Response::download($file); + // Redirect to the backup page + return Redirect::route('settings/backups')->with('error', Lang::get('admin/settings/message.backup.file_not_found')); + } } else { - // Prepare the error message - $error = Lang::get('admin/settings/message.does_not_exist'); - - // Redirect to the licence management page - return Redirect::route('settings/backups')->with('error', $error); + // Redirect to the backup page + return Redirect::route('settings/backups')->with('error', Lang::get('general.feature_disabled')); } + + + } + + /** + * Download the dump file + * + * @param int $assetId + * @return View + **/ + public function deleteFile($filename = null) + { + + if (!Config::get('app.lock_passwords')) { + + $file = Config::get('backup::path').'/'.$filename; + if (file_exists($file)) { + unlink($file); + return Redirect::route('settings/backups')->with('success', Lang::get('admin/settings/message.backup.file_deleted')); + } else { + return Redirect::route('settings/backups')->with('error', Lang::get('admin/settings/message.backup.file_not_found')); + } + } else { + return Redirect::route('settings/backups')->with('error', Lang::get('general.feature_disabled')); + } + } diff --git a/app/database/migrations/2015_07_29_230054_add_thread_id_to_asset_logs_table.php b/app/database/migrations/2015_07_29_230054_add_thread_id_to_asset_logs_table.php index 58f62979cd..e4070ae732 100644 --- a/app/database/migrations/2015_07_29_230054_add_thread_id_to_asset_logs_table.php +++ b/app/database/migrations/2015_07_29_230054_add_thread_id_to_asset_logs_table.php @@ -63,13 +63,16 @@ public function up() { - Schema::table( 'asset_logs', function ( Blueprint $table ) { + if (!Schema::hasColumn('asset_logs', 'thread_id')) { - $table->integer( 'thread_id' ) - ->nullable() - ->default( null ); - $table->index( 'thread_id' ); - } ); + Schema::table( 'asset_logs', function ( Blueprint $table ) { + + $table->integer( 'thread_id' ) + ->nullable() + ->default( null ); + $table->index( 'thread_id' ); + } ); + } $this->actionlog = new Actionlog(); $this->assetLogs = $this->actionlog->getListingOfActionLogsChronologicalOrder(); @@ -93,9 +96,10 @@ } } - } + + /** * Reverse the migrations. * diff --git a/app/lang/ar/admin/settings/general.php b/app/lang/ar/admin/settings/general.php index 80d152d06e..ff19aca7e7 100755 --- a/app/lang/ar/admin/settings/general.php +++ b/app/lang/ar/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'These settings let you customize certain aspects of your installation.', 'laravel' => 'Laravel Version', diff --git a/app/lang/ar/admin/settings/message.php b/app/lang/ar/admin/settings/message.php index 693813ca0d..a95761510d 100755 --- a/app/lang/ar/admin/settings/message.php +++ b/app/lang/ar/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'An error has occurred while updating. ', - 'success' => 'Settings updated successfully.' + 'error' => 'An error has occurred while updating. ', + 'success' => 'Settings updated successfully.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/bg/admin/accessories/general.php b/app/lang/bg/admin/accessories/general.php index fcbd3720fa..e9ed3e0b13 100755 --- a/app/lang/bg/admin/accessories/general.php +++ b/app/lang/bg/admin/accessories/general.php @@ -1,20 +1,20 @@ 'About Accessories', - 'about_accessories_text' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - 'accessory_category' => 'Accessory Category', - 'accessory_name' => 'Accessory Name', - 'create' => 'Create Accessory', - 'eula_text' => 'Category EULA', - 'eula_text_help' => 'This field allows you to customize your EULAs for specific types of assets. If you only have one EULA for all of your assets, you can check the box below to use the primary default.', - 'require_acceptance' => 'Require users to confirm acceptance of assets in this category.', - 'no_default_eula' => 'No primary default EULA found. Add one in Settings.', - 'qty' => 'QTY', + 'about_accessories_title' => 'Относно аксесоарите', + 'about_accessories_text' => 'Аксесоарите са всички неща, които се изписват на потребителите, но нямат сериен номер (или няма нужда да бъдат конкретно проследявани). Например, това са мишки, клавиатури и др.', + 'accessory_category' => 'Категория аксесоари', + 'accessory_name' => 'Аксесоар', + 'create' => 'Създаване на аксесоар', + 'eula_text' => 'EULA на категорията', + 'eula_text_help' => 'Това поле позволява да задавате различни EULA за всеки тип активи. Ако имате обща EULA за всички активи, можете да използвате кутийката по-долу за да използвате една обща по подразбиране.', + 'require_acceptance' => 'Задължаване на потребителите да потвърждават приемането на активи от тази категория.', + 'no_default_eula' => 'Няма EULA по подразбиране. Добавете я в Настройки.', + 'qty' => 'Количество', 'total' => 'Oбщо', - 'remaining' => 'Avail', - 'update' => 'Update Accessory', - 'use_default_eula' => 'Use the primary default EULA instead.', - 'use_default_eula_disabled' => 'Use the primary default EULA instead. No primary default EULA is set. Please add one in Settings.', + 'remaining' => 'Наличност', + 'update' => 'Обновяване на аксесоар', + 'use_default_eula' => 'Използване на EULA по подразбиране.', + 'use_default_eula_disabled' => 'Използване на EULA по подразбиране Няма EULA по подразбиране. Добавете я в Настройки.', ); diff --git a/app/lang/bg/admin/accessories/message.php b/app/lang/bg/admin/accessories/message.php index be87c3dd9d..2a24addd11 100755 --- a/app/lang/bg/admin/accessories/message.php +++ b/app/lang/bg/admin/accessories/message.php @@ -3,34 +3,34 @@ return array( 'does_not_exist' => 'Няма такава категория.', - 'assoc_users' => 'This accessory currently has :count items checked out to users. Please check in the accessories and and try again. ', + 'assoc_users' => 'От този аксесоар са предадени :count броя на потребителите. Моля впишете обратно нови или върнати и опитайте отново.', 'create' => array( - 'error' => 'Category was not created, please try again.', + 'error' => 'Категорията не беше създадена. Моля опитайте отново.', 'success' => 'Категорията е създадена.' ), 'update' => array( - 'error' => 'Category was not updated, please try again', + 'error' => 'Категорията не беше обновена. Моля опитайте отново.', 'success' => 'Категорията е обновена.' ), 'delete' => array( 'confirm' => 'Сигурни ли сте, че желаете изтриване на категорията?', - 'error' => 'There was an issue deleting the category. Please try again.', + 'error' => 'Проблем при изтриване на категорията. Моля опитайте отново.', 'success' => 'Категорията бе изтрита успешно.' ), 'checkout' => array( - 'error' => 'Accessory was not checked out, please try again', - 'success' => 'Accessory checked out successfully.', + 'error' => 'Аксесоарът не беше изписан. Моля опитайте отново.', + 'success' => 'Аксесоарът изписан успешно.', 'user_does_not_exist' => 'Невалиден потребител. Моля опитайте отново.' ), 'checkin' => array( - 'error' => 'Accessory was not checked in, please try again', - 'success' => 'Accessory checked in successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'error' => 'Аксесоарът не беше вписан. Моля опитайте отново.', + 'success' => 'Аксесоарът вписан успешно.', + 'user_does_not_exist' => 'Невалиден потребител. Моля опитайте отново.' ) diff --git a/app/lang/bg/admin/accessories/table.php b/app/lang/bg/admin/accessories/table.php index e02d9f22e4..93badac4b7 100755 --- a/app/lang/bg/admin/accessories/table.php +++ b/app/lang/bg/admin/accessories/table.php @@ -1,11 +1,11 @@ 'Download CSV', + 'dl_csv' => 'Сваляне на CSV', 'eula_text' => 'EULA', 'id' => 'ID', - 'require_acceptance' => 'Acceptance', - 'title' => 'Accessory Name', + 'require_acceptance' => 'Утвърждаване', + 'title' => 'Аксесоар', ); diff --git a/app/lang/bg/admin/asset_maintenances/message.php b/app/lang/bg/admin/asset_maintenances/message.php index 56bdc88ca3..830669a6fd 100755 --- a/app/lang/bg/admin/asset_maintenances/message.php +++ b/app/lang/bg/admin/asset_maintenances/message.php @@ -1,15 +1,15 @@ 'Asset Maintenance you were looking for was not found!', + 'not_found' => 'Поддръжката на актив, която търсите не бе открита!', 'delete' => [ - 'confirm' => 'Are you sure you wish to delete this asset maintenance?', - 'error' => 'There was an issue deleting the asset maintenance. Please try again.', - 'success' => 'The asset maintenance was deleted successfully.' + 'confirm' => 'Потвърдете изтриването на поддръжката на актив.', + 'error' => 'Проблем при изтриването на поддръжка на актив. Моля опитайте отново.', + 'success' => 'Поддръжката на актив изтрита успешно.' ], 'create' => [ - 'error' => 'Asset Maintenance was not created, please try again.', - 'success' => 'Asset Maintenance created successfully.' + 'error' => 'Поддръжката на актив не бе създадена. Моля опитайте отново.', + 'success' => 'Поддръжката на актив създадена успешно.' ], 'asset_maintenance_incomplete' => 'Все още неприключила', 'warranty' => 'Гаранция', diff --git a/app/lang/bg/admin/categories/general.php b/app/lang/bg/admin/categories/general.php index 93b0bd2a65..23a1e8025e 100755 --- a/app/lang/bg/admin/categories/general.php +++ b/app/lang/bg/admin/categories/general.php @@ -1,22 +1,22 @@ 'About Asset Categories', - 'about_categories' => 'Asset categories help you organize your assets. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use asset categories any way that makes sense for you.', - 'asset_categories' => 'Asset Categories', + 'about_asset_categories' => 'Относно категориите на активи', + 'about_categories' => 'Категориите помагат организирането на активите. Примерни категории могат да бъдат "Стационарни PC", "Лаптопи", "Мобилни телефони", "Таблети" и т.н., но можете да използвате всяка категория, имаща смисъл за организацията Ви.', + 'asset_categories' => 'Категории на активи', 'category_name' => 'Име на категория', - 'checkin_email' => 'Send email to user on checkin.', + 'checkin_email' => 'Изпращане на email до потребителя при вписване на активи.', 'clone' => 'Копиране на категория', 'create' => 'Създаване на категория', 'edit' => 'Редакция на категория', 'eula_text' => 'Категория EULA', - 'eula_text_help' => 'This field allows you to customize your EULAs for specific types of assets. If you only have one EULA for all of your assets, you can check the box below to use the primary default.', - 'require_acceptance' => 'Require users to confirm acceptance of assets in this category.', - 'required_acceptance' => 'This user will be emailed with a link to confirm acceptance of this item.', - 'required_eula' => 'This user will be emailed a copy of the EULA', - 'no_default_eula' => 'No primary default EULA found. Add one in Settings.', + 'eula_text_help' => 'Това поле позволява да задавате различни EULA за всеки тип активи. Ако имате обща EULA за всички активи, можете да използвате кутийката по-долу за да използвате една обща по подразбиране.', + 'require_acceptance' => 'Задължаване на потребителите да потвърждават приемането на активи от тази категория.', + 'required_acceptance' => 'Потребителят ще получи email с връзка за потвърждаване получаването на актива.', + 'required_eula' => 'Потребителят ще получи копие на EULA.', + 'no_default_eula' => 'Няма EULA по подразбиране. Добавете я в Настройки.', 'update' => 'Обновяване на категория', - 'use_default_eula' => 'Use the primary default EULA instead.', - 'use_default_eula_disabled' => 'Use the primary default EULA instead. No primary default EULA is set. Please add one in Settings.', + 'use_default_eula' => 'Използване на EULA по подразбиране.', + 'use_default_eula_disabled' => 'Използване на EULA по подразбиране Няма EULA по подразбиране. Добавете я в Настройки.', ); diff --git a/app/lang/bg/admin/categories/message.php b/app/lang/bg/admin/categories/message.php index 556150578e..9a25330050 100755 --- a/app/lang/bg/admin/categories/message.php +++ b/app/lang/bg/admin/categories/message.php @@ -3,15 +3,15 @@ return array( 'does_not_exist' => 'Категорията не съществува.', - 'assoc_users' => 'This category is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this category and try again. ', + 'assoc_users' => 'Тази категория е асоциирана с поне един модел и не може да бъде изтрита. Моля обновете връзките с моделите и опитайте отново.', 'create' => array( - 'error' => 'Category was not created, please try again.', - 'success' => 'Category created successfully.' + 'error' => 'Категорията не беше създадена. Моля опитайте отново.', + 'success' => 'Категорията е създадена.' ), 'update' => array( - 'error' => 'Category was not updated, please try again', + 'error' => 'Категорията не беше обновена. Моля опитайте отново', 'success' => 'Категорията е обновена успешно.' ), diff --git a/app/lang/bg/admin/categories/table.php b/app/lang/bg/admin/categories/table.php index a18e7d1c5f..dc254499f5 100755 --- a/app/lang/bg/admin/categories/table.php +++ b/app/lang/bg/admin/categories/table.php @@ -3,7 +3,7 @@ return array( 'eula_text' => 'EULA', 'id' => 'ID', - 'parent' => 'Parent', + 'parent' => 'Горна категория', 'require_acceptance' => 'Утвърждаване', 'title' => 'Категория на актива', diff --git a/app/lang/bg/admin/consumables/message.php b/app/lang/bg/admin/consumables/message.php index 45c803c4c2..0f5cbaecf6 100755 --- a/app/lang/bg/admin/consumables/message.php +++ b/app/lang/bg/admin/consumables/message.php @@ -2,34 +2,34 @@ return array( - 'does_not_exist' => 'Consumable does not exist.', + 'does_not_exist' => 'Консуматива не съществува.', 'create' => array( - 'error' => 'Consumable was not created, please try again.', - 'success' => 'Consumable created successfully.' + 'error' => 'Консумативът не беше създаден. Моля опитайте отново.', + 'success' => 'Консумативът създаден успешно.' ), 'update' => array( - 'error' => 'Consumable was not updated, please try again', - 'success' => 'Consumable updated successfully.' + 'error' => 'Консумативът не беше обновен. Моля опитайте отново.', + 'success' => 'Консумативът обновен успешно.' ), 'delete' => array( - 'confirm' => 'Are you sure you wish to delete this accessory?', - 'error' => 'There was an issue deleting the consumable. Please try again.', - 'success' => 'The accessory was deleted successfully.' + 'confirm' => 'Сигурни ли сте, че желаете да изтриете аксесоара?', + 'error' => 'Проблем при изтриването на консуматива. Моля опитайте отново.', + 'success' => 'Аксесоарът беше изтрит успешно.' ), 'checkout' => array( - 'error' => 'Consumable was not checked out, please try again', - 'success' => 'Consumable checked out successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'error' => 'Консумативът не беше изписан. Моля опитайте отново.', + 'success' => 'Консумативът изписан успешно.', + 'user_does_not_exist' => 'Невалиден потребител. Моля опитайте отново.' ), 'checkin' => array( - 'error' => 'Consumable was not checked in, please try again', - 'success' => 'Consumable checked in successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'error' => 'Консумативът не беше вписан. Моля опитайте отново.', + 'success' => 'Консумативът вписан успешно.', + 'user_does_not_exist' => 'Невалиден потребител. Моля опитайте отново.' ) diff --git a/app/lang/bg/admin/consumables/table.php b/app/lang/bg/admin/consumables/table.php index bb76721f17..423e43d5fa 100755 --- a/app/lang/bg/admin/consumables/table.php +++ b/app/lang/bg/admin/consumables/table.php @@ -1,5 +1,5 @@ 'Consumable Name', + 'title' => 'Консуматив', ); diff --git a/app/lang/bg/admin/depreciations/general.php b/app/lang/bg/admin/depreciations/general.php index a36e1eee95..84a725ad4e 100755 --- a/app/lang/bg/admin/depreciations/general.php +++ b/app/lang/bg/admin/depreciations/general.php @@ -2,11 +2,11 @@ return array( 'about_asset_depreciations' => 'Относно амортизацията на активи', - 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - 'asset_depreciations' => 'Asset Depreciations', - 'create_depreciation' => 'Create Depreciation', - 'depreciation_name' => 'Depreciation Name', - 'number_of_months' => 'Number of Months', - 'update_depreciation' => 'Update Depreciation', + 'about_depreciations' => 'Тук можете да конфигурирате линейна амортизация на активи във времето.', + 'asset_depreciations' => 'Амортизация на активи', + 'create_depreciation' => 'Създаване на амортизация', + 'depreciation_name' => 'Амортизация', + 'number_of_months' => 'Брой месеци', + 'update_depreciation' => 'Обновяване на амортизация', ); diff --git a/app/lang/bg/admin/depreciations/message.php b/app/lang/bg/admin/depreciations/message.php index c20e52c13c..e633844a7c 100755 --- a/app/lang/bg/admin/depreciations/message.php +++ b/app/lang/bg/admin/depreciations/message.php @@ -2,24 +2,24 @@ return array( - 'does_not_exist' => 'Depreciation class does not exist.', - 'assoc_users' => 'This depreciation is currently associated with one or more models and cannot be deleted. Please delete the models, and then try deleting again. ', + 'does_not_exist' => 'Амортизацията не съществува.', + 'assoc_users' => 'Тази амортизация е асоциирана с един или повече модели и не може да бъде изтрита. Моля изтрийте моделите и опитайте отново.', 'create' => array( - 'error' => 'Depreciation class was not created, please try again. :(', - 'success' => 'Depreciation class created successfully. :)' + 'error' => 'Класът на амортизация не беше създаден. Моля опитайте отново.', + 'success' => 'Класът на амортизация създаден успешно.' ), 'update' => array( - 'error' => 'Depreciation class was not updated, please try again', - 'success' => 'Depreciation class updated successfully.' + 'error' => 'Класът на амортизация не беше обновен. Моля опитайте отново.', + 'success' => 'Класът на амортизация обновен успешно.' ), 'delete' => array( - 'confirm' => 'Are you sure you wish to delete this depreciation class?', - 'error' => 'There was an issue deleting the depreciation class. Please try again.', - 'success' => 'The depreciation class was deleted successfully.' + 'confirm' => 'Сигурни ли сте, че желаете изтриване на класът на амортизация?', + 'error' => 'Проблем при изтриването на класа на амортизация. Моля опитайте отново.', + 'success' => 'Класът на амортизация изтрит успешно.' ) ); diff --git a/app/lang/bg/admin/groups/message.php b/app/lang/bg/admin/groups/message.php index f14b6339e8..d27a62e61c 100755 --- a/app/lang/bg/admin/groups/message.php +++ b/app/lang/bg/admin/groups/message.php @@ -2,21 +2,21 @@ return array( - 'group_exists' => 'Group already exists!', - 'group_not_found' => 'Group [:id] does not exist.', - 'group_name_required' => 'The name field is required', + 'group_exists' => 'Групата вече съществува!', + 'group_not_found' => 'Групата [:id] не съществува.', + 'group_name_required' => 'Полето име е задължително', 'success' => array( - 'create' => 'Group was successfully created.', - 'update' => 'Group was successfully updated.', - 'delete' => 'Group was successfully deleted.', + 'create' => 'Групата създадена успешно.', + 'update' => 'Групата обновена успешно.', + 'delete' => 'Групата изтрита успешно.', ), 'delete' => array( - 'confirm' => 'Are you sure you wish to delete this group?', - 'create' => 'There was an issue creating the group. Please try again.', - 'update' => 'There was an issue updating the group. Please try again.', - 'delete' => 'There was an issue deleting the group. Please try again.', + 'confirm' => 'Сигурни ли сте, че желаете да изтриете групата?', + 'create' => 'Проблем при създаване на групата. Моля опитайте отново.', + 'update' => 'Проблем при обновяването на групата. Моля опитайте отново.', + 'delete' => 'Проблем при изтриване на групата. Моля опитайте отново.', ), ); diff --git a/app/lang/bg/admin/groups/table.php b/app/lang/bg/admin/groups/table.php index 61f060a116..3e8b453ba3 100755 --- a/app/lang/bg/admin/groups/table.php +++ b/app/lang/bg/admin/groups/table.php @@ -2,8 +2,8 @@ return array( - 'id' => 'Id', - 'name' => 'Name', - 'users' => '# of Users', + 'id' => 'ID', + 'name' => 'Име', + 'users' => 'Брой потребители', ); diff --git a/app/lang/bg/admin/groups/titles.php b/app/lang/bg/admin/groups/titles.php index 12c333a66f..7fe63cb1ba 100755 --- a/app/lang/bg/admin/groups/titles.php +++ b/app/lang/bg/admin/groups/titles.php @@ -2,12 +2,12 @@ return array( - 'group_management' => 'Group Management', - 'create_group' => 'Create New Group', - 'edit_group' => 'Edit Group', - 'group_name' => 'Group Name', - 'group_admin' => 'Group Admin', - 'allow' => 'Allow', - 'deny' => 'Deny', + 'group_management' => 'Управление на групи', + 'create_group' => 'Нова група', + 'edit_group' => 'Редакция на група', + 'group_name' => 'Име на група', + 'group_admin' => 'Администратор на група', + 'allow' => 'Разрешаване', + 'deny' => 'Отказ', ); diff --git a/app/lang/bg/admin/hardware/form.php b/app/lang/bg/admin/hardware/form.php index 5cadad3641..8661eba102 100755 --- a/app/lang/bg/admin/hardware/form.php +++ b/app/lang/bg/admin/hardware/form.php @@ -2,41 +2,41 @@ return array( - 'bulk_update' => 'Bulk Update Assets', - 'bulk_update_help' => 'This form allows you to update multiple assets at once. Only fill in the fields you need to change. Any fields left blank will remain unchanged. ', - 'bulk_update_warn' => 'You are about to edit the properties of :asset_count assets.', - 'checkedout_to' => 'Checked Out To', - 'checkout_date' => 'Checkout Date', - 'checkin_date' => 'Checkin Date', - 'checkout_to' => 'Checkout to', - 'cost' => 'Purchase Cost', - 'create' => 'Create Asset', - 'date' => 'Purchase Date', - 'depreciates_on' => 'Depreciates On', - 'depreciation' => 'Depreciation', - 'default_location' => 'Default Location', - 'eol_date' => 'EOL Date', - 'eol_rate' => 'EOL Rate', - 'expected_checkin' => 'Expected Checkin Date', - 'expires' => 'Expires', - 'fully_depreciated' => 'Fully Depreciated', - 'help_checkout' => 'If you wish to assign this asset immediately, select "Ready to Deploy" from the status list above. ', - 'mac_address' => 'MAC Address', - 'manufacturer' => 'Manufacturer', - 'model' => 'Model', - 'months' => 'months', - 'name' => 'Asset Name', - 'notes' => 'Notes', - 'order' => 'Order Number', - 'qr' => 'QR Code', - 'requestable' => 'Users may request this asset', - 'select_statustype' => 'Select Status Type', - 'serial' => 'Serial', - 'status' => 'Status', - 'supplier' => 'Supplier', - 'tag' => 'Asset Tag', - 'update' => 'Asset Update', - 'warranty' => 'Warranty', - 'years' => 'years', + 'bulk_update' => 'Масово обновяване на активи', + 'bulk_update_help' => 'Тук можете да обновите множество активи едновременно. Попълнете единствено полетата, които желаете да промените. Всички празни полета няма да бъдат променени.', + 'bulk_update_warn' => 'Ще бъдат променени записите за :asset_count актива.', + 'checkedout_to' => 'Изписано на', + 'checkout_date' => 'Дата на изписване', + 'checkin_date' => 'Дата на вписване', + 'checkout_to' => 'Изпиши на', + 'cost' => 'Стойност на закупуване', + 'create' => 'Създаване на актив', + 'date' => 'Дата на закупуване', + 'depreciates_on' => 'Амортизира се на', + 'depreciation' => 'Амортизация', + 'default_location' => 'Местоположение по подразбиране', + 'eol_date' => 'EOL дата', + 'eol_rate' => 'EOL съотношение', + 'expected_checkin' => 'Очаквана дата на вписване', + 'expires' => 'Изтича', + 'fully_depreciated' => 'Напълно амортизиран', + 'help_checkout' => 'Ако желаете да присвоите актив на момента, изберете "Готово за предаване" от списъка по-горе.', + 'mac_address' => 'MAC адрес', + 'manufacturer' => 'Производител', + 'model' => 'Модел', + 'months' => 'месеца', + 'name' => 'Име на актив', + 'notes' => 'Бележки', + 'order' => 'Номер на поръчка', + 'qr' => 'QR код', + 'requestable' => 'Потребителите могат да изписват актива', + 'select_statustype' => 'Избиране на тип на статуса', + 'serial' => 'Сериен номер', + 'status' => 'Статус', + 'supplier' => 'Доставчик', + 'tag' => 'Инвентарен номер', + 'update' => 'Обновяване на актив', + 'warranty' => 'Гаранция', + 'years' => 'години', ) ; diff --git a/app/lang/bg/admin/hardware/general.php b/app/lang/bg/admin/hardware/general.php index 2a09db28e4..34c33d797f 100755 --- a/app/lang/bg/admin/hardware/general.php +++ b/app/lang/bg/admin/hardware/general.php @@ -1,19 +1,19 @@ 'Archived', - 'asset' => 'Asset', - 'checkin' => 'Checkin Asset', - 'checkout' => 'Checkout Asset to User', - 'clone' => 'Clone Asset', - 'deployable' => 'Deployable', - 'deleted' => 'This asset has been deleted. Click here to restore it.', - 'edit' => 'Edit Asset', - 'filetype_info' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.', - 'model_deleted' => 'This Assets model has been deleted. You must restore the model before you can restore the Asset.
Click here to restore the model.', - 'requestable' => 'Requestable', - 'restore' => 'Restore Asset', - 'pending' => 'Pending', - 'undeployable' => 'Undeployable', - 'view' => 'View Asset', + 'archived' => 'Архивиран', + 'asset' => 'Актив', + 'checkin' => 'Връщане на актив', + 'checkout' => 'Изписване на актив към потребител', + 'clone' => 'Копиране на актив', + 'deployable' => 'Може да бъде предоставен', + 'deleted' => 'Активът беше изтрит. Възстановяване.', + 'edit' => 'Редакция на актив', + 'filetype_info' => 'Позволените типове файлове са png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, и rar.', + 'model_deleted' => 'Моделът актив беше изтрит.Необходимо е да възстановите моделът, преди да възстановите актива.
Възстановяване на модел.', + 'requestable' => 'Може да бъде изискван', + 'restore' => 'Възстановяване на актив', + 'pending' => 'Предстоящ', + 'undeployable' => 'Не може да бъде предоставян', + 'view' => 'Преглед на актив', ); diff --git a/app/lang/bg/admin/hardware/message.php b/app/lang/bg/admin/hardware/message.php index 03e9473cbf..33e5f59b1f 100755 --- a/app/lang/bg/admin/hardware/message.php +++ b/app/lang/bg/admin/hardware/message.php @@ -2,57 +2,56 @@ return array( - 'undeployable' => 'Warning: This asset has been marked as currently undeployable. - If this status has changed, please update the asset status.', - 'does_not_exist' => 'Asset does not exist.', - 'does_not_exist_or_not_requestable' => 'Nice try. That asset does not exist or is not requestable.', - 'assoc_users' => 'This asset is currently checked out to a user and cannot be deleted. Please check the asset in first, and then try deleting again. ', + 'undeployable' => 'Внимание: Този актив е маркиран като невъзможен за предоставяне. Ако статусът е променен, моля обновете актива.', + 'does_not_exist' => 'Активът не съществува.', + 'does_not_exist_or_not_requestable' => 'Добър опит. Активът не съществува или не може а бъде предоставян.', + 'assoc_users' => 'Активът е изписан на потребител и не може да бъде изтрит. Моля впишете го обратно и след това опитайте да го изтриете отново.', 'create' => array( - 'error' => 'Asset was not created, please try again. :(', - 'success' => 'Asset created successfully. :)' + 'error' => 'Активът не беше създаден. Моля опитайте отново.', + 'success' => 'Активът създаден успешно.' ), 'update' => array( - 'error' => 'Asset was not updated, please try again', - 'success' => 'Asset updated successfully.', - 'nothing_updated' => 'No fields were selected, so nothing was updated.', + 'error' => 'Активът не беше обновен. Моля опитайте отново.', + 'success' => 'Активът обновен успешно.', + 'nothing_updated' => 'Няма избрани полета, съответно нищо не беше обновено.', ), 'restore' => array( - 'error' => 'Asset was not restored, please try again', - 'success' => 'Asset restored successfully.' + 'error' => 'Активът не беше възстановен. Моля опитайте отново.', + 'success' => 'Активът възстановен успешно.' ), 'deletefile' => array( - 'error' => 'File not deleted. Please try again.', - 'success' => 'File successfully deleted.', + 'error' => 'Файлът не беше изтрит. Моля опитайте отново.', + 'success' => 'Файлът изтрит успешно.', ), 'upload' => array( - 'error' => 'File(s) not uploaded. Please try again.', - 'success' => 'File(s) successfully uploaded.', - 'nofiles' => 'You did not select any files for upload, or the file you are trying to upload is too large', - 'invalidfiles' => 'One or more of your files is too large or is a filetype that is not allowed. Allowed filetypes are png, gif, jpg, doc, docx, pdf, and txt.', + 'error' => 'Качването неуспешно. Моля опитайте отново.', + 'success' => 'Качването успешно.', + 'nofiles' => 'Не сте избрали файлове за качване или са твърде големи.', + 'invalidfiles' => 'Един или повече файлове са твърде големи или с непозволен тип. Разрешените файлови типове за качване са png, gif, jpg, doc, docx, pdf и txt.', ), 'delete' => array( - 'confirm' => 'Are you sure you wish to delete this asset?', - 'error' => 'There was an issue deleting the asset. Please try again.', - 'success' => 'The asset was deleted successfully.' + 'confirm' => 'Сигурни ли сте, че желаете изтриване на актива?', + 'error' => 'Проблем при изтриване на актива. Моля опитайте отново.', + 'success' => 'Активът е изтрит успешно.' ), 'checkout' => array( - 'error' => 'Asset was not checked out, please try again', - 'success' => 'Asset checked out successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'error' => 'Активът не беше изписан. Моля опитайте отново.', + 'success' => 'Активът изписан успешно.', + 'user_does_not_exist' => 'Невалиден потребител. Моля опитайте отново.' ), 'checkin' => array( - 'error' => 'Asset was not checked in, please try again', - 'success' => 'Asset checked in successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'error' => 'Активът не беше вписан. Моля опитайте отново.', + 'success' => 'Активът вписан успешно.', + 'user_does_not_exist' => 'Невалиден потребител. Моля опитайте отново.' ) ); diff --git a/app/lang/bg/admin/hardware/table.php b/app/lang/bg/admin/hardware/table.php index 62dbc28ce1..8212d46f2b 100755 --- a/app/lang/bg/admin/hardware/table.php +++ b/app/lang/bg/admin/hardware/table.php @@ -2,22 +2,22 @@ return array( - 'asset_tag' => 'Asset Tag', - 'asset_model' => 'Model', - 'book_value' => 'Value', - 'change' => 'In/Out', - 'checkout_date' => 'Checkout Date', - 'checkoutto' => 'Checked Out', - 'diff' => 'Diff', - 'dl_csv' => 'Download CSV', + 'asset_tag' => 'Инвентарен номер', + 'asset_model' => 'Модел', + 'book_value' => 'Стойност', + 'change' => 'Предоставяне', + 'checkout_date' => 'Дата на изписване', + 'checkoutto' => 'Изписан', + 'diff' => 'Разлика', + 'dl_csv' => 'Сваляне на CSV', 'eol' => 'EOL', 'id' => 'ID', - 'location' => 'Location', - 'purchase_cost' => 'Cost', - 'purchase_date' => 'Purchased', - 'serial' => 'Serial', - 'status' => 'Status', - 'title' => 'Asset ', - 'days_without_acceptance' => 'Days Without Acceptance' + 'location' => 'Местоположение', + 'purchase_cost' => 'Стойност', + 'purchase_date' => 'Закупен', + 'serial' => 'Сериен номер', + 'status' => 'Статус', + 'title' => 'Актив ', + 'days_without_acceptance' => 'Дни без да е предаден' ); diff --git a/app/lang/bg/admin/licenses/form.php b/app/lang/bg/admin/licenses/form.php index 99f8198435..a7e7265bef 100755 --- a/app/lang/bg/admin/licenses/form.php +++ b/app/lang/bg/admin/licenses/form.php @@ -2,27 +2,27 @@ return array( - 'asset' => 'Asset', - 'checkin' => 'Checkin', - 'cost' => 'Purchase Cost', - 'create' => 'Create License', - 'date' => 'Purchase Date', - 'depreciation' => 'Depreciation', - 'expiration' => 'Expiration Date', - 'maintained' => 'Maintained', - 'name' => 'Software Name', - 'no_depreciation' => 'Do Not Depreciate', - 'notes' => 'Notes', - 'order' => 'Order No.', - 'purchase_order' => 'Purchase Order Number', - 'reassignable' => 'Reassignable', - 'remaining_seats' => 'Remaining Seats', - 'seats' => 'Seats', - 'serial' => 'Serial', - 'supplier' => 'Supplier', - 'termination_date' => 'Termination Date', - 'to_email' => 'Licensed to Email', - 'to_name' => 'Licensed to Name', - 'update' => 'Update License', - 'checkout_help' => 'You must check a license out to a hardware asset or a person. You can select both, but the owner of the asset must match the person you\'re checking the asset out to.' + 'asset' => 'Актив', + 'checkin' => 'Вписване', + 'cost' => 'Стойност на закупуване', + 'create' => 'Добавяне на лиценз', + 'date' => 'Дата на закупуване', + 'depreciation' => 'Амортизация', + 'expiration' => 'Срок на валидност', + 'maintained' => 'В поддръжка', + 'name' => 'Софтуерен продукт', + 'no_depreciation' => 'Без амортизация', + 'notes' => 'Бележки', + 'order' => 'Номер на заявка', + 'purchase_order' => 'Номер на заявка за закупуване', + 'reassignable' => 'Може да бъде сменян ползвателя', + 'remaining_seats' => 'Оставащи потребителски лицензи', + 'seats' => 'Потребителски лицензи', + 'serial' => 'Сериен номер', + 'supplier' => 'Доставчик', + 'termination_date' => 'Дата на валидност', + 'to_email' => 'Лиценз към e-mail', + 'to_name' => 'Лиценз към име', + 'update' => 'Обновяване на лиценз', + 'checkout_help' => 'Можете да изпишете лиценз към конкретен хардуер или потребител. Един лиценз може да бъде изписан едновременно и на хардуер и на потребител, но потребителя трябва да бъде собственик на съответния хардуерен актив.' ); diff --git a/app/lang/bg/admin/licenses/general.php b/app/lang/bg/admin/licenses/general.php index 808d75a34a..c8a63ca195 100755 --- a/app/lang/bg/admin/licenses/general.php +++ b/app/lang/bg/admin/licenses/general.php @@ -2,19 +2,19 @@ return array( - 'checkin' => 'Checkin License Seat', - 'checkout_history' => 'Checkout History', - 'checkout' => 'Checkout License Seat', - 'edit' => 'Edit License', - 'filetype_info' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.', - 'clone' => 'Clone License', - 'history_for' => 'History for ', - 'in_out' => 'In/Out', - 'info' => 'License Info', - 'license_seats' => 'License Seats', - 'seat' => 'Seat', - 'seats' => 'Seats', - 'software_licenses' => 'Software Licenses', - 'user' => 'User', - 'view' => 'View License', + 'checkin' => 'Вписване на потребителски лиценз', + 'checkout_history' => 'История на изписванията', + 'checkout' => 'Изписване на потребителски лиценз', + 'edit' => 'Редакция на лиценз', + 'filetype_info' => 'Позволените типове файлове са png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, и rar.', + 'clone' => 'Копиране на лиценз', + 'history_for' => 'История за ', + 'in_out' => 'Предоставяне', + 'info' => 'Информация за лиценз', + 'license_seats' => 'Потребителски лицензи', + 'seat' => 'Потребителски лиценз', + 'seats' => 'Потребителски лицензи', + 'software_licenses' => 'Софтуерни лицензи', + 'user' => 'Потребител', + 'view' => 'Преглед на лиценз', ); diff --git a/app/lang/bg/admin/licenses/message.php b/app/lang/bg/admin/licenses/message.php index ffc70bee0f..5e4dcc69b4 100755 --- a/app/lang/bg/admin/licenses/message.php +++ b/app/lang/bg/admin/licenses/message.php @@ -2,49 +2,49 @@ return array( - 'does_not_exist' => 'License does not exist.', - 'user_does_not_exist' => 'User does not exist.', - 'asset_does_not_exist' => 'The asset you are trying to associate with this license does not exist.', - 'owner_doesnt_match_asset' => 'The asset you are trying to associate with this license is owned by somene other than the person selected in the assigned to dropdown.', - 'assoc_users' => 'This license is currently checked out to a user and cannot be deleted. Please check the license in first, and then try deleting again. ', + 'does_not_exist' => 'Лицензът не съществува.', + 'user_does_not_exist' => 'Потребителят не съществува.', + 'asset_does_not_exist' => 'Активът, който се опитвате да свържете с този лиценз не съществува.', + 'owner_doesnt_match_asset' => 'Активът, който се опитвате да свържете с този лиценз е притежание на друго лице, различно от това, което е определено в падащия списък.', + 'assoc_users' => 'Този лиценз понастоящем е изписан на потребител и не може да бъде изтрит. Моля, първо впишете лиценза и тогава опитайте отново да го изтриете. ', 'create' => array( - 'error' => 'License was not created, please try again.', - 'success' => 'License created successfully.' + 'error' => 'Лицензът не беше създаден. Моля, опитайте отново.', + 'success' => 'Лицензът е създаден.' ), 'deletefile' => array( - 'error' => 'File not deleted. Please try again.', - 'success' => 'File successfully deleted.', + 'error' => 'Файлът не е изтрит. Моля, опитайте отново.', + 'success' => 'Файлът е изтрит.', ), 'upload' => array( - 'error' => 'File(s) not uploaded. Please try again.', - 'success' => 'File(s) successfully uploaded.', - 'nofiles' => 'You did not select any files for upload, or the file you are trying to upload is too large', - 'invalidfiles' => 'One or more of your files is too large or is a filetype that is not allowed. Allowed filetypes are png, gif, jpg, doc, docx, pdf, and txt.', + 'error' => 'Файлът (файловете) не е качен. Моля, опитайте отново.', + 'success' => 'Файлът (файловете) е качен.', + 'nofiles' => 'Не сте избрали файл за качване или файлът, който се опитвате да качите е твърде голям', + 'invalidfiles' => 'Един или повече файлове са твърде големи или с неразрешен тип. Разрешените типове файлове са png, gif, jpg, doc, docx, pdf, и txt.', ), 'update' => array( - 'error' => 'License was not updated, please try again', - 'success' => 'License updated successfully.' + 'error' => 'Лицензът не беше обновен. Моля, опитайте отново', + 'success' => 'Лицензът е обновен.' ), 'delete' => array( - 'confirm' => 'Are you sure you wish to delete this license?', - 'error' => 'There was an issue deleting the license. Please try again.', - 'success' => 'The license was deleted successfully.' + 'confirm' => 'Сигурни ли сте, че искате да изтриете този лиценз?', + 'error' => 'Възникна проблем при изтриването на този лиценз. Моля, опитайте отново.', + 'success' => 'Лицензът е изтрит.' ), 'checkout' => array( - 'error' => 'There was an issue checking out the license. Please try again.', - 'success' => 'The license was checked out successfully' + 'error' => 'Възникна проблем при изписването на лиценза. Моля, опитайте отново.', + 'success' => 'Лицензът е изписан' ), 'checkin' => array( - 'error' => 'There was an issue checking in the license. Please try again.', - 'success' => 'The license was checked in successfully' + 'error' => 'Възникна проблем при вписването на лиценза. Моля, опитайте отново.', + 'success' => 'Лицензът е вписан' ), ); diff --git a/app/lang/bg/admin/licenses/table.php b/app/lang/bg/admin/licenses/table.php index dfce4136cb..b20e680ca5 100755 --- a/app/lang/bg/admin/licenses/table.php +++ b/app/lang/bg/admin/licenses/table.php @@ -2,16 +2,16 @@ return array( - 'assigned_to' => 'Assigned To', - 'checkout' => 'In/Out', + 'assigned_to' => 'Предоставен на', + 'checkout' => 'Предоставяне', 'id' => 'ID', - 'license_email' => 'License Email', - 'license_name' => 'Licensed To', - 'purchase_date' => 'Purchase Date', - 'purchased' => 'Purchased', - 'seats' => 'Seats', - 'hardware' => 'Hardware', - 'serial' => 'Serial', - 'title' => 'License', + 'license_email' => 'Лицензиран на Email', + 'license_name' => 'Лицензиран на', + 'purchase_date' => 'Дата на закупуване', + 'purchased' => 'Закупен', + 'seats' => 'Потребителски лицензи', + 'hardware' => 'Хардуер', + 'serial' => 'Сериен номер', + 'title' => 'Лиценз', ); diff --git a/app/lang/bg/admin/locations/message.php b/app/lang/bg/admin/locations/message.php index 3ba1eed3b6..ee79bbc334 100755 --- a/app/lang/bg/admin/locations/message.php +++ b/app/lang/bg/admin/locations/message.php @@ -2,26 +2,26 @@ return array( - 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', - 'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ', + 'does_not_exist' => 'Местоположението не съществува.', + 'assoc_users' => 'Местоположението е свързано с поне един потребител и не може да бъде изтрито. Моля, актуализирайте потребителите, така че да не са свързани с това местоположение и опитайте отново. ', + 'assoc_assets' => 'Местоположението е свързано с поне един актив и не може да бъде изтрито. Моля, актуализирайте активите, така че да не са свързани с това местоположение и опитайте отново. ', 'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ', 'create' => array( - 'error' => 'Location was not created, please try again.', - 'success' => 'Location created successfully.' + 'error' => 'Местоположението не е създадено. Моля, опитайте отново.', + 'success' => 'Местоположението е създадено.' ), 'update' => array( - 'error' => 'Location was not updated, please try again', - 'success' => 'Location updated successfully.' + 'error' => 'Местоположението не е обновено. Моля, опитайте отново', + 'success' => 'Местоположението е обновено.' ), 'delete' => array( - 'confirm' => 'Are you sure you wish to delete this location?', - 'error' => 'There was an issue deleting the location. Please try again.', - 'success' => 'The location was deleted successfully.' + 'confirm' => 'Сигурни ли сте, че искате да изтриете това местоположение?', + 'error' => 'Възникна проблем при изтриване на местоположението. Моля, опитайте отново.', + 'success' => 'Местоположението е изтрито.' ) ); diff --git a/app/lang/bg/admin/manufacturers/message.php b/app/lang/bg/admin/manufacturers/message.php index 6586d2af44..44ea5a9615 100755 --- a/app/lang/bg/admin/manufacturers/message.php +++ b/app/lang/bg/admin/manufacturers/message.php @@ -2,23 +2,23 @@ return array( - 'does_not_exist' => 'Manufacturer does not exist.', - 'assoc_users' => 'This manufacturer is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this manufacturer and try again. ', + 'does_not_exist' => 'Несъществуващ производител.', + 'assoc_users' => 'Този производител е асоцииран с поне един от моделите и не може да бъде изтрит. Моля, променете връзките на моделите по отношение на този производител и опитайте отново. ', 'create' => array( - 'error' => 'Manufacturer was not created, please try again.', - 'success' => 'Manufacturer created successfully.' + 'error' => 'Производителят не беше създаден. Моля, опитайте отново.', + 'success' => 'Производителят е създаден.' ), 'update' => array( - 'error' => 'Manufacturer was not updated, please try again', - 'success' => 'Manufacturer updated successfully.' + 'error' => 'Производителят не е обновен. Моля, опитайте отново', + 'success' => 'Производителят е обновен.' ), 'delete' => array( - 'confirm' => 'Are you sure you wish to delete this manufacturer?', - 'error' => 'There was an issue deleting the manufacturer. Please try again.', - 'success' => 'The Manufacturer was deleted successfully.' + 'confirm' => 'Сигурни ли сте, че искате да изтриете този производител?', + 'error' => 'Възникна проблем при изтриването на проиводителя. Моля, опитайте отново.', + 'success' => 'Производителят е изтрит.' ) ); diff --git a/app/lang/bg/admin/manufacturers/table.php b/app/lang/bg/admin/manufacturers/table.php index 1861ee7c56..313a8d6e42 100755 --- a/app/lang/bg/admin/manufacturers/table.php +++ b/app/lang/bg/admin/manufacturers/table.php @@ -2,10 +2,10 @@ return array( - 'asset_manufacturers' => 'Asset Manufacturers', - 'create' => 'Create Manufacturer', + 'asset_manufacturers' => 'Производители', + 'create' => 'Създаване на производител', 'id' => 'ID', - 'name' => 'Manufacturer Name', - 'update' => 'Update Manufacturer', + 'name' => 'Име на производител', + 'update' => 'Обновяване на производител', ); diff --git a/app/lang/bg/admin/models/general.php b/app/lang/bg/admin/models/general.php index 564f6b4fd3..eccf745827 100755 --- a/app/lang/bg/admin/models/general.php +++ b/app/lang/bg/admin/models/general.php @@ -2,10 +2,10 @@ return array( - 'deleted' => 'This model has been deleted. Click here to restore it.', - 'restore' => 'Restore Model', - 'show_mac_address' => 'Show MAC address field in assets in this model', - 'view_deleted' => 'View Deleted', - 'view_models' => 'View Models', + 'deleted' => 'Моделът беше изтрит. Възстановяване.', + 'restore' => 'Възстановяване на модел', + 'show_mac_address' => 'Визуализиране на поле за MAC адрес в активите за този модел', + 'view_deleted' => 'Преглед на изтритите', + 'view_models' => 'Преглед на моделите', ); diff --git a/app/lang/bg/admin/models/message.php b/app/lang/bg/admin/models/message.php index fe51cb8d4c..91d78fc671 100755 --- a/app/lang/bg/admin/models/message.php +++ b/app/lang/bg/admin/models/message.php @@ -2,7 +2,7 @@ return array( - 'does_not_exist' => 'Model does not exist.', + 'does_not_exist' => 'Моделът не съществува.', 'assoc_users' => 'This model is currently associated with one or more assets and cannot be deleted. Please delete the assets, and then try deleting again. ', diff --git a/app/lang/bg/admin/reports/general.php b/app/lang/bg/admin/reports/general.php index b03b97546f..5ef88db056 100755 --- a/app/lang/bg/admin/reports/general.php +++ b/app/lang/bg/admin/reports/general.php @@ -1,5 +1,5 @@ 'Select the options you want for your asset report.' + 'info' => 'Изберете опциите, които желаете за справката за активи.' ); diff --git a/app/lang/bg/admin/reports/message.php b/app/lang/bg/admin/reports/message.php index d4c8f8198f..ededaa0dea 100755 --- a/app/lang/bg/admin/reports/message.php +++ b/app/lang/bg/admin/reports/message.php @@ -1,5 +1,5 @@ 'You must select at least ONE option.' + 'error' => 'Трябва да изберете поне една опция.' ); diff --git a/app/lang/bg/admin/settings/general.php b/app/lang/bg/admin/settings/general.php index 2c9c49d36f..13cb558338 100755 --- a/app/lang/bg/admin/settings/general.php +++ b/app/lang/bg/admin/settings/general.php @@ -1,49 +1,50 @@ 'Send alerts to', + 'alert_email' => 'Изпращане на нотификации към', 'alerts_enabled' => 'Алармите включени', - 'asset_ids' => 'Asset IDs', - 'auto_increment_assets' => 'Generate auto-incrementing asset IDs', - 'auto_increment_prefix' => 'Prefix (optional)', - 'auto_incrementing_help' => 'Enable auto-incrementing asset IDs first to set this', - 'backups' => 'Backups', + 'asset_ids' => 'ID на активи', + 'auto_increment_assets' => 'Автоматично генериране на инвентарни номера на активите', + 'auto_increment_prefix' => 'Префикс (незадължително)', + 'auto_incrementing_help' => 'Първо включете автоматично генериране на инвентарни номера, за да включите тази опция.', + 'backups' => 'Архивиране', 'barcode_type' => 'Тип на баркод', 'barcode_settings' => 'Настройки на баркод', - 'custom_css' => 'Custom CSS', - 'custom_css_help' => 'Enter any custom CSS overrides you would like to use. Do not include the <style></style> tags.', + 'custom_css' => 'Потребителски CSS', + 'custom_css_help' => 'Включете вашите CSS правила тук. Не използвайте <style></style> тагове.', 'default_currency' => 'Валута по подразбиране', 'default_eula_text' => 'EULA по подразбиране', - 'default_eula_help_text' => 'You can also associate custom EULAs to specific asset categories.', + 'default_eula_help_text' => 'Можете да асоциирате специфична EULA към всяка избрана категория.', 'display_asset_name' => 'Визуализиране на актив', 'display_checkout_date' => 'Визуализиране на дата на изписване', 'display_eol' => 'Визуализиране на EOL в таблиците', 'display_qr' => 'Визуализиране на QR кодове', 'eula_settings' => 'Настройки на EULA', - 'eula_markdown' => 'This EULA allows Github flavored markdown.', + 'eula_markdown' => 'Съдържанието на EULA може да бъде форматирано с Github flavored markdown.', 'general_settings' => 'Общи настройки', - 'header_color' => 'Header Color', - 'info' => 'These settings let you customize certain aspects of your installation.', + 'generate_backup' => 'Generate Backup', + 'header_color' => 'Цвят на хедъра', + 'info' => 'Тези настройки позволяват да конфигурирате различни аспекти на Вашата инсталация.', 'laravel' => 'Версия на Laravel', - 'load_remote' => 'This Snipe-IT install can load scripts from the outside world.', + 'load_remote' => 'Тази Snipe-IT инсталация може да зарежда и изпълнява външни скриптове.', 'logo' => 'Лого', - 'optional' => 'optional', - 'per_page' => 'Results Per Page', + 'optional' => 'незадължително', + 'per_page' => 'Резултати на страница', 'php' => 'PHP версия', - 'php_gd_info' => 'You must install php-gd to display QR codes, see install instructions.', - 'php_gd_warning' => 'PHP Image Processing and GD plugin is NOT installed.', - 'qr_help' => 'Enable QR Codes first to set this', + 'php_gd_info' => 'Необходимо е да инсталирате php-gd, за да визуализирате QR кодове. Моля прегледайте инструкцията за инсталация.', + 'php_gd_warning' => 'php-gd НЕ е инсталиран.', + 'qr_help' => 'Първо включете QR кодовете, за да извършите тези настройки.', 'qr_text' => 'Съдържание на QR код', 'setting' => 'Настройка', 'settings' => 'Настройки', - 'site_name' => 'Site Name', - 'slack_botname' => 'Slack Botname', - 'slack_channel' => 'Slack Channel', + 'site_name' => 'Име на системата', + 'slack_botname' => 'Име на Slack bot', + 'slack_channel' => 'Slack канал', 'slack_endpoint' => 'Slack Endpoint', - 'slack_integration' => 'Slack Settings', - 'slack_integration_help' => 'Slack integration is optional, however the endpoint and channel are required if you wish to use it. To configure Slack integration, you must first create an incoming webhook on your Slack account.', - 'snipe_version' => 'Snipe-IT version', - 'system' => 'System Information', + 'slack_integration' => 'Slack настройки', + 'slack_integration_help' => 'Интеграцията със Slack е незадължителна. Ако желаете да я използвате е необходимо да настроите endpoint и канал. За да конфигурирате Slack интеграцията, първо създайте входящ webhook във Вашия Slack акаунт.', + 'snipe_version' => 'Snipe-IT версия', + 'system' => 'Информация за системата', 'update' => 'Обновяване на настройките', 'value' => 'Стойност', ); diff --git a/app/lang/bg/admin/settings/message.php b/app/lang/bg/admin/settings/message.php index 693813ca0d..6b944f44ca 100755 --- a/app/lang/bg/admin/settings/message.php +++ b/app/lang/bg/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'An error has occurred while updating. ', - 'success' => 'Settings updated successfully.' + 'error' => 'Възникна грешка по време на актуализацията. ', + 'success' => 'Настройките са актуализирани успешно.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/bg/admin/statuslabels/message.php b/app/lang/bg/admin/statuslabels/message.php index 98280082ef..5367f04f9a 100755 --- a/app/lang/bg/admin/statuslabels/message.php +++ b/app/lang/bg/admin/statuslabels/message.php @@ -2,24 +2,24 @@ return array( - 'does_not_exist' => 'Location does not exist.', - 'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', + 'does_not_exist' => 'Местоположението не съществува.', + 'assoc_users' => 'Местоположението е свързано с поне един потребител и не може да бъде изтрито. Моля, актуализирайте потребителите, така че да не са свързани с това местоположение и опитайте отново. ', 'create' => array( - 'error' => 'Location was not created, please try again.', - 'success' => 'Location created successfully.' + 'error' => 'Местоположението не беше създадено. Моля опитайте отново.', + 'success' => 'Местоположението създадено успешно.' ), 'update' => array( - 'error' => 'Location was not updated, please try again', - 'success' => 'Location updated successfully.' + 'error' => 'Местоположението не беше обновено. Моля опитайте отново.', + 'success' => 'Местоположението обновено успешно.' ), 'delete' => array( - 'confirm' => 'Are you sure you wish to delete this status label?', - 'error' => 'There was an issue deleting the location. Please try again.', - 'success' => 'The location was deleted successfully.' + 'confirm' => 'Сигурни ли сте, че желаете изтриване на този статус етикет?', + 'error' => 'Проблем при изтриване на местоположението. Моля опитайте отново.', + 'success' => 'Местоположението изтрито успешно.' ) ); diff --git a/app/lang/bg/admin/statuslabels/table.php b/app/lang/bg/admin/statuslabels/table.php index dd21781115..609afb9231 100755 --- a/app/lang/bg/admin/statuslabels/table.php +++ b/app/lang/bg/admin/statuslabels/table.php @@ -1,15 +1,15 @@ 'About Status Labels', - 'archived' => 'Archived', - 'create' => 'Create Status Label', - 'deployable' => 'Deployable', - 'info' => 'Status labels are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for deployable, pending and archived assets.', - 'name' => 'Status Name', - 'pending' => 'Pending', - 'status_type' => 'Status Type', - 'title' => 'Status Labels', - 'undeployable' => 'Undeployable', - 'update' => 'Update Status Label', + 'about' => 'Относно статус етикетите', + 'archived' => 'Архивирани', + 'create' => 'Създаване на статус етикет', + 'deployable' => 'Може да бъде предоставен', + 'info' => 'Статусите се използват за описване на различните състояния на Вашите активи. Например, това са Предаден за ремонт, Изгубен/откраднат и др. Можете да създавате нови статуси за активите, които могат да бъдат предоставяни, очакващи набавяне и архивирани.', + 'name' => 'Статус', + 'pending' => 'Изчакване', + 'status_type' => 'Тип на статуса', + 'title' => 'Заглавия на статуси', + 'undeployable' => 'Не може да бъде предоставян', + 'update' => 'Обновяване на статус', ); diff --git a/app/lang/bg/admin/suppliers/message.php b/app/lang/bg/admin/suppliers/message.php index df4bc41af3..28d75e9d48 100755 --- a/app/lang/bg/admin/suppliers/message.php +++ b/app/lang/bg/admin/suppliers/message.php @@ -2,23 +2,23 @@ return array( - 'does_not_exist' => 'Supplier does not exist.', - 'assoc_users' => 'This supplier is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this supplier and try again. ', + 'does_not_exist' => 'Несъществуващ доставчик.', + 'assoc_users' => 'Този доставчик е асоцииран с поне един от моделите и не може да бъде изтрит. Моля, променете връзките на моделите по отношение на този доставчик и опитайте отново. ', 'create' => array( - 'error' => 'Supplier was not created, please try again.', - 'success' => 'Supplier created successfully.' + 'error' => 'Доставчикът не беше създаден. Моля, опитайте отново.', + 'success' => 'Доставчикът е създаден.' ), 'update' => array( - 'error' => 'Supplier was not updated, please try again', - 'success' => 'Supplier updated successfully.' + 'error' => 'Достъвчикът не беше обновен. Моля, опитайте отново', + 'success' => 'Доставчикът е обновен.' ), 'delete' => array( - 'confirm' => 'Are you sure you wish to delete this supplier?', - 'error' => 'There was an issue deleting the supplier. Please try again.', - 'success' => 'Supplier was deleted successfully.' + 'confirm' => 'Сигурни ли сте, че искате да изтриете този доставчик?', + 'error' => 'Възникна проблем при изтриване на доставчика. Моля, опитайте отново.', + 'success' => 'Доставчикът е изтрит.' ) ); diff --git a/app/lang/bg/admin/suppliers/table.php b/app/lang/bg/admin/suppliers/table.php index 88adfc692b..dbf16f4e36 100755 --- a/app/lang/bg/admin/suppliers/table.php +++ b/app/lang/bg/admin/suppliers/table.php @@ -1,25 +1,25 @@ 'Supplier Address', - 'assets' => 'Assets', - 'city' => 'City', - 'contact' => 'Contact Name', - 'country' => 'Country', - 'create' => 'Create Supplier', + 'address' => 'Адрес на доставчика', + 'assets' => 'Активи', + 'city' => 'Град', + 'contact' => 'Лице за връзка', + 'country' => 'Държава', + 'create' => 'Създаване на доставчик', 'email' => 'Email', - 'fax' => 'Fax', + 'fax' => 'Факс', 'id' => 'ID', - 'licenses' => 'Licenses', - 'name' => 'Supplier Name', - 'notes' => 'Notes', - 'phone' => 'Phone', - 'state' => 'State', - 'suppliers' => 'Suppliers', - 'update' => 'Update Supplier', - 'url' => 'URL', - 'view' => 'View Supplier', - 'view_assets_for' => 'View Assets for', - 'zip' => 'Postal Code', + 'licenses' => 'Лицензи', + 'name' => 'Доставчик', + 'notes' => 'Бележки', + 'phone' => 'Телефон', + 'state' => 'Област', + 'suppliers' => 'Доставчици', + 'update' => 'Обновяване на доставчик', + 'url' => 'URL адрес', + 'view' => 'Преглед на доставчик', + 'view_assets_for' => 'Преглед на активите за', + 'zip' => 'Пощенски код', ); diff --git a/app/lang/bg/admin/users/message.php b/app/lang/bg/admin/users/message.php index e37d7301ee..f0e533f85b 100755 --- a/app/lang/bg/admin/users/message.php +++ b/app/lang/bg/admin/users/message.php @@ -2,37 +2,37 @@ return array( - 'accepted' => 'You have successfully accepted this asset.', - 'declined' => 'You have successfully declined this asset.', - 'user_exists' => 'User already exists!', - 'user_not_found' => 'User [:id] does not exist.', - 'user_login_required' => 'The login field is required', - 'user_password_required' => 'The password is required.', - 'insufficient_permissions' => 'Insufficient Permissions.', - 'user_deleted_warning' => 'This user has been deleted. You will have to restore this user to edit them or assign them new assets.', - 'ldap_not_configured' => 'LDAP integration has not been configured for this installation.', + 'accepted' => 'Активът беше приет.', + 'declined' => 'Активът беше отказан.', + 'user_exists' => 'Потребителят вече съществува!', + 'user_not_found' => 'Потребител [:id] не съществува.', + 'user_login_required' => 'Полето за вход е задължително', + 'user_password_required' => 'Паролата е задължителна.', + 'insufficient_permissions' => 'Нямате необходимите права.', + 'user_deleted_warning' => 'Този потребител е изтрит. За да редактирате данните за него или да му зададете актив, трябва първо да възстановите потребителя.', + 'ldap_not_configured' => 'Интеграцията с LDAP не е конфигурирана за тази инсталация.', 'success' => array( - 'create' => 'User was successfully created.', - 'update' => 'User was successfully updated.', - 'delete' => 'User was successfully deleted.', + 'create' => 'Потребителят е създаден.', + 'update' => 'Потребителят е обновен.', + 'delete' => 'Потребителят е изтрит.', 'ban' => 'User was successfully banned.', 'unban' => 'User was successfully unbanned.', 'suspend' => 'User was successfully suspended.', 'unsuspend' => 'User was successfully unsuspended.', - 'restored' => 'User was successfully restored.', + 'restored' => 'Потребителят е възстановен.', 'import' => 'Users imported successfully.', ), 'error' => array( - 'create' => 'There was an issue creating the user. Please try again.', - 'update' => 'There was an issue updating the user. Please try again.', - 'delete' => 'There was an issue deleting the user. Please try again.', + 'create' => 'Възникна проблем при създаването на този потребител. Моля, опитайте отново.', + 'update' => 'Възникна проблем при обновяването на този потребител. Моля, опитайте отново.', + 'delete' => 'Възникна проблем при изтриването на този потребител. Моля, опитайте отново.', 'unsuspend' => 'There was an issue unsuspending the user. Please try again.', 'import' => 'There was an issue importing users. Please try again.', - 'asset_already_accepted' => 'This asset has already been accepted.', - 'accept_or_decline' => 'You must either accept or decline this asset.', + 'asset_already_accepted' => 'Този актив е вече приет.', + 'accept_or_decline' => 'Трябва да приемете или да откажете този актив.', 'ldap_could_not_connect' => 'Could not connect to the LDAP server. Please check your LDAP server configuration in the LDAP config file.
Error from LDAP Server:', 'ldap_could_not_bind' => 'Could not bind to the LDAP server. Please check your LDAP server configuration in the LDAP config file.
Error from LDAP Server: ', 'ldap_could_not_search' => 'Could not search the LDAP server. Please check your LDAP server configuration in the LDAP config file.
Error from LDAP Server:', @@ -40,8 +40,8 @@ return array( ), 'deletefile' => array( - 'error' => 'File not deleted. Please try again.', - 'success' => 'File successfully deleted.', + 'error' => 'Файлът не е изтрит. Моля, опитайте отново.', + 'success' => 'Файлът е изтрит.', ), 'upload' => array( diff --git a/app/lang/bg/admin/users/table.php b/app/lang/bg/admin/users/table.php index 8c9b40a454..8ee5d57dd8 100755 --- a/app/lang/bg/admin/users/table.php +++ b/app/lang/bg/admin/users/table.php @@ -2,35 +2,35 @@ return array( - 'activated' => 'Active', - 'allow' => 'Allow', - 'checkedout' => 'Assets', - 'created_at' => 'Created', - 'createuser' => 'Create User', - 'deny' => 'Deny', + 'activated' => 'Активен', + 'allow' => 'Разрешаване', + 'checkedout' => 'Активи', + 'created_at' => 'Създаден', + 'createuser' => 'Нов потребител', + 'deny' => 'Отказ', 'email' => 'Email', - 'employee_num' => 'Employee No.', - 'first_name' => 'First Name', + 'employee_num' => 'Номер на служител', + 'first_name' => 'Собствено име', 'groupnotes' => 'Select a group to assign to the user, remember that a user takes on the permissions of the group they are assigned.', - 'id' => 'Id', - 'inherit' => 'Inherit', - 'job' => 'Job Title', - 'last_login' => 'Last Login', - 'last_name' => 'Last Name', - 'location' => 'Location', - 'lock_passwords' => 'Login details cannot be changed on this installation.', - 'manager' => 'Manager', - 'name' => 'Name', - 'notes' => 'Notes', - 'password_confirm' => 'Confirm Password', - 'password' => 'Password', - 'phone' => 'Phone', + 'id' => 'ID', + 'inherit' => 'Наследяване', + 'job' => 'Длъжност', + 'last_login' => 'Последен вход', + 'last_name' => 'Фамилия', + 'location' => 'Местоположение', + 'lock_passwords' => 'Настройките за вход не могат да бъдат променяни в текущата инсталация.', + 'manager' => 'Ръководител', + 'name' => 'Име', + 'notes' => 'Бележки', + 'password_confirm' => 'Потвърждение на паролата', + 'password' => 'Парола', + 'phone' => 'Телефон', 'show_current' => 'Show Current Users', 'show_deleted' => 'Show Deleted Users', - 'title' => 'Title', - 'updateuser' => 'Update User', - 'username' => 'Username', - 'username_note' => '(This is used for Active Directory binding only, not for login.)', - 'cloneuser' => 'Clone User', - 'viewusers' => 'View Users', + 'title' => 'Титла', + 'updateuser' => 'Обновяване на потребител', + 'username' => 'Потребителско име', + 'username_note' => '(Използва се за достъп до Active Directory, а не за вход.)', + 'cloneuser' => 'Копиране на потребител', + 'viewusers' => 'Преглед на потребителите', ); diff --git a/app/lang/bg/auth/message.php b/app/lang/bg/auth/message.php index 31bafb55ce..0faa46ed07 100755 --- a/app/lang/bg/auth/message.php +++ b/app/lang/bg/auth/message.php @@ -2,35 +2,35 @@ return array( - 'account_already_exists' => 'An account with the this email already exists.', - 'account_not_found' => 'The username or password is incorrect.', - 'account_not_activated' => 'This user account is not activated.', - 'account_suspended' => 'This user account is suspended.', - 'account_banned' => 'This user account is banned.', + 'account_already_exists' => 'Потребител с този email вече е регистриран.', + 'account_not_found' => 'Невалиден потребител или парола.', + 'account_not_activated' => 'Потребителят все още не е активиран.', + 'account_suspended' => 'Потребителят е временно спрян.', + 'account_banned' => 'Потребителят е неактивен.', 'signin' => array( - 'error' => 'There was a problem while trying to log you in, please try again.', - 'success' => 'You have successfully logged in.', + 'error' => 'Проблем при входа в системата. Моля опитайте отново.', + 'success' => 'Успешен вход в системата.', ), 'signup' => array( - 'error' => 'There was a problem while trying to create your account, please try again.', - 'success' => 'Account sucessfully created.', + 'error' => 'Проблем при създаването на потребителя. Моля опитайте отново.', + 'success' => 'Потребителят създаден успешно.', ), 'forgot-password' => array( - 'error' => 'There was a problem while trying to get a reset password code, please try again.', - 'success' => 'Password recovery email successfully sent.', + 'error' => 'Проблем при извличането на код за възстановяване на паролата. Моля опитайте отново.', + 'success' => 'Връзка за възстановяване на паролата беше изпратена на електронната поща.', ), 'forgot-password-confirm' => array( - 'error' => 'There was a problem while trying to reset your password, please try again.', - 'success' => 'Your password has been successfully reset.', + 'error' => 'Проблем при промяна на паролата. Моля опитайте отново.', + 'success' => 'Паролата променена успешно.', ), 'activate' => array( - 'error' => 'There was a problem while trying to activate your account, please try again.', - 'success' => 'Your account has been successfully activated.', + 'error' => 'Проблем при активиране на потребителя. Моля опитайте отново.', + 'success' => 'Потребителят активиран успешно.', ), ); diff --git a/app/lang/bg/general.php b/app/lang/bg/general.php index e1fc1fe930..5ef88485c2 100755 --- a/app/lang/bg/general.php +++ b/app/lang/bg/general.php @@ -4,53 +4,53 @@ 'accessories' => 'Accessories', 'accessory' => 'Accessory', 'accessory_report' => 'Accessory Report', - 'action' => 'Action', + 'action' => 'Действие', 'activity_report' => 'Activity Report', 'address' => 'Address', 'admin' => 'Admin', 'all_assets' => 'All Assets', - 'all' => 'All', + 'all' => 'Всички', 'archived' => 'Archived', 'asset_models' => 'Asset Models', - 'asset' => 'Asset', + 'asset' => 'Актив', 'asset_report' => 'Asset Report', 'asset_tag' => 'Asset Tag', 'assets_available' => 'assets available', - 'assets' => 'Assets', - 'avatar_delete' => 'Delete Avatar', - 'avatar_upload' => 'Upload Avatar', - 'back' => 'Back', + 'assets' => 'Активи', + 'avatar_delete' => 'Изтриване на аватар', + 'avatar_upload' => 'Качване на аватар', + 'back' => 'Назад', 'bad_data' => 'Nothing found. Maybe bad data?', - 'cancel' => 'Cancel', - 'categories' => 'Categories', - 'category' => 'Category', - 'changeemail' => 'Change Email Address', - 'changepassword' => 'Change Password', - 'checkin' => 'Checkin', - 'checkin_from' => 'Checkin from', - 'checkout' => 'Checkout', - 'city' => 'City', - 'consumable' => 'Consumable', - 'consumables' => 'Consumables', - 'country' => 'Country', - 'create' => 'Create New', + 'cancel' => 'Отказ', + 'categories' => 'Категории', + 'category' => 'Категория', + 'changeemail' => 'Промяна на email адрес', + 'changepassword' => 'Смяна на паролата', + 'checkin' => 'Вписване', + 'checkin_from' => 'Форма за вписване', + 'checkout' => 'Изписване', + 'city' => 'Град', + 'consumable' => 'Консуматив', + 'consumables' => 'Консумативи', + 'country' => 'Държава', + 'create' => 'Създаване на нов', 'created_asset' => 'created asset', - 'created_at' => 'Created at', + 'created_at' => 'Създаден на', 'currency' => '$', // this is deprecated 'current' => 'Current', 'custom_report' => 'Custom Asset Report', 'dashboard' => 'Dashboard', - 'date' => 'Date', - 'delete' => 'Delete', - 'deleted' => 'Deleted', + 'date' => 'Дата', + 'delete' => 'Изтриване', + 'deleted' => 'Изтрито', 'deployed' => 'Deployed', - 'depreciation_report' => 'Depreciation Report', - 'download' => 'Download', - 'depreciation' => 'Depreciation', - 'editprofile' => 'Edit Your Profile', + 'depreciation_report' => 'Справка за амортизации', + 'download' => 'Изтегляне', + 'depreciation' => 'Амортизация', + 'editprofile' => 'Редакция на профила', 'eol' => 'EOL', 'first' => 'First', - 'first_name' => 'First Name', + 'first_name' => 'Собствено име', 'file_name' => 'File', 'file_uploads' => 'File Uploads', 'generate' => 'Generate', @@ -82,19 +82,19 @@ 'manufacturers' => 'Manufacturers', 'model_no' => 'Model No.', 'months' => 'months', - 'moreinfo' => 'More Info', - 'name' => 'Name', - 'next' => 'Next', - 'no_depreciation' => 'No Depreciation', - 'no_results' => 'No Results.', - 'no' => 'No', - 'notes' => 'Notes', + 'moreinfo' => 'Повече информация', + 'name' => 'Име', + 'next' => 'Следващ', + 'no_depreciation' => 'Без амортизация', + 'no_results' => 'Няма резултат.', + 'no' => 'Не', + 'notes' => 'Бележки', 'page_menu' => 'Showing _MENU_ items', 'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items', 'pending' => 'Pending', 'people' => 'People', 'per_page' => 'Results Per Page', - 'previous' => 'Previous', + 'previous' => 'Предишен', 'processing' => 'Processing', 'profile' => 'Your profile', 'qty' => 'QTY', @@ -103,7 +103,7 @@ 'recent_activity' => 'Recent Activity', 'reports' => 'Reports', 'requested' => 'Requested', - 'save' => 'Save', + 'save' => 'Запис', 'select' => 'Select', 'search' => 'Search', 'select_depreciation' => 'Select a Depreciation Type', diff --git a/app/lang/bg/pagination.php b/app/lang/bg/pagination.php index b573b51e91..d8d1c2028f 100755 --- a/app/lang/bg/pagination.php +++ b/app/lang/bg/pagination.php @@ -13,8 +13,8 @@ return array( | */ - 'previous' => '« Previous', + 'previous' => '« Предишна', - 'next' => 'Next »', + 'next' => 'Следваща »', ); diff --git a/app/lang/bg/reminders.php b/app/lang/bg/reminders.php index e7a476e3a2..cff4681664 100755 --- a/app/lang/bg/reminders.php +++ b/app/lang/bg/reminders.php @@ -15,7 +15,7 @@ return array( "password" => "Passwords must be six characters and match the confirmation.", - "user" => "Username or email address is incorrect", + "user" => "Грешно потребителско име или имейл адрес", "token" => "This password reset token is invalid.", diff --git a/app/lang/bg/validation.php b/app/lang/bg/validation.php index 5e48afdd31..4fdae4eca8 100755 --- a/app/lang/bg/validation.php +++ b/app/lang/bg/validation.php @@ -50,9 +50,9 @@ return array( ), "not_in" => "The selected :attribute is invalid.", "numeric" => "The :attribute must be a number.", - "regex" => "The :attribute format is invalid.", - "required" => "The :attribute field is required.", - "required_if" => "The :attribute field is required when :other is :value.", + "regex" => "Форматът на :attribute е невалиден.", + "required" => "Полето :attribute е задължително.", + "required_if" => "Полето :attribute е задължително, когато :other е :value.", "required_with" => "The :attribute field is required when :values is present.", "required_without" => "The :attribute field is required when :values is not present.", "same" => "The :attribute and :other must match.", diff --git a/app/lang/cs/admin/settings/general.php b/app/lang/cs/admin/settings/general.php index 8dbf56f6c5..5e1c4a9bb2 100755 --- a/app/lang/cs/admin/settings/general.php +++ b/app/lang/cs/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'Nastavení EULA', 'eula_markdown' => 'Tato EULA umožňuje Github markdown.', 'general_settings' => 'Obecné nastavení', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Barva záhlaví', 'info' => 'Tato nastavení umožňují zvolit určité prvky instalace.', 'laravel' => 'Verze Laravel', diff --git a/app/lang/cs/admin/settings/message.php b/app/lang/cs/admin/settings/message.php index 91f5527b41..311f6f2eaf 100755 --- a/app/lang/cs/admin/settings/message.php +++ b/app/lang/cs/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'Vyskytla se chyba při aktualizaci. ', - 'success' => 'Nastavení úspěšně uloženo.' + 'error' => 'Vyskytla se chyba při aktualizaci. ', + 'success' => 'Nastavení úspěšně uloženo.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/da/admin/settings/general.php b/app/lang/da/admin/settings/general.php index 80d152d06e..ff19aca7e7 100755 --- a/app/lang/da/admin/settings/general.php +++ b/app/lang/da/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'These settings let you customize certain aspects of your installation.', 'laravel' => 'Laravel Version', diff --git a/app/lang/da/admin/settings/message.php b/app/lang/da/admin/settings/message.php index 693813ca0d..a95761510d 100755 --- a/app/lang/da/admin/settings/message.php +++ b/app/lang/da/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'An error has occurred while updating. ', - 'success' => 'Settings updated successfully.' + 'error' => 'An error has occurred while updating. ', + 'success' => 'Settings updated successfully.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/de/admin/accessories/table.php b/app/lang/de/admin/accessories/table.php index 5d4fc904f3..af01edf6b1 100755 --- a/app/lang/de/admin/accessories/table.php +++ b/app/lang/de/admin/accessories/table.php @@ -1,7 +1,7 @@ 'Download CSV', + 'dl_csv' => 'CSV Herunterladen', 'eula_text' => 'EULA', 'id' => 'ID', 'require_acceptance' => 'Zustimmung', diff --git a/app/lang/de/admin/settings/general.php b/app/lang/de/admin/settings/general.php index e611ef266c..f9b3ad0e55 100755 --- a/app/lang/de/admin/settings/general.php +++ b/app/lang/de/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Einstellungen', 'eula_markdown' => 'Diese EULA erlaubt Github Flavored Markdown.', 'general_settings' => 'Generelle Einstellungen', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Farbe der Kopfzeile', 'info' => 'Mit diesen Einstellungen können Sie verschieden Aspekte Ihrer Installation bearbeiten.', 'laravel' => 'Laravel Version', diff --git a/app/lang/de/admin/settings/message.php b/app/lang/de/admin/settings/message.php index 69b1a64e08..4c7bc6f082 100755 --- a/app/lang/de/admin/settings/message.php +++ b/app/lang/de/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'Während dem Aktualisieren ist ein Fehler aufgetreten.', - 'success' => 'Die Einstellungen wurden erfolgreich aktualisiert.' + 'error' => 'Während dem Aktualisieren ist ein Fehler aufgetreten.', + 'success' => 'Die Einstellungen wurden erfolgreich aktualisiert.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/en-GB/admin/settings/general.php b/app/lang/en-GB/admin/settings/general.php index 80d152d06e..ff19aca7e7 100755 --- a/app/lang/en-GB/admin/settings/general.php +++ b/app/lang/en-GB/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'These settings let you customize certain aspects of your installation.', 'laravel' => 'Laravel Version', diff --git a/app/lang/en-GB/admin/settings/message.php b/app/lang/en-GB/admin/settings/message.php index 693813ca0d..a95761510d 100755 --- a/app/lang/en-GB/admin/settings/message.php +++ b/app/lang/en-GB/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'An error has occurred while updating. ', - 'success' => 'Settings updated successfully.' + 'error' => 'An error has occurred while updating. ', + 'success' => 'Settings updated successfully.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/en-ID/admin/settings/general.php b/app/lang/en-ID/admin/settings/general.php index 80d152d06e..ff19aca7e7 100755 --- a/app/lang/en-ID/admin/settings/general.php +++ b/app/lang/en-ID/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'These settings let you customize certain aspects of your installation.', 'laravel' => 'Laravel Version', diff --git a/app/lang/en-ID/admin/settings/message.php b/app/lang/en-ID/admin/settings/message.php index 693813ca0d..a95761510d 100755 --- a/app/lang/en-ID/admin/settings/message.php +++ b/app/lang/en-ID/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'An error has occurred while updating. ', - 'success' => 'Settings updated successfully.' + 'error' => 'An error has occurred while updating. ', + 'success' => 'Settings updated successfully.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/en/admin/accessories/message.php b/app/lang/en/admin/accessories/message.php index 12462bf8d8..62f179c5a1 100755 --- a/app/lang/en/admin/accessories/message.php +++ b/app/lang/en/admin/accessories/message.php @@ -2,25 +2,25 @@ return array( - 'does_not_exist' => 'Accessory does not exist.', + 'does_not_exist' => 'Category does not exist.', 'assoc_users' => 'This accessory currently has :count items checked out to users. Please check in the accessories and and try again. ', 'create' => array( - 'error' => 'Accessory was not created, please try again.', - 'success' => 'Accessory created successfully.' + 'error' => 'Category was not created, please try again.', + 'success' => 'Category created successfully.' ), 'update' => array( - 'error' => 'Accessory was not updated, please try again', - 'success' => 'Accessory updated successfully.' + 'error' => 'Category was not updated, please try again', + 'success' => 'Category updated successfully.' ), 'delete' => array( - 'confirm' => 'Are you sure you wish to delete this Accessory?', - 'error' => 'There was an issue deleting the Accessory. Please try again.', - 'success' => 'The Accessory was deleted successfully.' + 'confirm' => 'Are you sure you wish to delete this category?', + 'error' => 'There was an issue deleting the category. Please try again.', + 'success' => 'The category was deleted successfully.' ), - + 'checkout' => array( 'error' => 'Accessory was not checked out, please try again', 'success' => 'Accessory checked out successfully.', diff --git a/app/lang/en/admin/hardware/message.php b/app/lang/en/admin/hardware/message.php index c043d818d7..03e9473cbf 100755 --- a/app/lang/en/admin/hardware/message.php +++ b/app/lang/en/admin/hardware/message.php @@ -7,7 +7,6 @@ return array( 'does_not_exist' => 'Asset does not exist.', 'does_not_exist_or_not_requestable' => 'Nice try. That asset does not exist or is not requestable.', 'assoc_users' => 'This asset is currently checked out to a user and cannot be deleted. Please check the asset in first, and then try deleting again. ', - 'already_checked_in' => 'Could not checkin asset because it is not checked out to anyone.', 'create' => array( 'error' => 'Asset was not created, please try again. :(', diff --git a/app/lang/en/admin/settings/general.php b/app/lang/en/admin/settings/general.php index 80d152d06e..ff19aca7e7 100755 --- a/app/lang/en/admin/settings/general.php +++ b/app/lang/en/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'These settings let you customize certain aspects of your installation.', 'laravel' => 'Laravel Version', diff --git a/app/lang/en/admin/settings/message.php b/app/lang/en/admin/settings/message.php index 693813ca0d..a95761510d 100755 --- a/app/lang/en/admin/settings/message.php +++ b/app/lang/en/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'An error has occurred while updating. ', - 'success' => 'Settings updated successfully.' + 'error' => 'An error has occurred while updating. ', + 'success' => 'Settings updated successfully.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/es-CO/admin/settings/general.php b/app/lang/es-CO/admin/settings/general.php index 80d152d06e..ff19aca7e7 100755 --- a/app/lang/es-CO/admin/settings/general.php +++ b/app/lang/es-CO/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'These settings let you customize certain aspects of your installation.', 'laravel' => 'Laravel Version', diff --git a/app/lang/es-CO/admin/settings/message.php b/app/lang/es-CO/admin/settings/message.php index 693813ca0d..a95761510d 100755 --- a/app/lang/es-CO/admin/settings/message.php +++ b/app/lang/es-CO/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'An error has occurred while updating. ', - 'success' => 'Settings updated successfully.' + 'error' => 'An error has occurred while updating. ', + 'success' => 'Settings updated successfully.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/es-ES/admin/settings/general.php b/app/lang/es-ES/admin/settings/general.php index 6faba3198f..a48a8d748f 100755 --- a/app/lang/es-ES/admin/settings/general.php +++ b/app/lang/es-ES/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'Configuración EULA', 'eula_markdown' => 'Este EULS permite makrdown estilo Github.', 'general_settings' => 'Configuración General', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Color de encabezado', 'info' => 'Estos parámetros permirten personalizar ciertos aspectos de la aplicación.', 'laravel' => 'Versión de Laravel', diff --git a/app/lang/es-ES/admin/settings/message.php b/app/lang/es-ES/admin/settings/message.php index c7d3269e83..ebb6c2dee4 100755 --- a/app/lang/es-ES/admin/settings/message.php +++ b/app/lang/es-ES/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'Ha ocurrido un error al actualizar. ', - 'success' => 'Parámetros actualizados correctamente.' + 'error' => 'Ha ocurrido un error al actualizar. ', + 'success' => 'Parámetros actualizados correctamente.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/fi/admin/settings/general.php b/app/lang/fi/admin/settings/general.php index fb99bbd9c3..954e22fee3 100755 --- a/app/lang/fi/admin/settings/general.php +++ b/app/lang/fi/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'Näiden asetusten avulla voit mukauttaa tiettyjä toimintoja.', 'laravel' => 'Versio Laravel', diff --git a/app/lang/fi/admin/settings/message.php b/app/lang/fi/admin/settings/message.php index 609997b2d9..c4d1640704 100755 --- a/app/lang/fi/admin/settings/message.php +++ b/app/lang/fi/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'Päivityksessä tapahtui virhe. ', - 'success' => 'Asetukset päivitettiin onnistuneesti.' + 'error' => 'Päivityksessä tapahtui virhe. ', + 'success' => 'Asetukset päivitettiin onnistuneesti.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/fr/admin/settings/general.php b/app/lang/fr/admin/settings/general.php index f33e9d247e..41c5bd4cbf 100755 --- a/app/lang/fr/admin/settings/general.php +++ b/app/lang/fr/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'Ces paramètres vous permettent de personnaliser certains aspects de votre installation.', 'laravel' => 'Version de Laravel', diff --git a/app/lang/fr/admin/settings/message.php b/app/lang/fr/admin/settings/message.php index 27543337b3..1a741707ec 100755 --- a/app/lang/fr/admin/settings/message.php +++ b/app/lang/fr/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'Une erreur a eu lieu pendant la mise à jour. ', - 'success' => 'Les paramètres ont été mis à jour avec succès.' + 'error' => 'Une erreur a eu lieu pendant la mise à jour. ', + 'success' => 'Les paramètres ont été mis à jour avec succès.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/hr/admin/settings/general.php b/app/lang/hr/admin/settings/general.php index 80d152d06e..ff19aca7e7 100755 --- a/app/lang/hr/admin/settings/general.php +++ b/app/lang/hr/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'These settings let you customize certain aspects of your installation.', 'laravel' => 'Laravel Version', diff --git a/app/lang/hr/admin/settings/message.php b/app/lang/hr/admin/settings/message.php index 693813ca0d..a95761510d 100755 --- a/app/lang/hr/admin/settings/message.php +++ b/app/lang/hr/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'An error has occurred while updating. ', - 'success' => 'Settings updated successfully.' + 'error' => 'An error has occurred while updating. ', + 'success' => 'Settings updated successfully.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/hu/admin/settings/general.php b/app/lang/hu/admin/settings/general.php index 80d152d06e..ff19aca7e7 100755 --- a/app/lang/hu/admin/settings/general.php +++ b/app/lang/hu/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'These settings let you customize certain aspects of your installation.', 'laravel' => 'Laravel Version', diff --git a/app/lang/hu/admin/settings/message.php b/app/lang/hu/admin/settings/message.php index 693813ca0d..a95761510d 100755 --- a/app/lang/hu/admin/settings/message.php +++ b/app/lang/hu/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'An error has occurred while updating. ', - 'success' => 'Settings updated successfully.' + 'error' => 'An error has occurred while updating. ', + 'success' => 'Settings updated successfully.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/it/admin/settings/general.php b/app/lang/it/admin/settings/general.php index 3c7550ee6d..7484a1844e 100755 --- a/app/lang/it/admin/settings/general.php +++ b/app/lang/it/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'Impostazioni EULA', 'eula_markdown' => 'Questa EULA consente Github flavored markdown.', 'general_settings' => 'Impostazioni Generali', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Colore intestazione', 'info' => 'Queste impostazioni consentono di personalizzare alcuni aspetti della vostra installazione.', 'laravel' => 'Laravel Version', diff --git a/app/lang/it/admin/settings/message.php b/app/lang/it/admin/settings/message.php index f139d36850..e0ce216080 100755 --- a/app/lang/it/admin/settings/message.php +++ b/app/lang/it/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'Si è verificato un errore durante l\'aggiornamento. ', - 'success' => 'Impostazioni aggiornate correttamente.' + 'error' => 'Si è verificato un errore durante l\'aggiornamento. ', + 'success' => 'Impostazioni aggiornate correttamente.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/ja/admin/accessories/table.php b/app/lang/ja/admin/accessories/table.php index e46d822a76..c1697e899d 100755 --- a/app/lang/ja/admin/accessories/table.php +++ b/app/lang/ja/admin/accessories/table.php @@ -1,7 +1,7 @@ 'Download CSV', + 'dl_csv' => 'CSVダウンロード', 'eula_text' => 'EULA', 'id' => 'ID', 'require_acceptance' => '承諾', diff --git a/app/lang/ja/admin/settings/general.php b/app/lang/ja/admin/settings/general.php index 0abc626d9e..47ea14b894 100755 --- a/app/lang/ja/admin/settings/general.php +++ b/app/lang/ja/admin/settings/general.php @@ -10,8 +10,8 @@ return array( 'backups' => 'バックアップ', 'barcode_type' => 'バーコードタイプ', 'barcode_settings' => 'バーコード設定', - 'custom_css' => 'Custom CSS', - 'custom_css_help' => 'Enter any custom CSS overrides you would like to use. Do not include the <style></style> tags.', + 'custom_css' => 'カスタム CSS:', + 'custom_css_help' => '使用したいカスタムCSSを入力してください。<style></style> タグは含めないでください', 'default_currency' => '既定の通貨', 'default_eula_text' => '既定のEULA', 'default_eula_help_text' => '特殊な資産カテゴリーにカスタムEULAを関連付けられます。', @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA設定', 'eula_markdown' => 'この EULA は、Github flavored markdownで、利用可能です。', 'general_settings' => '全般設定', + 'generate_backup' => 'Generate Backup', 'header_color' => 'ヘッダーカラー', 'info' => 'これらの設定は、あなたの設備の特性に合わせてカスタマイズできます。', 'laravel' => 'Laravelバージョン', diff --git a/app/lang/ja/admin/settings/message.php b/app/lang/ja/admin/settings/message.php index f8ecfd39db..8e7a1e116a 100755 --- a/app/lang/ja/admin/settings/message.php +++ b/app/lang/ja/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => '更新時にエラーが発生しました。 ', - 'success' => '更新に成功しました。' + 'error' => '更新時にエラーが発生しました。 ', + 'success' => '更新に成功しました。' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/ja/admin/users/general.php b/app/lang/ja/admin/users/general.php index 6732166207..d7ff30f37e 100755 --- a/app/lang/ja/admin/users/general.php +++ b/app/lang/ja/admin/users/general.php @@ -10,7 +10,7 @@ return array( 'filetype_info' => '許可するファイルタイプ(png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar)', 'history_user' => ':nameの履歴', 'last_login' => '最終ログイン', - 'ldap_config_text' => 'LDAP configuration settings can be found in the app/config folder in a file called ldap.php. The selected location will be set for all imported users. You will need to have at least one location set to use this feature.', + 'ldap_config_text' => 'LDAP設定は、app/configフォルダー内のldap.phpファイルにあります。選択された場所はインポートされたユーザー全てに設定されます。この機能を利用するには、少なくとも1つの場所を設定してください。', 'ldap_text' => 'LDAPに接続し利用者を作成します。パスワードは自動生成されます。', 'software_user' => 'ソフトウェアは :name にチェックアウトしました。', 'view_user' => '利用者 :name を表示', diff --git a/app/lang/ko/admin/settings/general.php b/app/lang/ko/admin/settings/general.php index 97f9f84189..7abccd85f2 100755 --- a/app/lang/ko/admin/settings/general.php +++ b/app/lang/ko/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => '최종 사용 계약 설정', 'eula_markdown' => '이 최종 사용 계약은 GFM을 따른다.', 'general_settings' => '일반 설정', + 'generate_backup' => 'Generate Backup', 'header_color' => '머릿말 색상', 'info' => '이 설정들은 설치본의 특정 분야를 설정하는 것입니다.', 'laravel' => 'Laravel 버전', diff --git a/app/lang/ko/admin/settings/message.php b/app/lang/ko/admin/settings/message.php index a34cd219fc..e97b8edbba 100755 --- a/app/lang/ko/admin/settings/message.php +++ b/app/lang/ko/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => '갱신 중 오류가 발생했습니다. ', - 'success' => '설정이 갱신되었습니다.' + 'error' => '갱신 중 오류가 발생했습니다. ', + 'success' => '설정이 갱신되었습니다.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/lt/admin/settings/general.php b/app/lang/lt/admin/settings/general.php index 22afc019c1..fecf6f3a8f 100755 --- a/app/lang/lt/admin/settings/general.php +++ b/app/lang/lt/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA nustatymai', 'eula_markdown' => 'Šis EULA leidžia Github flavored markdown.', 'general_settings' => 'Bendrieji nustatymai', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Atraštės spalva', 'info' => 'Šie nustatymai leidžia jums pasirinkti savus diegimo nustatymus.', 'laravel' => 'Laravel versija', diff --git a/app/lang/lt/admin/settings/message.php b/app/lang/lt/admin/settings/message.php index 77754b2e95..ab4037a04b 100755 --- a/app/lang/lt/admin/settings/message.php +++ b/app/lang/lt/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'Atnaujinant iškilo nenumatyta problema. ', - 'success' => 'Nustatymai sėkmingai atnaujinti.' + 'error' => 'Atnaujinant iškilo nenumatyta problema. ', + 'success' => 'Nustatymai sėkmingai atnaujinti.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/ms/admin/settings/general.php b/app/lang/ms/admin/settings/general.php index 0100397523..2f00ec6ab7 100755 --- a/app/lang/ms/admin/settings/general.php +++ b/app/lang/ms/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'Tetapan ini membenarkan anda menyesuaikan sesetengah aspek pemasangan anda.', 'laravel' => 'Versi Laravel', diff --git a/app/lang/ms/admin/settings/message.php b/app/lang/ms/admin/settings/message.php index 2151199610..0c23e18a3e 100755 --- a/app/lang/ms/admin/settings/message.php +++ b/app/lang/ms/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'Ralat berlaku semasa kemaskini. ', - 'success' => 'Tetapan berjaya dikemaskini.' + 'error' => 'Ralat berlaku semasa kemaskini. ', + 'success' => 'Tetapan berjaya dikemaskini.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/nl/admin/consumables/message.php b/app/lang/nl/admin/consumables/message.php index 45c803c4c2..17c685eb8e 100755 --- a/app/lang/nl/admin/consumables/message.php +++ b/app/lang/nl/admin/consumables/message.php @@ -17,7 +17,7 @@ return array( 'delete' => array( 'confirm' => 'Are you sure you wish to delete this accessory?', 'error' => 'There was an issue deleting the consumable. Please try again.', - 'success' => 'The accessory was deleted successfully.' + 'success' => 'Het accessoire is succesvol verwijderd.' ), 'checkout' => array( diff --git a/app/lang/nl/admin/hardware/form.php b/app/lang/nl/admin/hardware/form.php index 0b97bde848..d499916adb 100755 --- a/app/lang/nl/admin/hardware/form.php +++ b/app/lang/nl/admin/hardware/form.php @@ -21,7 +21,7 @@ return array( 'expires' => 'Vervalt op', 'fully_depreciated' => 'Volledig afgeschreven', 'help_checkout' => 'If you wish to assign this asset immediately, select "Ready to Deploy" from the status list above. ', - 'mac_address' => 'MAC Address', + 'mac_address' => 'MAC-adres', 'manufacturer' => 'Fabrikant', 'model' => 'Model', 'months' => 'maanden', diff --git a/app/lang/nl/admin/hardware/table.php b/app/lang/nl/admin/hardware/table.php index 62dbc28ce1..866c3baa01 100755 --- a/app/lang/nl/admin/hardware/table.php +++ b/app/lang/nl/admin/hardware/table.php @@ -2,20 +2,20 @@ return array( - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Asset tag', 'asset_model' => 'Model', - 'book_value' => 'Value', - 'change' => 'In/Out', + 'book_value' => 'Waarde', + 'change' => 'In/out', 'checkout_date' => 'Checkout Date', 'checkoutto' => 'Checked Out', 'diff' => 'Diff', - 'dl_csv' => 'Download CSV', + 'dl_csv' => 'CSV downloaden', 'eol' => 'EOL', 'id' => 'ID', - 'location' => 'Location', - 'purchase_cost' => 'Cost', - 'purchase_date' => 'Purchased', - 'serial' => 'Serial', + 'location' => 'Locatie', + 'purchase_cost' => 'Kostprijs', + 'purchase_date' => 'Aangekocht', + 'serial' => 'Serienummer', 'status' => 'Status', 'title' => 'Asset ', 'days_without_acceptance' => 'Days Without Acceptance' diff --git a/app/lang/nl/admin/licenses/table.php b/app/lang/nl/admin/licenses/table.php index dfce4136cb..3b00ff1ce6 100755 --- a/app/lang/nl/admin/licenses/table.php +++ b/app/lang/nl/admin/licenses/table.php @@ -2,16 +2,16 @@ return array( - 'assigned_to' => 'Assigned To', - 'checkout' => 'In/Out', + 'assigned_to' => 'Toegewezen aan', + 'checkout' => 'In/out', 'id' => 'ID', 'license_email' => 'License Email', 'license_name' => 'Licensed To', - 'purchase_date' => 'Purchase Date', - 'purchased' => 'Purchased', + 'purchase_date' => 'Aankoopdatum', + 'purchased' => 'Aangekocht', 'seats' => 'Seats', 'hardware' => 'Hardware', - 'serial' => 'Serial', - 'title' => 'License', + 'serial' => 'Serienummer', + 'title' => 'Licentie', ); diff --git a/app/lang/nl/admin/settings/general.php b/app/lang/nl/admin/settings/general.php index 80d152d06e..ff19aca7e7 100755 --- a/app/lang/nl/admin/settings/general.php +++ b/app/lang/nl/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'These settings let you customize certain aspects of your installation.', 'laravel' => 'Laravel Version', diff --git a/app/lang/nl/admin/settings/message.php b/app/lang/nl/admin/settings/message.php index 693813ca0d..a95761510d 100755 --- a/app/lang/nl/admin/settings/message.php +++ b/app/lang/nl/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'An error has occurred while updating. ', - 'success' => 'Settings updated successfully.' + 'error' => 'An error has occurred while updating. ', + 'success' => 'Settings updated successfully.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/nl/admin/suppliers/message.php b/app/lang/nl/admin/suppliers/message.php index df4bc41af3..62bc9bd46c 100755 --- a/app/lang/nl/admin/suppliers/message.php +++ b/app/lang/nl/admin/suppliers/message.php @@ -2,23 +2,23 @@ return array( - 'does_not_exist' => 'Supplier does not exist.', + 'does_not_exist' => 'De leverancier bestaat niet.', 'assoc_users' => 'This supplier is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this supplier and try again. ', 'create' => array( 'error' => 'Supplier was not created, please try again.', - 'success' => 'Supplier created successfully.' + 'success' => 'De leverancier is succesvol aangemaakt.' ), 'update' => array( 'error' => 'Supplier was not updated, please try again', - 'success' => 'Supplier updated successfully.' + 'success' => 'De leverancier is succesvol aangemaakt.' ), 'delete' => array( - 'confirm' => 'Are you sure you wish to delete this supplier?', - 'error' => 'There was an issue deleting the supplier. Please try again.', - 'success' => 'Supplier was deleted successfully.' + 'confirm' => 'Ben je zeker dat je de leverancier wil verwijderen?', + 'error' => 'Er ging iets mis tijdens het verwijderen van de leverancier. Probeer het nog een keer.', + 'success' => 'De leverancier is succesvol verwijderd.' ) ); diff --git a/app/lang/nl/admin/users/table.php b/app/lang/nl/admin/users/table.php index 5d6179da39..05b3c414df 100755 --- a/app/lang/nl/admin/users/table.php +++ b/app/lang/nl/admin/users/table.php @@ -21,12 +21,12 @@ return array( 'lock_passwords' => 'Login details cannot be changed on this installation.', 'manager' => 'Manager', 'name' => 'Naam', - 'notes' => 'Notes', + 'notes' => 'Notities', 'password_confirm' => 'Bevestig uw wachtwoord', 'password' => 'Wachtwoord', 'phone' => 'Telefoon', - 'show_current' => 'Show Current Users', - 'show_deleted' => 'Show Deleted Users', + 'show_current' => 'Toon de huidige gebruikers', + 'show_deleted' => 'Toon de verwijderde gebruikers', 'title' => 'Titel', 'updateuser' => 'Gebruiker bijwerken', 'username' => 'Gebruikersnaam', diff --git a/app/lang/nl/auth/message.php b/app/lang/nl/auth/message.php index 7cb6d038c6..3a64fd5b8b 100755 --- a/app/lang/nl/auth/message.php +++ b/app/lang/nl/auth/message.php @@ -3,7 +3,7 @@ return array( 'account_already_exists' => 'Een account met dit e-mailadres bestaat reeds.', - 'account_not_found' => 'The username or password is incorrect.', + 'account_not_found' => 'De gebruikersnaam of het wachtwoord is niet juist.', 'account_not_activated' => 'Deze gebruikersaccount is niet actief.', 'account_suspended' => 'Deze gebruikersaccount is vergrendeld.', 'account_banned' => 'Deze gebruikersaccount is geband.', diff --git a/app/lang/nl/button.php b/app/lang/nl/button.php index 3aa50fa146..c9c063f048 100755 --- a/app/lang/nl/button.php +++ b/app/lang/nl/button.php @@ -8,7 +8,7 @@ return array( 'delete' => 'Verwijder', 'edit' => 'Bewerk', 'restore' => 'Herstel', - 'request' => 'Request', + 'request' => 'Aanvraag', 'submit' => 'Verzenden', 'upload' => 'Verstuur', diff --git a/app/lang/nl/general.php b/app/lang/nl/general.php index ed1d741d54..3a57d1cacb 100755 --- a/app/lang/nl/general.php +++ b/app/lang/nl/general.php @@ -1,16 +1,16 @@ 'Accessories', - 'accessory' => 'Accessory', + 'accessories' => 'Accessoires', + 'accessory' => 'Accessoire', 'accessory_report' => 'Accessory Report', - 'action' => 'Action', - 'activity_report' => 'Activity Report', + 'action' => 'Actie', + 'activity_report' => 'Activiteitenrapportage', 'address' => 'Adres', 'admin' => 'Beheerder', 'all_assets' => 'Alle materialen', 'all' => 'Alle', - 'archived' => 'Archived', + 'archived' => 'Gearchiveerd', 'asset_models' => 'Materiaalmodel', 'asset' => 'Materiaal', 'asset_report' => 'Materiaalrapport', @@ -22,16 +22,16 @@ 'back' => 'Terug', 'bad_data' => 'Nothing found. Maybe bad data?', 'cancel' => 'Annuleren', - 'categories' => 'Categories', - 'category' => 'Category', + 'categories' => 'Categorieën', + 'category' => 'Categorie', 'changeemail' => 'E-mailadres wijzigen', 'changepassword' => 'Wachtwoord wijzigen', 'checkin' => 'Check-in', 'checkin_from' => 'Checkin from', 'checkout' => 'Afrekenen', 'city' => 'Plaats', - 'consumable' => 'Consumable', - 'consumables' => 'Consumables', + 'consumable' => 'Verbruiksartikelen', + 'consumables' => 'Verbruiksartikelen', 'country' => 'Land', 'create' => 'Nieuwe aanmaken', 'created_asset' => 'aangemaakt materiaal', @@ -49,7 +49,7 @@ 'depreciation' => 'Afschrijving', 'editprofile' => 'Bewerk jouw profiel', 'eol' => 'EOL', - 'first' => 'First', + 'first' => 'Eerste', 'first_name' => 'Voornaam', 'file_name' => 'Bestand', 'file_uploads' => 'Bestand uploaden', @@ -60,7 +60,7 @@ 'id' => 'ID', 'image_delete' => 'Afbeelding verwijderen', 'image_upload' => 'Afbeelding uploaden', - 'import' => 'Import', + 'import' => 'Importeer', 'asset_maintenance' => 'Asset Maintenance', 'asset_maintenance_report' => 'Asset Maintenance Report', 'asset_maintenances' => 'Asset Maintenances', @@ -94,7 +94,7 @@ 'pending' => 'In afwachting', 'people' => 'Personen', 'per_page' => 'Resultaten per pagina', - 'previous' => 'Previous', + 'previous' => 'Vorige', 'processing' => 'Processing', 'profile' => 'Uw profiel', 'qty' => 'QTY', @@ -102,7 +102,7 @@ 'ready_to_deploy' => 'Klaar om ingezet te worden', 'recent_activity' => 'Recent Activity', 'reports' => 'Rapporten', - 'requested' => 'Requested', + 'requested' => 'Aangevraagd', 'save' => 'Opslaan', 'select' => 'Selecteer', 'search' => 'Zoeken', @@ -113,7 +113,7 @@ 'select_supplier' => 'Selecteer een leverancier', 'select_user' => 'Selecteer een gebruiker', 'select_date' => 'Selecteer een datum', - 'select_statuslabel' => 'Select Status', + 'select_statuslabel' => 'Selecteer de status', 'settings' => 'Instellingen', 'sign_in' => 'Aanmelden', 'site_name' => 'Sitenaam', @@ -126,11 +126,11 @@ 'type' => 'Type', 'undeployable' => 'Niet-inzetbaar', 'unknown_admin' => 'Onbekende Beheerder', - 'update' => 'Update', + 'update' => 'Bijwerken', 'uploaded' => 'Geupload', 'user' => 'Gebruiker', - 'accepted' => 'accepted', - 'declined' => 'declined', + 'accepted' => 'geaccepteerd', + 'declined' => 'afgewezen', 'unaccepted_asset_report' => 'Unaccepted Assets', 'users' => 'Gebruikers', 'viewassets' => 'Bekijk toegekende materialen', diff --git a/app/lang/nl/table.php b/app/lang/nl/table.php index 1125daf164..155fd47ed2 100755 --- a/app/lang/nl/table.php +++ b/app/lang/nl/table.php @@ -5,6 +5,6 @@ return array( 'actions' => 'Acties', 'action' => 'Actie', 'by' => 'Door', - 'item' => 'Item', + 'item' => 'Artikel', ); diff --git a/app/lang/nl/validation.php b/app/lang/nl/validation.php index 8ebdba3a33..80aa4d87a2 100755 --- a/app/lang/nl/validation.php +++ b/app/lang/nl/validation.php @@ -77,7 +77,7 @@ return array( */ 'custom' => array(), - 'alpha_space' => "The :attribute field contains a character that is not allowed.", + 'alpha_space' => "Het :attribuut veld bevat een karakter dat is niet toegestaan.", /* |-------------------------------------------------------------------------- diff --git a/app/lang/no/admin/settings/general.php b/app/lang/no/admin/settings/general.php index 0bb7ac9e64..38cf47fb65 100755 --- a/app/lang/no/admin/settings/general.php +++ b/app/lang/no/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA-innstillinger', 'eula_markdown' => 'Denne EULAen tillater Github Flavored markdown.', 'general_settings' => 'Generelle innstillinger', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Overskriftsfarge', 'info' => 'Disse innstillingene lar deg tilpasse enkelte aspekter av installasjonen din.', 'laravel' => 'Laravel-versjon', diff --git a/app/lang/no/admin/settings/message.php b/app/lang/no/admin/settings/message.php index 62d6d0ae7b..3fd54f3654 100755 --- a/app/lang/no/admin/settings/message.php +++ b/app/lang/no/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'En feil oppstod under oppdatering. ', - 'success' => 'Oppdatering av innstillinger vellykket.' + 'error' => 'En feil oppstod under oppdatering. ', + 'success' => 'Oppdatering av innstillinger vellykket.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/pl/admin/settings/general.php b/app/lang/pl/admin/settings/general.php index 940b509590..b202d7c570 100755 --- a/app/lang/pl/admin/settings/general.php +++ b/app/lang/pl/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'Ustawienia Licencji', 'eula_markdown' => 'Ta licencja zezwala na Github flavored markdown.', 'general_settings' => 'Ustawienia ogólne', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Kolor nagłówka', 'info' => 'Te ustawienia pozwalają ci zdefiniować najważniejsze szczegóły twojej instalacji.', 'laravel' => 'Wersja Laravel', diff --git a/app/lang/pl/admin/settings/message.php b/app/lang/pl/admin/settings/message.php index b178ae782f..1d018a68a1 100755 --- a/app/lang/pl/admin/settings/message.php +++ b/app/lang/pl/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'Wystąpił błąd podczas aktualizacji. ', - 'success' => 'Ustawienia zaktualizowane pomyślnie.' + 'error' => 'Wystąpił błąd podczas aktualizacji. ', + 'success' => 'Ustawienia zaktualizowane pomyślnie.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/pt-BR/admin/accessories/table.php b/app/lang/pt-BR/admin/accessories/table.php index 175442c7c3..0a6a830444 100755 --- a/app/lang/pt-BR/admin/accessories/table.php +++ b/app/lang/pt-BR/admin/accessories/table.php @@ -1,7 +1,7 @@ 'Download CSV', + 'dl_csv' => 'Baixar CSV', 'eula_text' => 'EULA', 'id' => 'ID', 'require_acceptance' => 'Aceitação', diff --git a/app/lang/pt-BR/admin/settings/general.php b/app/lang/pt-BR/admin/settings/general.php index 992fefa8b3..22576fb71c 100755 --- a/app/lang/pt-BR/admin/settings/general.php +++ b/app/lang/pt-BR/admin/settings/general.php @@ -10,8 +10,8 @@ return array( 'backups' => 'Backups', 'barcode_type' => 'Tipo do Código de Barras', 'barcode_settings' => 'Configuração do código de barras', - 'custom_css' => 'Custom CSS', - 'custom_css_help' => 'Enter any custom CSS overrides you would like to use. Do not include the <style></style> tags.', + 'custom_css' => 'CSS personalizado', + 'custom_css_help' => 'Digite quaisquer CSS modificada que você gostaria de usar. Mas não inclua as tags <style></style>.', 'default_currency' => 'Moeda padrão', 'default_eula_text' => 'EULA Padrão', 'default_eula_help_text' => 'Você também pode associar EULAs personalizados para categorias específicas de ativos.', @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'Configuração do termo de uso', 'eula_markdown' => 'Este EULA permite Github flavored markdown.', 'general_settings' => 'Configuracoes Gerais', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Cor do Cabeçalho', 'info' => 'Estas configurações deixam-lhe personalizar certos aspectos da sua instalação.', 'laravel' => 'Versão do Laravel', diff --git a/app/lang/pt-BR/admin/settings/message.php b/app/lang/pt-BR/admin/settings/message.php index e259ebf5ea..bc38f6ee2d 100755 --- a/app/lang/pt-BR/admin/settings/message.php +++ b/app/lang/pt-BR/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'Ocorreu um erro ao atualizar. ', - 'success' => 'Configurações atualizadas com sucesso.' + 'error' => 'Ocorreu um erro ao atualizar. ', + 'success' => 'Configurações atualizadas com sucesso.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/pt-BR/admin/users/general.php b/app/lang/pt-BR/admin/users/general.php index 878671bc9c..ebff20b7cb 100755 --- a/app/lang/pt-BR/admin/users/general.php +++ b/app/lang/pt-BR/admin/users/general.php @@ -10,7 +10,7 @@ return array( 'filetype_info' => 'Tipo de arquivos permitidos são png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, e rar.', 'history_user' => 'Histórico para :name', 'last_login' => 'Último Login', - 'ldap_config_text' => 'LDAP configuration settings can be found in the app/config folder in a file called ldap.php. The selected location will be set for all imported users. You will need to have at least one location set to use this feature.', + 'ldap_config_text' => 'As definições das configurações LDAP podem ser encontradas na pasta app/config, no arquivo chamado ldap.php. A localização selecionada será definida para todos os usuários importados. Terá de ter pelo menos uma localização definida para utilizar esta funcionalidade.', 'ldap_text' => 'Conectar ao LDAP e criar usuários. Senhas serão auto-geradas.', 'software_user' => 'Check-out de software para :name', 'view_user' => 'Ver Usuário :name', diff --git a/app/lang/pt-PT/admin/accessories/table.php b/app/lang/pt-PT/admin/accessories/table.php index 48d7c22a08..21c79f2369 100755 --- a/app/lang/pt-PT/admin/accessories/table.php +++ b/app/lang/pt-PT/admin/accessories/table.php @@ -1,7 +1,7 @@ 'Download CSV', + 'dl_csv' => 'Transferir CSV', 'eula_text' => 'EULA (Contrato de Licença de Utilizador Final)', 'id' => 'ID', 'require_acceptance' => 'Aceitação', diff --git a/app/lang/pt-PT/admin/settings/general.php b/app/lang/pt-PT/admin/settings/general.php index 0d4d5414e6..f47f449e96 100755 --- a/app/lang/pt-PT/admin/settings/general.php +++ b/app/lang/pt-PT/admin/settings/general.php @@ -10,7 +10,7 @@ return array( 'backups' => 'Cópias de segurança', 'barcode_type' => 'Tipo de Código de Barras', 'barcode_settings' => 'Definições de Código de Barras', - 'custom_css' => 'Custom CSS', + 'custom_css' => 'CSS Personalizado', 'custom_css_help' => 'Enter any custom CSS overrides you would like to use. Do not include the <style></style> tags.', 'default_currency' => 'Moeda padrão', 'default_eula_text' => 'EULA padrão', @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'Definições de EULA', 'eula_markdown' => 'Este EULA permite Github flavored markdown.', 'general_settings' => 'Configurações Gerais', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Cor do cabeçalho', 'info' => 'Estas configurações permitem costumizar certos aspetos desta instalação.', 'laravel' => 'Versão do Laravel', diff --git a/app/lang/pt-PT/admin/settings/message.php b/app/lang/pt-PT/admin/settings/message.php index e259ebf5ea..bc38f6ee2d 100755 --- a/app/lang/pt-PT/admin/settings/message.php +++ b/app/lang/pt-PT/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'Ocorreu um erro ao atualizar. ', - 'success' => 'Configurações atualizadas com sucesso.' + 'error' => 'Ocorreu um erro ao atualizar. ', + 'success' => 'Configurações atualizadas com sucesso.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/pt-PT/admin/users/general.php b/app/lang/pt-PT/admin/users/general.php index acb810e790..58e1efc6fb 100755 --- a/app/lang/pt-PT/admin/users/general.php +++ b/app/lang/pt-PT/admin/users/general.php @@ -10,7 +10,7 @@ return array( 'filetype_info' => 'Os tipos de ficheiro permitidos são png, gif, jpg, jpeg, doc, docx, pdf, txt, zip e rar.', 'history_user' => 'Histórico para :name', 'last_login' => 'Último início de sessão', - 'ldap_config_text' => 'LDAP configuration settings can be found in the app/config folder in a file called ldap.php. The selected location will be set for all imported users. You will need to have at least one location set to use this feature.', + 'ldap_config_text' => 'As definições das configurações LDAP podem ser encontradas na pasta app/config, no ficheiro com o nome ldap.php. A localização selecionada será definida para todos os utilizadores importados. Terá de ter pelo menos uma localização definida para utilizar esta funcionalidade.', 'ldap_text' => 'Ligar-se ao LDAP e criar utilizadores. As Password serão automaticamente geradas.', 'software_user' => 'Software alocado a :name', 'view_user' => 'Ver Utilizador :name', diff --git a/app/lang/ro/admin/settings/general.php b/app/lang/ro/admin/settings/general.php index aa5e1e2789..b2017d768f 100755 --- a/app/lang/ro/admin/settings/general.php +++ b/app/lang/ro/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'Aceste setari va lasa sa modificati anumite aspecte ale instalarii.', 'laravel' => 'Versiune Laravel', diff --git a/app/lang/ro/admin/settings/message.php b/app/lang/ro/admin/settings/message.php index 35d245c5cf..a1f031ff86 100755 --- a/app/lang/ro/admin/settings/message.php +++ b/app/lang/ro/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'A aparut o eroare la actualizare. ', - 'success' => 'Setari au fost actualizate.' + 'error' => 'A aparut o eroare la actualizare. ', + 'success' => 'Setari au fost actualizate.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/ru/admin/settings/general.php b/app/lang/ru/admin/settings/general.php index c04fd53f72..07b44c4f1d 100755 --- a/app/lang/ru/admin/settings/general.php +++ b/app/lang/ru/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'Настройки лицензионного соглашения', 'eula_markdown' => 'Это EULA поддерживает форматирование Github flavored markdown.', 'general_settings' => 'Общие настройки', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Цвет заголовка', 'info' => 'Эти настройки позволяют персонализировать некоторые аспекты вашей установки.', 'laravel' => 'Версия Laravel', diff --git a/app/lang/ru/admin/settings/message.php b/app/lang/ru/admin/settings/message.php index c3e53dc799..d1747cc0cf 100755 --- a/app/lang/ru/admin/settings/message.php +++ b/app/lang/ru/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'При обновлении произошла ошибка. ', - 'success' => 'Настройки успешно обновлены.' + 'error' => 'При обновлении произошла ошибка. ', + 'success' => 'Настройки успешно обновлены.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/sv-SE/admin/settings/general.php b/app/lang/sv-SE/admin/settings/general.php index 80d152d06e..ff19aca7e7 100755 --- a/app/lang/sv-SE/admin/settings/general.php +++ b/app/lang/sv-SE/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'EULA Settings', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'These settings let you customize certain aspects of your installation.', 'laravel' => 'Laravel Version', diff --git a/app/lang/sv-SE/admin/settings/message.php b/app/lang/sv-SE/admin/settings/message.php index 693813ca0d..a95761510d 100755 --- a/app/lang/sv-SE/admin/settings/message.php +++ b/app/lang/sv-SE/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'An error has occurred while updating. ', - 'success' => 'Settings updated successfully.' + 'error' => 'An error has occurred while updating. ', + 'success' => 'Settings updated successfully.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/th/admin/accessories/general.php b/app/lang/th/admin/accessories/general.php index a91af18812..42e1ad410d 100755 --- a/app/lang/th/admin/accessories/general.php +++ b/app/lang/th/admin/accessories/general.php @@ -5,7 +5,7 @@ return array( 'about_accessories_text' => 'อุปกรณ์เสริมใดๆ ที่มอบให้กับผู้ใช้แต่ไม่มีหมายเลขเครื่อง (หรือไม่จำเป็นสำหรับการค้นหาข้อมูลย้อนหลัง) ยกตัวอย่าง เช่น คอมพิวเตอร์ ไมค์ หรือแป้นพิมพ์ เป็นต้น', 'accessory_category' => 'หมวดหมู่อุปกรณ์เสริม', 'accessory_name' => 'ชื่ออุปกรณ์เสริม', - 'create' => 'Create Accessory', + 'create' => 'สร้างอุปกรณ์เสริม', 'eula_text' => 'หมวดหมู่ข้อกำหนดการใช้งาน', 'eula_text_help' => 'ส่วนนี้อนุญาตให้คุณสามารถทำการปรับแต่งข้อตกลงการใช้งานสำหรับกำหนดชนิดของทรัพย์สินได้ หากคุณมีข้อตกลงการใช้งานเพียงหนึ่ง หรือเรื่องเดียวที่ใช้ครอบคลุมทรัพย์สินของคุณทั้งหมด คุณสามารถตั้งค่าให้เป็นการใช้งานหลัก โดยการทำเครื่องหมายในช่องด้านล่างนี้.', 'require_acceptance' => 'กำหนดให้ผู้ใช้ยืนยันยอมรับสินทรัพย์ในหมวดหมู่นี้', @@ -13,7 +13,7 @@ return array( 'qty' => 'จำนวน', 'total' => 'รวมทั้งหมด', 'remaining' => 'พร้อมใช้', - 'update' => 'Update Accessory', + 'update' => 'ปรับปรุงอุปกรณ์เสริม', 'use_default_eula' => 'ใช้เป็นข้อกำหนดการใช้งานหลักแทน', 'use_default_eula_disabled' => 'ใช้ข้อกำหนดการใช้งานหลักแทน ค่าเริ่มต้นหลักจะตั้งข้อกำหนดการใช้งาน กรุณาเพิ่มในการตั้งค่า', diff --git a/app/lang/th/admin/accessories/message.php b/app/lang/th/admin/accessories/message.php index 7ac53dafb7..9a6a6b3cd5 100755 --- a/app/lang/th/admin/accessories/message.php +++ b/app/lang/th/admin/accessories/message.php @@ -3,34 +3,34 @@ return array( 'does_not_exist' => 'ยังไม่มีหมวดหมู่', - 'assoc_users' => 'This accessory currently has :count items checked out to users. Please check in the accessories and and try again. ', + 'assoc_users' => 'อุปกรณ์เสริมนี้ได้เช็คเอ้าท์ให้ผู้ใช้งานแล้วจำนวน :count รายการในปัจจุบัน กรุณาเช็คอินอุปกรณ์เสริม และลองอีกครั้ง ', 'create' => array( - 'error' => 'Category was not created, please try again.', - 'success' => 'Category created successfully.' + 'error' => 'ยังไม่ได้สร้างหมวดหมู่ กรุณาลองอีกครั้ง', + 'success' => 'สร้างหมวดหมู่เรียบร้อยแล้ว' ), 'update' => array( - 'error' => 'Category was not updated, please try again', - 'success' => 'Category updated successfully.' + 'error' => 'ยังไม่ได้ปรับปรุงหมวดหมู่ กรุณาลองอีกครั้ง', + 'success' => 'ปรับปรุงหมวดหมู่เรียบร้อยแล้ว' ), 'delete' => array( - 'confirm' => 'Are you sure you wish to delete this category?', - 'error' => 'There was an issue deleting the category. Please try again.', - 'success' => 'The category was deleted successfully.' + 'confirm' => 'คุณแน่ใจที่ต้องการจะลบหมวดหมู่นี้?', + 'error' => 'มีปัญหาขณะลบหมวดหมู่นี้ กรุณาลองอีกครั้ง', + 'success' => 'ลบหมวดหมู่เรียบร้อยแล้ว' ), 'checkout' => array( - 'error' => 'Accessory was not checked out, please try again', - 'success' => 'Accessory checked out successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'error' => 'อุปกรณ์เสริมยังไม่ถูกเช็คเอ้าท์ กรุณาลองอีกครั้ง', + 'success' => 'อุปกรณ์เสริมเช็คเอ้าท์เรียบร้อยแล้ว', + 'user_does_not_exist' => 'ผู้ใช้งานไม่ถูกต้อง กรุณาลองใหม่อีกครั้ง' ), 'checkin' => array( - 'error' => 'Accessory was not checked in, please try again', - 'success' => 'Accessory checked in successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'error' => 'อุปกรณ์เสริมยังไม่ถูกเช็คอิน กรุณาลองอีกครั้ง', + 'success' => 'อุปกรณ์เสริมเช็คอินเรียบร้อยแล้ว.', + 'user_does_not_exist' => 'ผู้ใช้งานไม่ถูกต้อง กรุณาลองใหม่อีกครั้ง.' ) diff --git a/app/lang/th/admin/categories/general.php b/app/lang/th/admin/categories/general.php index a20ee26b84..2a7fbd9654 100755 --- a/app/lang/th/admin/categories/general.php +++ b/app/lang/th/admin/categories/general.php @@ -5,7 +5,7 @@ return array( 'about_categories' => 'หมวดหมู่ทรัพย์สิน ช่วยจัดระเบียบทรัพย์สินของคุณได้ เช่น การกำหนดหมวดหมู่ คอมพิวเตอร์ตั้งโต๊ะ คอมพิวเตอร์ส่วนบุคคล โทรศัพท์มือถือ แท็บเล็ต โดยใช้หมวดหมู่สินทรัพย์จะทำให้สะดวกต่อการใช้งาน', 'asset_categories' => 'หมวดหมู่ทรัพย์สิน', 'category_name' => 'ชื่อหมวดหมู่', - 'checkin_email' => 'Send email to user on checkin.', + 'checkin_email' => 'ส่งอีเมล์ถึงผู้ใช้เพื่อการเช็คอิน', 'clone' => 'คัดลอกหมวดหมู่', 'create' => 'สร้างหมวดหมู่', 'edit' => 'แก้ไขหมวดหมู่', diff --git a/app/lang/th/admin/settings/general.php b/app/lang/th/admin/settings/general.php index a9fc261220..8139e065f5 100755 --- a/app/lang/th/admin/settings/general.php +++ b/app/lang/th/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'ตั้งค่าข้อตกลงการใช้งาน', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'General Settings', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', 'info' => 'These settings let you customize certain aspects of your installation.', 'laravel' => 'Laravel Version', diff --git a/app/lang/th/admin/settings/message.php b/app/lang/th/admin/settings/message.php index 693813ca0d..a95761510d 100755 --- a/app/lang/th/admin/settings/message.php +++ b/app/lang/th/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'An error has occurred while updating. ', - 'success' => 'Settings updated successfully.' + 'error' => 'An error has occurred while updating. ', + 'success' => 'Settings updated successfully.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/th/admin/users/general.php b/app/lang/th/admin/users/general.php index d635610a4c..84a3701f33 100755 --- a/app/lang/th/admin/users/general.php +++ b/app/lang/th/admin/users/general.php @@ -7,11 +7,11 @@ return array( 'clone' => 'โคลนผู้ใช้', 'contact_user' => 'ติดต่อ :name', 'edit' => 'แก้ไขผู้ใช้', - 'filetype_info' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.', + 'filetype_info' => 'ประเภทของไฟล์ที่อนุญาตแล้ว มีดังนี้ png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar', 'history_user' => 'ประวัติของ :name', 'last_login' => 'เข้าสู่ระบบล่าสุด', - 'ldap_config_text' => 'LDAP configuration settings can be found in the app/config folder in a file called ldap.php. The selected location will be set for all imported users. You will need to have at least one location set to use this feature.', - 'ldap_text' => 'Connect to LDAP and create users. Passwords will be auto-generated.', + 'ldap_config_text' => 'การกำหนดการตั้งค่า LDAP สามารถตรวจสอบได้ในไฟล์ ldap.php และ Location ที่เลือกไว้จะถูกตั้งค่าให้กับผู้ใช้งานทุกคนที่ได้นำเข้าไว้ คุณจำเป็นจะต้องมีชุด Location อย่างน้อย 1 ชุด สำหรับการใช้งานฟีทเจอร์นี้', + 'ldap_text' => 'รหัสผ่านจะถูกกำหนดให้โดยอัตโนมัติ เมื่อมีการสร้างบัญชีผู้ใช้โดยการเชื่อมต่อ LDAP', 'software_user' => 'ซอฟต์แวร์ที่กำหนดให้ :name', 'view_user' => 'ดูผู้ใช้ :name', 'usercsv' => 'ไฟล์ CSV', diff --git a/app/lang/th/admin/users/message.php b/app/lang/th/admin/users/message.php index 7593bcd1ee..cb18629762 100755 --- a/app/lang/th/admin/users/message.php +++ b/app/lang/th/admin/users/message.php @@ -2,15 +2,15 @@ return array( - 'accepted' => 'You have successfully accepted this asset.', - 'declined' => 'You have successfully declined this asset.', + 'accepted' => 'คุณยอมรับสินทรัพย์นี้เรียบร้อยแล้ว', + 'declined' => 'คุณปฏิเสธสินทรัพย์นี้เรียบร้อยแล้ว', 'user_exists' => 'มีผู้ใช้งานนี้แล้ว', 'user_not_found' => 'ไม่มีชื่อผู้ใช้งานนี้', 'user_login_required' => 'ต้องการชื่อผู้ใช้งาน', 'user_password_required' => 'ต้องการรหัสผ่าน', 'insufficient_permissions' => 'สิทธิ์การใช้งานไม่เพียงพอ', 'user_deleted_warning' => 'ผู้ใช้งานนี้ถูกลบแล้ว คุณจำเป็นต้องกู้คืนผู้ใช้งานก่อนแก้ไข', - 'ldap_not_configured' => 'LDAP integration has not been configured for this installation.', + 'ldap_not_configured' => 'การทำงานร่วมกับ LDAP ไม่ได้ถูกตั้งค่าไว้สำหรับการติดตั้งนี้', 'success' => array( @@ -32,23 +32,23 @@ return array( 'unsuspend' => 'มีปัญหาระหว่างการยกเลิกการระงับผู้ใช้งาน กรุณาลองใหม่อีกครั้ง', 'import' => 'มีปัญหาระหว่างการนำเข้าผู้ใช้งาน กรุณาลองใหม่อีกครั้ง', 'asset_already_accepted' => 'ทรัพย์สินนี้ได้รับการยอมรับแล้ว', - 'accept_or_decline' => 'You must either accept or decline this asset.', - 'ldap_could_not_connect' => 'Could not connect to the LDAP server. Please check your LDAP server configuration in the LDAP config file.
Error from LDAP Server:', - 'ldap_could_not_bind' => 'Could not bind to the LDAP server. Please check your LDAP server configuration in the LDAP config file.
Error from LDAP Server: ', - 'ldap_could_not_search' => 'Could not search the LDAP server. Please check your LDAP server configuration in the LDAP config file.
Error from LDAP Server:', - 'ldap_could_not_get_entries' => 'Could not get entries from the LDAP server. Please check your LDAP server configuration in the LDAP config file.
Error from LDAP Server:', + 'accept_or_decline' => 'คุณต้องยอมรับ หรือปฏิเสธสินทรัพย์นี้', + 'ldap_could_not_connect' => 'ไม่สามารถเชื่อมต่อกับ LDAP Server ได้ กรุณาตรวจสอบการตั้งค่า LDAP Server ของคุณในไฟล์ตั้งค่า LDAP
ผิดพลาดจาก LDAP Server:', + 'ldap_could_not_bind' => 'ไม่สามารถผูกกับ LDAP Server ได้ กรุณาตรวจสอบการตั้งค่า LDAP Server ของคุณในไฟล์ตั้งค่า LDAP
ผิดพลาดจาก LDAP Server: ', + 'ldap_could_not_search' => 'ไม่สามารถค้นหา LDAP Server ได้ กรุณาตรวจสอบการตั้งค่า LDAP Server ของคุณในไฟล์ตั้งค่า LDAP
ผิดพลาดจาก LDAP Server:', + 'ldap_could_not_get_entries' => 'ไม่สามารถดึงข้อมูลจาก LDAP Server ได้ กรุณาตรวจสอบการตั้งค่า LDAP Server ของคุณในไฟล์ตั้งค่า LDAP
ผิดพลาดจาก LDAP Server:', ), 'deletefile' => array( - 'error' => 'File not deleted. Please try again.', - 'success' => 'File successfully deleted.', + 'error' => 'ไฟล์ยังไม่ถูกลบ กรุณาลองใหม่อีกครั้ง', + 'success' => 'ไฟล์ถูกลบเรียบร้อยแล้ว', ), 'upload' => array( - 'error' => 'File(s) not uploaded. Please try again.', - 'success' => 'File(s) successfully uploaded.', - 'nofiles' => 'You did not select any files for upload', - 'invalidfiles' => 'One or more of your files is too large or is a filetype that is not allowed. Allowed filetypes are png, gif, jpg, doc, docx, pdf, and txt.', + 'error' => 'ไฟล์ยังไม่ถูกอัพโหลด กรุณาลองอีกครั้ง', + 'success' => 'ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว', + 'nofiles' => 'คุณยังไม่ได้เลือกไฟล์สำหรับอัพโหลด', + 'invalidfiles' => 'ไฟล์ข้อมูลของคุณมีขนาดใหญ่เกินไป หรือประเภทของไฟล์ไม่ได้รับการอนุญาต ประเภทของไฟล์ที่ได้รับอนุญาตแล้วมีดังนี้ png, gif, jpg, doc, docx, pdf, and txt.', ), ); diff --git a/app/lang/th/auth/message.php b/app/lang/th/auth/message.php index e9c12fcb2b..5316912a8d 100755 --- a/app/lang/th/auth/message.php +++ b/app/lang/th/auth/message.php @@ -3,7 +3,7 @@ return array( 'account_already_exists' => 'อีเมลนี้มีการลงทะเบียนในระบบแล้ว', - 'account_not_found' => 'The username or password is incorrect.', + 'account_not_found' => 'บัญชีผู้ใช้งาน หรือรหัสผ่าน ไม่ถูกต้อง', 'account_not_activated' => 'ชื่อผู้ใช้นี้ยังไม่ได้ทำการเปิดใช้งาน', 'account_suspended' => 'บัญชีผู้ใช้นี้ถูกระงับการใช้งาน', 'account_banned' => 'บัญชีผู้ใช้นี้ถูกห้ามใช้งาน', diff --git a/app/lang/th/button.php b/app/lang/th/button.php index 83b149f2c7..7659e36a71 100755 --- a/app/lang/th/button.php +++ b/app/lang/th/button.php @@ -8,7 +8,7 @@ return array( 'delete' => 'ลบ', 'edit' => 'แก้ไข', 'restore' => 'นำกลับ', - 'request' => 'Request', + 'request' => 'ร้องขอ', 'submit' => 'ตกลง', 'upload' => 'อัพโหลด', diff --git a/app/lang/th/general.php b/app/lang/th/general.php index 89bbfe27d8..1b9d896f85 100755 --- a/app/lang/th/general.php +++ b/app/lang/th/general.php @@ -3,7 +3,7 @@ return [ 'accessories' => 'อุปกรณ์', 'accessory' => 'อุปกรณ์', - 'accessory_report' => 'Accessory Report', + 'accessory_report' => 'รายงานอุปกรณ์เสริม', 'action' => 'ดำเนินการ', 'activity_report' => 'รายงานกิจกรรม', 'address' => 'ที่อยู่', @@ -20,7 +20,7 @@ 'avatar_delete' => 'ลบรูปภาพประจำตัว', 'avatar_upload' => 'อัพโหลดภาพประจำตัว', 'back' => 'ย้อนกลับ', - 'bad_data' => 'Nothing found. Maybe bad data?', + 'bad_data' => 'ไม่พบข้อมูลใดๆ หรือข้อมูลอาจไม่ถูกต้อง?', 'cancel' => 'ยกเลิก', 'categories' => 'ประเภท', 'category' => 'หมวดหมู่', @@ -60,10 +60,10 @@ 'id' => 'ID', 'image_delete' => 'ลบรูปภาพประจำตัว', 'image_upload' => 'อัพโหลดภาพ', - 'import' => 'Import', - 'asset_maintenance' => 'Asset Maintenance', - 'asset_maintenance_report' => 'Asset Maintenance Report', - 'asset_maintenances' => 'Asset Maintenances', + 'import' => 'นำเข้า', + 'asset_maintenance' => 'การซ่อมบำรุงสินทรัพย์', + 'asset_maintenance_report' => 'รายงานการซ่อมบำรุงสินทรัพย์', + 'asset_maintenances' => 'ซ่อมบำรุงสินทรัพย์', 'item' => 'รายการ', 'last' => 'สุดท้าย', 'last_name' => 'นามสกุล', @@ -73,8 +73,8 @@ 'licenses' => 'ลิขสิทธิ์', 'list_all' => 'รายการทั้งหมด', 'loading' => 'กำลังโหลด', - 'lock_passwords' => 'This field cannot be edited in this installation.', - 'feature_disabled' => 'This feature has been disabled for this installation.', + 'lock_passwords' => 'ฟิลด์นี้ไม่สามารถแก้ไขได้ในการติดตั้งนี้', + 'feature_disabled' => 'ฟีทเจอร์นี้ถูกปิดการใช้งานสำหรับการติดตั้งนี้', 'location' => 'สถานที่', 'locations' => 'สถานที่', 'logout' => 'ออกจากระบบ', @@ -102,7 +102,7 @@ 'ready_to_deploy' => 'พร้อมใช้งาน', 'recent_activity' => 'กิจกรรมล่าสุด', 'reports' => 'รายงาน', - 'requested' => 'Requested', + 'requested' => 'คำร้องขอ', 'save' => 'บันทึก', 'select' => 'เลือก', 'search' => 'ค้นหา', @@ -113,7 +113,7 @@ 'select_supplier' => 'เลือกผู้จัดจำหน่าย', 'select_user' => 'เลือกผู้ใช้', 'select_date' => 'เลือกวันที่', - 'select_statuslabel' => 'Select Status', + 'select_statuslabel' => 'เลือกสถานะ', 'settings' => 'การตั้งค่า', 'sign_in' => 'ลงชื่อเข้าใช้', 'site_name' => 'ชื่อไซต์', @@ -126,12 +126,12 @@ 'type' => 'ประเภท', 'undeployable' => 'ไม่สามารถใช้งานได้', 'unknown_admin' => 'ผู้ดูแลระบบที่ไม่รู้จัก', - 'update' => 'Update', + 'update' => 'ปรับปรุง', 'uploaded' => 'อัพโหลด', 'user' => 'ผู้ใช้', - 'accepted' => 'accepted', - 'declined' => 'declined', - 'unaccepted_asset_report' => 'Unaccepted Assets', + 'accepted' => 'ยอมรับ', + 'declined' => 'ปฏิเสธ', + 'unaccepted_asset_report' => 'ไม่ยอมรับสินทรัพย์', 'users' => 'ผู้ใช้', 'viewassets' => 'ดูทรัพย์สินที่มอบหมาย', 'website' => 'เว็บไซต์', diff --git a/app/lang/th/validation.php b/app/lang/th/validation.php index 8c8958af0a..a6b43bcc1c 100755 --- a/app/lang/th/validation.php +++ b/app/lang/th/validation.php @@ -77,7 +77,7 @@ return array( */ 'custom' => array(), - 'alpha_space' => "The :attribute field contains a character that is not allowed.", + 'alpha_space' => "ฟิลด์ :attribute ประกอบไปด้วยอักขระที่ไม่อนุญาต", /* |-------------------------------------------------------------------------- diff --git a/app/lang/tr/admin/settings/general.php b/app/lang/tr/admin/settings/general.php index 3aafc053a6..e1796f0b43 100755 --- a/app/lang/tr/admin/settings/general.php +++ b/app/lang/tr/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'Son Kullanıcı Lisans Sözleşmesi Ayarları', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'general_settings' => 'Genel Ayarlar', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Başlık rengi', 'info' => 'Bu ayarlardan kurulum görünüşünüzü kişiselleştirebilirsiniz.', 'laravel' => 'Laravel Version', diff --git a/app/lang/tr/admin/settings/message.php b/app/lang/tr/admin/settings/message.php index 2ca7e0deea..d4c197e202 100755 --- a/app/lang/tr/admin/settings/message.php +++ b/app/lang/tr/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'Güncelleme yapılırken bir hata oluştu. ', - 'success' => 'Ayarlar güncellendi.' + 'error' => 'Güncelleme yapılırken bir hata oluştu. ', + 'success' => 'Ayarlar güncellendi.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/vi/admin/accessories/table.php b/app/lang/vi/admin/accessories/table.php index 7256878de5..4c79d3bca3 100755 --- a/app/lang/vi/admin/accessories/table.php +++ b/app/lang/vi/admin/accessories/table.php @@ -1,7 +1,7 @@ 'Download CSV', + 'dl_csv' => 'Tải xuống CSV', 'eula_text' => 'Điều khoản sử dụng cho người dùng cuối', 'id' => 'Định danh', 'require_acceptance' => 'Chấp nhận', diff --git a/app/lang/vi/admin/settings/general.php b/app/lang/vi/admin/settings/general.php index bdac90a900..85cfdccf29 100755 --- a/app/lang/vi/admin/settings/general.php +++ b/app/lang/vi/admin/settings/general.php @@ -10,8 +10,8 @@ return array( 'backups' => 'Sao lưu', 'barcode_type' => 'Loại mã vạch', 'barcode_settings' => 'Cài đặt mã vạch', - 'custom_css' => 'Custom CSS', - 'custom_css_help' => 'Enter any custom CSS overrides you would like to use. Do not include the <style></style> tags.', + 'custom_css' => 'CSS tùy chỉnh', + 'custom_css_help' => 'Nhập bất kỳ CSS tùy chỉnh. Không bao gồm thẻ <style></style>.', 'default_currency' => 'Tiền tệ mặc định', 'default_eula_text' => 'EULA mặc định', 'default_eula_help_text' => 'Bạn cũng có thể liên kế EULA tùy chỉnh đến danh mục tài sản riêng biệt.', @@ -22,6 +22,7 @@ return array( 'eula_settings' => 'Cài đặt EULA', 'eula_markdown' => 'Đây là EULA cho phép Github flavored markdown.', 'general_settings' => 'Cài đặt thường', + 'generate_backup' => 'Generate Backup', 'header_color' => 'Màu Header', 'info' => 'Các thiết lập này cho phép bạn tùy chỉnh một số khía cạnh của quá trình cài đặt.', 'laravel' => 'Phiên bản Laravel', diff --git a/app/lang/vi/admin/settings/message.php b/app/lang/vi/admin/settings/message.php index e6d784954b..8641897a73 100755 --- a/app/lang/vi/admin/settings/message.php +++ b/app/lang/vi/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => 'Có lỗi xảy ra khi cập nhật. ', - 'success' => 'Cập nhật cài đặt thành công.' + 'error' => 'Có lỗi xảy ra khi cập nhật. ', + 'success' => 'Cập nhật cài đặt thành công.' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/lang/vi/admin/users/general.php b/app/lang/vi/admin/users/general.php index 742f8d5786..1d9bec2b55 100755 --- a/app/lang/vi/admin/users/general.php +++ b/app/lang/vi/admin/users/general.php @@ -10,7 +10,7 @@ return array( 'filetype_info' => 'Cho phép loại tập tin are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.', 'history_user' => 'Lịch sử cấp phát của :name', 'last_login' => 'Lần đăng nhập trước', - 'ldap_config_text' => 'LDAP configuration settings can be found in the app/config folder in a file called ldap.php. The selected location will be set for all imported users. You will need to have at least one location set to use this feature.', + 'ldap_config_text' => 'Cài đặt cấu hình LDAP có thể tìm thấy ở thư mục app/config ở trong tập tin ldap.php. Địa điểm đã chọn sẽ được gán cho tất cả người dùng nhập vào. Bạn sẽ cần gán ít nhất 1 địa điểm để sử dụng đặt tính này.', 'ldap_text' => 'Kết nối đến LDAP và tạo người dùng. Mật khẩu sẽ được tự động tạo ra.', 'software_user' => 'Phần mềm đã được checkout đến :name', 'view_user' => 'Xem người dùng :name', diff --git a/app/lang/zh-CN/admin/settings/general.php b/app/lang/zh-CN/admin/settings/general.php index 3362f31ded..3f86c41f69 100755 --- a/app/lang/zh-CN/admin/settings/general.php +++ b/app/lang/zh-CN/admin/settings/general.php @@ -22,6 +22,7 @@ return array( 'eula_settings' => '最终用户许可协议(EULA)设置', 'eula_markdown' => 'EULA中可以使用Github flavored markdown.', 'general_settings' => '一般设置', + 'generate_backup' => 'Generate Backup', 'header_color' => '标题颜色', 'info' => '这些设置允许您自定义安装的某些方面', 'laravel' => 'Laravel版本', diff --git a/app/lang/zh-CN/admin/settings/message.php b/app/lang/zh-CN/admin/settings/message.php index e2058afbfa..f4b34301b1 100755 --- a/app/lang/zh-CN/admin/settings/message.php +++ b/app/lang/zh-CN/admin/settings/message.php @@ -4,8 +4,14 @@ return array( 'update' => array( - 'error' => '更新过程中出现了问题。', - 'success' => '设置配置信息更新成功。' + 'error' => '更新过程中出现了问题。', + 'success' => '设置配置信息更新成功。' + ), + 'backup' => array( + 'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ', + 'file_deleted' => 'The backup file was successfully deleted. ', + 'generated' => 'A new backup file was successfully created.', + 'file_not_found' => 'That backup file could not be found on the server.', ), ); diff --git a/app/models/Actionlog.php b/app/models/Actionlog.php index 45b83920a7..7541b70c65 100755 --- a/app/models/Actionlog.php +++ b/app/models/Actionlog.php @@ -115,6 +115,7 @@ return DB::table( 'asset_logs' ) ->select( '*' ) + ->where('action_type','!=','uploaded') ->orderBy( 'asset_id', 'asc' ) ->orderBy( 'created_at', 'asc' ) ->get(); diff --git a/app/routes.php b/app/routes.php index 06b8e10616..a5e340db3a 100755 --- a/app/routes.php +++ b/app/routes.php @@ -298,9 +298,22 @@ # Settings Route::group( [ 'prefix' => 'backups' ], function () { + + Route::get( 'download/{filename}', [ + 'as' => 'settings/download-file', + 'uses' => 'SettingsController@downloadFile' ] + ); + + Route::get( 'delete/{filename}', [ + 'as' => 'settings/delete-file', + 'uses' => 'SettingsController@deleteFile' ] + ); + + Route::post( '/', [ + 'as' => 'settings/backups', + 'uses' => 'SettingsController@postBackups' + ]); Route::get( '/', [ 'as' => 'settings/backups', 'uses' => 'SettingsController@getBackups' ] ); - Route::get( 'download/{filename}', - [ 'as' => 'settings/download-file', 'uses' => 'SettingsController@downloadFile' ] ); } ); # Manufacturers @@ -395,7 +408,7 @@ Route::get( 'ldap', ['as' => 'ldap/user', 'uses' => 'UsersController@getLDAP' ] ); Route::post( 'ldap', 'UsersController@postLDAP' ); - + Route::get( 'create', [ 'as' => 'create/user', 'uses' => 'UsersController@getCreate' ] ); Route::post( 'create', 'UsersController@postCreate' ); Route::get( 'import', [ 'as' => 'import/user', 'uses' => 'UsersController@getImport' ] ); diff --git a/app/views/backend/groups/index.blade.php b/app/views/backend/groups/index.blade.php index ca171fdfb3..c55f4a6d68 100755 --- a/app/views/backend/groups/index.blade.php +++ b/app/views/backend/groups/index.blade.php @@ -37,8 +37,8 @@ {{ $group->users()->count() }} {{ $group->created_at->diffForHumans() }} - - + name) }}?" onClick="return false;"> diff --git a/app/views/backend/settings/backups.blade.php b/app/views/backend/settings/backups.blade.php index f2d0a3e62c..3a38fa986d 100644 --- a/app/views/backend/settings/backups.blade.php +++ b/app/views/backend/settings/backups.blade.php @@ -16,6 +16,10 @@

@lang('admin/settings/general.backups')

+ @if (Config::get('app.lock_passwords')) +

@lang('general.feature_disabled')

+ @endif +

@@ -25,6 +29,7 @@ File Created Size + @foreach ($files as $file) @@ -32,6 +37,12 @@ {{{ $file['filename'] }}} {{{ date("M d, Y g:i A", $file['modified']) }}} {{{ $file['filesize'] }}} + + + + + @endforeach @@ -41,9 +52,21 @@
-

+

+ +
+

+ +

+ + @if (Config::get('app.lock_passwords')) +

@lang('general.feature_disabled')

+ @endif + + +
+

Backup files are located in: app/storage/dumps

-

Backup files are located in: {{{ $path }}}

diff --git a/app/views/backend/users/view.blade.php b/app/views/backend/users/view.blade.php index deb46a4c60..71c8139a65 100755 --- a/app/views/backend/users/view.blade.php +++ b/app/views/backend/users/view.blade.php @@ -410,7 +410,7 @@
@lang('admin/users/general.contact_user', array('name' => $user->first_name))
- @if ($user->location_id) + @if ($user->userloc)