Merge remote-tracking branch 'origin/develop'
Signed-off-by: snipe <snipe@snipe.net> # Conflicts: # config/version.php
This commit is contained in:
commit
bebc1f4d0d
259 changed files with 3013 additions and 1783 deletions
|
@ -51,7 +51,7 @@ class AccessoriesFilesController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return redirect()->route('accessories.show', $accessory->id)->with('success', trans('general.file_upload_success'));
|
return redirect()->route('accessories.show', $accessory->id)->withFragment('files')->with('success', trans('general.file_upload_success'));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,8 +90,7 @@ class AccessoriesFilesController extends Controller
|
||||||
|
|
||||||
$log->delete();
|
$log->delete();
|
||||||
|
|
||||||
return redirect()->back()
|
return redirect()->back()->withFragment('files')->with('success', trans('admin/hardware/message.deletefile.success'));
|
||||||
->with('success', trans('admin/hardware/message.deletefile.success'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Redirect to the licence management page
|
// Redirect to the licence management page
|
||||||
|
|
|
@ -44,10 +44,10 @@ class AssetModelsFilesController extends Controller
|
||||||
$model->logUpload($file_name, $request->get('notes'));
|
$model->logUpload($file_name, $request->get('notes'));
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back()->with('success', trans('general.file_upload_success'));
|
return redirect()->back()->withFragment('files')->with('success', trans('general.file_upload_success'));
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back()->with('error', trans('admin/hardware/message.upload.nofiles'));
|
return redirect()->back()->withFragment('files')->with('error', trans('admin/hardware/message.upload.nofiles'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -119,11 +119,10 @@ class AssetModelsFilesController extends Controller
|
||||||
}
|
}
|
||||||
$log->delete();
|
$log->delete();
|
||||||
|
|
||||||
return redirect()->back()->with('success', trans('admin/hardware/message.deletefile.success'));
|
return redirect()->back()->withFragment('files')->with('success', trans('admin/hardware/message.deletefile.success'));
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back()
|
return redirect()->back()->withFragment('files')->with('success', trans('admin/hardware/message.deletefile.success'));
|
||||||
->with('success', trans('admin/hardware/message.deletefile.success'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Redirect to the hardware management page
|
// Redirect to the hardware management page
|
||||||
|
|
|
@ -45,7 +45,7 @@ class AssetFilesController extends Controller
|
||||||
$asset->logUpload($file_name, $request->get('notes'));
|
$asset->logUpload($file_name, $request->get('notes'));
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back()->with('success', trans('admin/hardware/message.upload.success'));
|
return redirect()->back()->withFragment('files')->with('success', trans('admin/hardware/message.upload.success'));
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back()->with('error', trans('admin/hardware/message.upload.nofiles'));
|
return redirect()->back()->with('error', trans('admin/hardware/message.upload.nofiles'));
|
||||||
|
@ -97,25 +97,19 @@ class AssetFilesController extends Controller
|
||||||
*/
|
*/
|
||||||
public function destroy($assetId = null, $fileId = null) : RedirectResponse
|
public function destroy($assetId = null, $fileId = null) : RedirectResponse
|
||||||
{
|
{
|
||||||
$asset = Asset::find($assetId);
|
if ($asset = Asset::find($assetId)) {
|
||||||
$this->authorize('update', $asset);
|
$this->authorize('update', $asset);
|
||||||
$rel_path = 'private_uploads/assets';
|
$rel_path = 'private_uploads/assets';
|
||||||
|
|
||||||
// the asset is valid
|
if ($log = Actionlog::find($fileId)) {
|
||||||
if (isset($asset->id)) {
|
|
||||||
$this->authorize('update', $asset);
|
|
||||||
$log = Actionlog::find($fileId);
|
|
||||||
if ($log) {
|
|
||||||
if (Storage::exists($rel_path.'/'.$log->filename)) {
|
if (Storage::exists($rel_path.'/'.$log->filename)) {
|
||||||
Storage::delete($rel_path.'/'.$log->filename);
|
Storage::delete($rel_path.'/'.$log->filename);
|
||||||
}
|
}
|
||||||
$log->delete();
|
$log->delete();
|
||||||
|
return redirect()->back()->withFragment('files')->with('success', trans('admin/hardware/message.deletefile.success'));
|
||||||
return redirect()->back()->with('success', trans('admin/hardware/message.deletefile.success'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back()
|
return redirect()->route('hardware.show', ['hardware' => $asset])->with('error', trans('general.log_record_not_found'));
|
||||||
->with('success', trans('admin/hardware/message.deletefile.success'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->route('hardware.index')->with('error', trans('admin/hardware/message.does_not_exist'));
|
return redirect()->route('hardware.index')->with('error', trans('admin/hardware/message.does_not_exist'));
|
||||||
|
|
|
@ -50,7 +50,7 @@ class ComponentsFilesController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return redirect()->route('components.show', $component->id)->with('success', trans('general.file_upload_success'));
|
return redirect()->route('components.show', $component->id)->withFragment('files')->with('success', trans('general.file_upload_success'));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -91,7 +91,7 @@ class ComponentsFilesController extends Controller
|
||||||
|
|
||||||
$log->delete();
|
$log->delete();
|
||||||
|
|
||||||
return redirect()->back()
|
return redirect()->back()->withFragment('files')
|
||||||
->with('success', trans('admin/hardware/message.deletefile.success'));
|
->with('success', trans('admin/hardware/message.deletefile.success'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@ class ConsumablesFilesController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return redirect()->route('consumables.show', $consumable->id)->with('success', trans('general.file_upload_success'));
|
return redirect()->route('consumables.show', $consumable->id)->withFragment('files')->with('success', trans('general.file_upload_success'));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -89,7 +89,7 @@ class ConsumablesFilesController extends Controller
|
||||||
|
|
||||||
$log->delete();
|
$log->delete();
|
||||||
|
|
||||||
return redirect()->back()
|
return redirect()->back()->withFragment('files')
|
||||||
->with('success', trans('admin/hardware/message.deletefile.success'));
|
->with('success', trans('admin/hardware/message.deletefile.success'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@ class UserFilesController extends Controller
|
||||||
$logActions[] = $logAction;
|
$logActions[] = $logAction;
|
||||||
}
|
}
|
||||||
// dd($logActions);
|
// dd($logActions);
|
||||||
return redirect()->back()->with('success', trans('admin/users/message.upload.success'));
|
return redirect()->back()->withFragment('files')->with('success', trans('admin/users/message.upload.success'));
|
||||||
}
|
}
|
||||||
return redirect()->back()->with('error', trans('admin/users/message.upload.nofiles'));
|
return redirect()->back()->with('error', trans('admin/users/message.upload.nofiles'));
|
||||||
|
|
||||||
|
@ -87,7 +87,7 @@ class UserFilesController extends Controller
|
||||||
|
|
||||||
if (Storage::exists($rel_path.'/'.$filename)) {
|
if (Storage::exists($rel_path.'/'.$filename)) {
|
||||||
Storage::delete($rel_path.'/'.$filename);
|
Storage::delete($rel_path.'/'.$filename);
|
||||||
return redirect()->back()->with('success', trans('admin/users/message.deletefile.success'));
|
return redirect()->back()->withFragment('files')->with('success', trans('admin/users/message.deletefile.success'));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,8 +46,6 @@ class UploadFileRequest extends Request
|
||||||
$extension = $file->getClientOriginalExtension();
|
$extension = $file->getClientOriginalExtension();
|
||||||
$file_name = $name_prefix.'-'.str_random(8).'-'.str_slug(basename($file->getClientOriginalName(), '.'.$extension)).'.'.$file->guessExtension();
|
$file_name = $name_prefix.'-'.str_random(8).'-'.str_slug(basename($file->getClientOriginalName(), '.'.$extension)).'.'.$file->guessExtension();
|
||||||
|
|
||||||
|
|
||||||
Log::debug("Your filetype IS: ".$file->getMimeType());
|
|
||||||
// Check for SVG and sanitize it
|
// Check for SVG and sanitize it
|
||||||
if ($file->getMimeType() === 'image/svg+xml') {
|
if ($file->getMimeType() === 'image/svg+xml') {
|
||||||
Log::debug('This is an SVG');
|
Log::debug('This is an SVG');
|
||||||
|
@ -66,7 +64,6 @@ class UploadFileRequest extends Request
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
$put_results = Storage::put($dirname.$file_name, file_get_contents($file));
|
$put_results = Storage::put($dirname.$file_name, file_get_contents($file));
|
||||||
Log::debug("Here are the '$put_results' (should be 0 or 1 or true or false or something?)");
|
|
||||||
}
|
}
|
||||||
return $file_name;
|
return $file_name;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<?php
|
<?php
|
||||||
return array (
|
return array (
|
||||||
'app_version' => 'v7.1.15',
|
'app_version' => 'v7.1.16',
|
||||||
'full_app_version' => 'v7.1.15 - build 16526-g5e465fa41',
|
'full_app_version' => 'v7.1.16 - build 16564-gfb857ccf5',
|
||||||
'build_version' => '16526',
|
'build_version' => '16564',
|
||||||
'prerelease_version' => '',
|
'prerelease_version' => '',
|
||||||
'hash_version' => 'g5e465fa41',
|
'hash_version' => 'gfb857ccf5',
|
||||||
'full_hash' => 'v7.1.15-472-g5e465fa41',
|
'full_hash' => 'v7.1.16-510-gfb857ccf5',
|
||||||
'branch' => 'master',
|
'branch' => 'master',
|
||||||
);
|
);
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'crwdns1987:0crwdne1987:0',
|
'footer_text' => 'crwdns1987:0crwdne1987:0',
|
||||||
'footer_text_help' => 'crwdns1988:0crwdne1988:0',
|
'footer_text_help' => 'crwdns1988:0crwdne1988:0',
|
||||||
'general_settings' => 'crwdns1297:0crwdne1297:0',
|
'general_settings' => 'crwdns1297:0crwdne1297:0',
|
||||||
'general_settings_keywords' => 'crwdns12084:0crwdne12084:0',
|
|
||||||
'general_settings_help' => 'crwdns6341:0crwdne6341:0',
|
'general_settings_help' => 'crwdns6341:0crwdne6341:0',
|
||||||
'generate_backup' => 'crwdns1427:0crwdne1427:0',
|
'generate_backup' => 'crwdns1427:0crwdne1427:0',
|
||||||
'google_workspaces' => 'crwdns12080:0crwdne12080:0',
|
'google_workspaces' => 'crwdns12080:0crwdne12080:0',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'crwdns1120:0crwdne1120:0',
|
'php' => 'crwdns1120:0crwdne1120:0',
|
||||||
'php_info' => 'crwdns12298:0crwdne12298:0',
|
'php_info' => 'crwdns12298:0crwdne12298:0',
|
||||||
'php_overview' => 'crwdns6367:0crwdne6367:0',
|
'php_overview' => 'crwdns6367:0crwdne6367:0',
|
||||||
'php_overview_keywords' => 'crwdns6369:0crwdne6369:0',
|
|
||||||
'php_overview_help' => 'crwdns6371:0crwdne6371:0',
|
'php_overview_help' => 'crwdns6371:0crwdne6371:0',
|
||||||
'php_gd_info' => 'crwdns833:0crwdne833:0',
|
'php_gd_info' => 'crwdns833:0crwdne833:0',
|
||||||
'php_gd_warning' => 'crwdns834:0crwdne834:0',
|
'php_gd_warning' => 'crwdns834:0crwdne834:0',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'crwdns840:0crwdne840:0',
|
'update' => 'crwdns840:0crwdne840:0',
|
||||||
'value' => 'crwdns841:0crwdne841:0',
|
'value' => 'crwdns841:0crwdne841:0',
|
||||||
'brand' => 'crwdns1433:0crwdne1433:0',
|
'brand' => 'crwdns1433:0crwdne1433:0',
|
||||||
'brand_keywords' => 'crwdns6397:0crwdne6397:0',
|
|
||||||
'brand_help' => 'crwdns6399:0crwdne6399:0',
|
'brand_help' => 'crwdns6399:0crwdne6399:0',
|
||||||
'web_brand' => 'crwdns5916:0crwdne5916:0',
|
'web_brand' => 'crwdns5916:0crwdne5916:0',
|
||||||
'about_settings_title' => 'crwdns1434:0crwdne1434:0',
|
'about_settings_title' => 'crwdns1434:0crwdne1434:0',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'crwdns6431:0crwdne6431:0',
|
'filter_by_keyword' => 'crwdns6431:0crwdne6431:0',
|
||||||
'security' => 'crwdns6433:0crwdne6433:0',
|
'security' => 'crwdns6433:0crwdne6433:0',
|
||||||
'security_title' => 'crwdns6435:0crwdne6435:0',
|
'security_title' => 'crwdns6435:0crwdne6435:0',
|
||||||
'security_keywords' => 'crwdns6437:0crwdne6437:0',
|
|
||||||
'security_help' => 'crwdns6439:0crwdne6439:0',
|
'security_help' => 'crwdns6439:0crwdne6439:0',
|
||||||
'groups_keywords' => 'crwdns6441:0crwdne6441:0',
|
|
||||||
'groups_help' => 'crwdns6443:0crwdne6443:0',
|
'groups_help' => 'crwdns6443:0crwdne6443:0',
|
||||||
'localization' => 'crwdns6445:0crwdne6445:0',
|
'localization' => 'crwdns6445:0crwdne6445:0',
|
||||||
'localization_title' => 'crwdns6447:0crwdne6447:0',
|
'localization_title' => 'crwdns6447:0crwdne6447:0',
|
||||||
'localization_keywords' => 'crwdns6449:0crwdne6449:0',
|
|
||||||
'localization_help' => 'crwdns6451:0crwdne6451:0',
|
'localization_help' => 'crwdns6451:0crwdne6451:0',
|
||||||
'notifications' => 'crwdns6453:0crwdne6453:0',
|
'notifications' => 'crwdns6453:0crwdne6453:0',
|
||||||
'notifications_help' => 'crwdns11363:0crwdne11363:0',
|
'notifications_help' => 'crwdns11363:0crwdne11363:0',
|
||||||
'asset_tags_help' => 'crwdns6457:0crwdne6457:0',
|
'asset_tags_help' => 'crwdns6457:0crwdne6457:0',
|
||||||
'labels' => 'crwdns6459:0crwdne6459:0',
|
'labels' => 'crwdns6459:0crwdne6459:0',
|
||||||
'labels_title' => 'crwdns6461:0crwdne6461:0',
|
'labels_title' => 'crwdns6461:0crwdne6461:0',
|
||||||
'labels_help' => 'crwdns6463:0crwdne6463:0',
|
'labels_help' => 'crwdns12840:0crwdne12840:0',
|
||||||
'purge_keywords' => 'crwdns6467:0crwdne6467:0',
|
|
||||||
'purge_help' => 'crwdns6469:0crwdne6469:0',
|
'purge_help' => 'crwdns6469:0crwdne6469:0',
|
||||||
'ldap_extension_warning' => 'crwdns6471:0crwdne6471:0',
|
'ldap_extension_warning' => 'crwdns6471:0crwdne6471:0',
|
||||||
'ldap_ad' => 'crwdns6473:0crwdne6473:0',
|
'ldap_ad' => 'crwdns6473:0crwdne6473:0',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'crwdns11745:0crwdne11745:0',
|
'label2_2d_type' => 'crwdns11745:0crwdne11745:0',
|
||||||
'label2_2d_type_help' => 'crwdns11747:0crwdne11747:0',
|
'label2_2d_type_help' => 'crwdns11747:0crwdne11747:0',
|
||||||
'label2_2d_target' => 'crwdns11749:0crwdne11749:0',
|
'label2_2d_target' => 'crwdns11749:0crwdne11749:0',
|
||||||
'label2_2d_target_help' => 'crwdns11751:0crwdne11751:0',
|
'label2_2d_target_help' => 'crwdns12832:0crwdne12832:0',
|
||||||
'label2_fields' => 'crwdns11753:0crwdne11753:0',
|
'label2_fields' => 'crwdns11753:0crwdne11753:0',
|
||||||
'label2_fields_help' => 'crwdns11755:0crwdne11755:0',
|
'label2_fields_help' => 'crwdns11755:0crwdne11755:0',
|
||||||
'help_asterisk_bold' => 'crwdns11757:0crwdne11757:0',
|
'help_asterisk_bold' => 'crwdns11757:0crwdne11757:0',
|
||||||
'help_blank_to_use' => 'crwdns11759:0crwdne11759:0',
|
'help_blank_to_use' => 'crwdns11759:0crwdne11759:0',
|
||||||
'help_default_will_use' => 'crwdns12828:0crwdne12828:0',
|
'help_default_will_use' => 'crwdns12834:0crwdne12834:0',
|
||||||
|
'asset_id' => 'crwdns12836:0crwdne12836:0',
|
||||||
|
'data' => 'crwdns12838:0crwdne12838:0',
|
||||||
'default' => 'crwdns11763:0crwdne11763:0',
|
'default' => 'crwdns11763:0crwdne11763:0',
|
||||||
'none' => 'crwdns11765:0crwdne11765:0',
|
'none' => 'crwdns11765:0crwdne11765:0',
|
||||||
'google_callback_help' => 'crwdns11615:0crwdne11615:0',
|
'google_callback_help' => 'crwdns11615:0crwdne11615:0',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'crwdns12682:0crwdne12682:0',
|
'due_checkin_days_help' => 'crwdns12682:0crwdne12682:0',
|
||||||
'no_groups' => 'crwdns12760:0crwdne12760:0',
|
'no_groups' => 'crwdns12760:0crwdne12760:0',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'crwdns12842:0crwdne12842:0',
|
||||||
|
'general_settings' => 'crwdns12844:0crwdne12844:0',
|
||||||
|
'groups' => 'crwdns12846:0crwdne12846:0',
|
||||||
|
'labels' => 'crwdns12848:0crwdne12848:0',
|
||||||
|
'localization' => 'crwdns12850:0crwdne12850:0',
|
||||||
|
'php_overview' => 'crwdns12852:0crwdne12852:0',
|
||||||
|
'purge' => 'crwdns12854:0crwdne12854:0',
|
||||||
|
'security' => 'crwdns12856:0crwdne12856:0',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'crwdns11381:0crwdne11381:0',
|
'error' => 'crwdns11381:0crwdne11381:0',
|
||||||
'error_redirect' => 'crwdns11843:0crwdne11843:0',
|
'error_redirect' => 'crwdns11843:0crwdne11843:0',
|
||||||
'error_misc' => 'crwdns11383:0crwdne11383:0',
|
'error_misc' => 'crwdns11383:0crwdne11383:0',
|
||||||
|
'webhook_fail' => 'crwdns12830:0crwdne12830:0',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'crwdns1074:0crwdne1074:0',
|
'no_results' => 'crwdns1074:0crwdne1074:0',
|
||||||
'no' => 'crwdns1075:0crwdne1075:0',
|
'no' => 'crwdns1075:0crwdne1075:0',
|
||||||
'notes' => 'crwdns1076:0crwdne1076:0',
|
'notes' => 'crwdns1076:0crwdne1076:0',
|
||||||
|
'note_added' => 'crwdns12858:0crwdne12858:0',
|
||||||
|
'add_note' => 'crwdns12860:0crwdne12860:0',
|
||||||
|
'note_edited' => 'crwdns12862:0crwdne12862:0',
|
||||||
|
'edit_note' => 'crwdns12864:0crwdne12864:0',
|
||||||
|
'note_deleted' => 'crwdns12866:0crwdne12866:0',
|
||||||
|
'delete_note' => 'crwdns12868:0crwdne12868:0',
|
||||||
'order_number' => 'crwdns1829:0crwdne1829:0',
|
'order_number' => 'crwdns1829:0crwdne1829:0',
|
||||||
'only_deleted' => 'crwdns10520:0crwdne10520:0',
|
'only_deleted' => 'crwdns10520:0crwdne10520:0',
|
||||||
'page_menu' => 'crwdns1276:0crwdne1276:0',
|
'page_menu' => 'crwdns1276:0crwdne1276:0',
|
||||||
|
@ -566,5 +572,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'crwdns12692:0crwdne12692:0',
|
'import_asset_tag_exists' => 'crwdns12692:0crwdne12692:0',
|
||||||
'countries_manually_entered_help' => 'crwdns12702:0crwdne12702:0',
|
'countries_manually_entered_help' => 'crwdns12702:0crwdne12702:0',
|
||||||
'accessories_assigned' => 'crwdns12800:0crwdne12800:0',
|
'accessories_assigned' => 'crwdns12800:0crwdne12800:0',
|
||||||
|
'user_managed_passwords' => 'crwdns12870:0crwdne12870:0',
|
||||||
|
'user_managed_passwords_disallow' => 'crwdns12872:0crwdne12872:0',
|
||||||
|
'user_managed_passwords_allow' => 'crwdns12874:0crwdne12874:0',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Additional Footer Text ',
|
'footer_text' => 'Additional Footer Text ',
|
||||||
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
||||||
'general_settings' => 'Algemene instellings',
|
'general_settings' => 'Algemene instellings',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Default EULA and more',
|
'general_settings_help' => 'Default EULA and more',
|
||||||
'generate_backup' => 'Genereer rugsteun',
|
'generate_backup' => 'Genereer rugsteun',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP weergawe',
|
'php' => 'PHP weergawe',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'Jy moet php-gd installeer om QR-kodes te vertoon, sien installeringsinstruksies.',
|
'php_gd_info' => 'Jy moet php-gd installeer om QR-kodes te vertoon, sien installeringsinstruksies.',
|
||||||
'php_gd_warning' => 'PHP Image Processing en GD plugin is NIE geïnstalleer nie.',
|
'php_gd_warning' => 'PHP Image Processing en GD plugin is NIE geïnstalleer nie.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Opdateer instellings',
|
'update' => 'Opdateer instellings',
|
||||||
'value' => 'waarde',
|
'value' => 'waarde',
|
||||||
'brand' => 'Handelsmerk',
|
'brand' => 'Handelsmerk',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
|
||||||
'brand_help' => 'Logo, Site Name',
|
'brand_help' => 'Logo, Site Name',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'Oor instellings',
|
'about_settings_title' => 'Oor instellings',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter by setting keyword',
|
'filter_by_keyword' => 'Filter by setting keyword',
|
||||||
'security' => 'Security',
|
'security' => 'Security',
|
||||||
'security_title' => 'Update Security Settings',
|
'security_title' => 'Update Security Settings',
|
||||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
|
||||||
'security_help' => 'Two-factor, Password Restrictions',
|
'security_help' => 'Two-factor, Password Restrictions',
|
||||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
|
||||||
'groups_help' => 'Account permission groups',
|
'groups_help' => 'Account permission groups',
|
||||||
'localization' => 'Localization',
|
'localization' => 'Localization',
|
||||||
'localization_title' => 'Update Localization Settings',
|
'localization_title' => 'Update Localization Settings',
|
||||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
|
||||||
'localization_help' => 'Language, date display',
|
'localization_help' => 'Language, date display',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||||
'asset_tags_help' => 'Incrementing and prefixes',
|
'asset_tags_help' => 'Incrementing and prefixes',
|
||||||
'labels' => 'Labels',
|
'labels' => 'Labels',
|
||||||
'labels_title' => 'Update Label Settings',
|
'labels_title' => 'Update Label Settings',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'permanently delete',
|
|
||||||
'purge_help' => 'Verwyder verwyderde rekords',
|
'purge_help' => 'Verwyder verwyderde rekords',
|
||||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D Barcode Type',
|
'label2_2d_type' => '2D Barcode Type',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'permissions, permission groups, authorization',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'permanently delete',
|
||||||
|
'security' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'Something went wrong. :( ',
|
'error_misc' => 'Something went wrong. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Geen resultate.',
|
'no_results' => 'Geen resultate.',
|
||||||
'no' => 'Geen',
|
'no' => 'Geen',
|
||||||
'notes' => 'notas',
|
'notes' => 'notas',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Bestellingnommer',
|
'order_number' => 'Bestellingnommer',
|
||||||
'only_deleted' => 'Only Deleted Assets',
|
'only_deleted' => 'Only Deleted Assets',
|
||||||
'page_menu' => 'Wys _MENU_ items',
|
'page_menu' => 'Wys _MENU_ items',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Additional Footer Text ',
|
'footer_text' => 'Additional Footer Text ',
|
||||||
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
||||||
'general_settings' => 'General Settings',
|
'general_settings' => 'General Settings',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Default EULA and more',
|
'general_settings_help' => 'Default EULA and more',
|
||||||
'generate_backup' => 'Generate Backup',
|
'generate_backup' => 'Generate Backup',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP Version',
|
'php' => 'PHP Version',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'You must install php-gd to display QR codes, see install instructions.',
|
'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.',
|
'php_gd_warning' => 'PHP Image Processing and GD plugin is NOT installed.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Update Settings',
|
'update' => 'Update Settings',
|
||||||
'value' => 'Value',
|
'value' => 'Value',
|
||||||
'brand' => 'Branding',
|
'brand' => 'Branding',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
|
||||||
'brand_help' => 'Logo, Site Name',
|
'brand_help' => 'Logo, Site Name',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'About Settings',
|
'about_settings_title' => 'About Settings',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter by setting keyword',
|
'filter_by_keyword' => 'Filter by setting keyword',
|
||||||
'security' => 'Security',
|
'security' => 'Security',
|
||||||
'security_title' => 'Update Security Settings',
|
'security_title' => 'Update Security Settings',
|
||||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
|
||||||
'security_help' => 'Two-factor, Password Restrictions',
|
'security_help' => 'Two-factor, Password Restrictions',
|
||||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
|
||||||
'groups_help' => 'Account permission groups',
|
'groups_help' => 'Account permission groups',
|
||||||
'localization' => 'Localization',
|
'localization' => 'Localization',
|
||||||
'localization_title' => 'Update Localization Settings',
|
'localization_title' => 'Update Localization Settings',
|
||||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
|
||||||
'localization_help' => 'Language, date display',
|
'localization_help' => 'Language, date display',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||||
'asset_tags_help' => 'Incrementing and prefixes',
|
'asset_tags_help' => 'Incrementing and prefixes',
|
||||||
'labels' => 'Labels',
|
'labels' => 'Labels',
|
||||||
'labels_title' => 'Update Label Settings',
|
'labels_title' => 'Update Label Settings',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'permanently delete',
|
|
||||||
'purge_help' => 'Purge Deleted Records',
|
'purge_help' => 'Purge Deleted Records',
|
||||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D Barcode Type',
|
'label2_2d_type' => '2D Barcode Type',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'permissions, permission groups, authorization',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'permanently delete',
|
||||||
|
'security' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'Something went wrong. :( ',
|
'error_misc' => 'Something went wrong. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'No Results.',
|
'no_results' => 'No Results.',
|
||||||
'no' => 'No',
|
'no' => 'No',
|
||||||
'notes' => 'Notes',
|
'notes' => 'Notes',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Order Number',
|
'order_number' => 'Order Number',
|
||||||
'only_deleted' => 'Only Deleted Assets',
|
'only_deleted' => 'Only Deleted Assets',
|
||||||
'page_menu' => 'Showing _MENU_ items',
|
'page_menu' => 'Showing _MENU_ items',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'إضافة نص لتذييل الصفحة ',
|
'footer_text' => 'إضافة نص لتذييل الصفحة ',
|
||||||
'footer_text_help' => 'سيظهر هذا النص في تذييل الجانب الأيمن. يُسمح باستخدام الروابط باستخدام < href="https://help.github.com/articles/github-flavored-markdown/">eGithub بنكهة markdown</a>. فواصل الأسطر، رؤوس، الصور، الخ قد يؤدي إلى نتائج غير متوقعة.',
|
'footer_text_help' => 'سيظهر هذا النص في تذييل الجانب الأيمن. يُسمح باستخدام الروابط باستخدام < href="https://help.github.com/articles/github-flavored-markdown/">eGithub بنكهة markdown</a>. فواصل الأسطر، رؤوس، الصور، الخ قد يؤدي إلى نتائج غير متوقعة.',
|
||||||
'general_settings' => 'الاعدادات العامة',
|
'general_settings' => 'الاعدادات العامة',
|
||||||
'general_settings_keywords' => 'دعم الشركة، التوقيع، القبول، تنسيق البريد الإلكتروني، تنسيق اسم المستخدم، الصور، لكل صفحة، صورة مصغرة، إيولا، الجاذبية، التصورات، لوحة التحكم، الخصوصية',
|
|
||||||
'general_settings_help' => 'اتفاقية ترخيص المستخدم الافتراضية والمزيد',
|
'general_settings_help' => 'اتفاقية ترخيص المستخدم الافتراضية والمزيد',
|
||||||
'generate_backup' => 'إنشاء النسخ الاحتياطي',
|
'generate_backup' => 'إنشاء النسخ الاحتياطي',
|
||||||
'google_workspaces' => 'مساحات عمل جوجل',
|
'google_workspaces' => 'مساحات عمل جوجل',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'نسخة فب',
|
'php' => 'نسخة فب',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, النظام, معلومات',
|
|
||||||
'php_overview_help' => 'معلومات نظام PHP',
|
'php_overview_help' => 'معلومات نظام PHP',
|
||||||
'php_gd_info' => 'يجب تثبيت فب-غ لعرض رموز قر، راجع تعليمات التثبيت.',
|
'php_gd_info' => 'يجب تثبيت فب-غ لعرض رموز قر، راجع تعليمات التثبيت.',
|
||||||
'php_gd_warning' => 'لم يتم تثبيت فب معالجة الصور و غ المساعد.',
|
'php_gd_warning' => 'لم يتم تثبيت فب معالجة الصور و غ المساعد.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'إعدادات التحديث',
|
'update' => 'إعدادات التحديث',
|
||||||
'value' => 'القيمة',
|
'value' => 'القيمة',
|
||||||
'brand' => 'العلامات التجارية',
|
'brand' => 'العلامات التجارية',
|
||||||
'brand_keywords' => 'قدم, الشعار, الطباعة, الموضوع, الجلد , الرأس , الألوان , الألوان',
|
|
||||||
'brand_help' => 'الشعار ، اسم الموقع',
|
'brand_help' => 'الشعار ، اسم الموقع',
|
||||||
'web_brand' => 'نوع العلامات التجارية للويب',
|
'web_brand' => 'نوع العلامات التجارية للويب',
|
||||||
'about_settings_title' => 'حول الإعدادات',
|
'about_settings_title' => 'حول الإعدادات',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'تصفية عن طريق إعداد الكلمة المفتاحية',
|
'filter_by_keyword' => 'تصفية عن طريق إعداد الكلمة المفتاحية',
|
||||||
'security' => 'أمان',
|
'security' => 'أمان',
|
||||||
'security_title' => 'تحديث إعدادات الأمان',
|
'security_title' => 'تحديث إعدادات الأمان',
|
||||||
'security_keywords' => 'كلمة المرور، كلمة المرور، كلمات المرور، المتطلبات، عاملان، كلمات المرور الشائعة، تسجيل الدخول، المصادقة',
|
|
||||||
'security_help' => 'عاملين، قيود كلمة المرور',
|
'security_help' => 'عاملين، قيود كلمة المرور',
|
||||||
'groups_keywords' => 'الأذونات، مجموعات الأذونات، تفويض',
|
|
||||||
'groups_help' => 'مجموعات إذن الحساب',
|
'groups_help' => 'مجموعات إذن الحساب',
|
||||||
'localization' => 'التعريب',
|
'localization' => 'التعريب',
|
||||||
'localization_title' => 'تحديث إعدادات التعريب',
|
'localization_title' => 'تحديث إعدادات التعريب',
|
||||||
'localization_keywords' => 'التعميم، العملة، المحلية المحلية، المحلية والمنطقة الزمنية، المنطقة الزمنية، الدولية، الاستيعاب، اللغة، الترجمة',
|
|
||||||
'localization_help' => 'اللغة، عرض التاريخ',
|
'localization_help' => 'اللغة، عرض التاريخ',
|
||||||
'notifications' => 'الإشعارات',
|
'notifications' => 'الإشعارات',
|
||||||
'notifications_help' => 'إعدادات تنبيهات ومراجعة حسابات البريد الإلكتروني',
|
'notifications_help' => 'إعدادات تنبيهات ومراجعة حسابات البريد الإلكتروني',
|
||||||
'asset_tags_help' => 'زيادة والبادئات',
|
'asset_tags_help' => 'زيادة والبادئات',
|
||||||
'labels' => 'التسميات',
|
'labels' => 'التسميات',
|
||||||
'labels_title' => 'تحديث إعدادات التسمية',
|
'labels_title' => 'تحديث إعدادات التسمية',
|
||||||
'labels_help' => 'أحجام التسمية & الإعدادات',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'حذف نهائيًا',
|
|
||||||
'purge_help' => 'تطهير السجلات المحذوفة',
|
'purge_help' => 'تطهير السجلات المحذوفة',
|
||||||
'ldap_extension_warning' => 'لا يبدو أن ملحق LDAP مثبت أو مفعّل على هذا الخادم. لا يزال بإمكانك حفظ الإعدادات الخاصة بك، ولكن ستحتاج إلى تمكين ملحق LDAP لـ PHP قبل أن تعمل مزامنة LDAP أو تسجيل الدخول.',
|
'ldap_extension_warning' => 'لا يبدو أن ملحق LDAP مثبت أو مفعّل على هذا الخادم. لا يزال بإمكانك حفظ الإعدادات الخاصة بك، ولكن ستحتاج إلى تمكين ملحق LDAP لـ PHP قبل أن تعمل مزامنة LDAP أو تسجيل الدخول.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D نوع الباركود',
|
'label2_2d_type' => '2D نوع الباركود',
|
||||||
'label2_2d_type_help' => 'تنسيق الباركود ثنائية الأبعاد',
|
'label2_2d_type_help' => 'تنسيق الباركود ثنائية الأبعاد',
|
||||||
'label2_2d_target' => 'هدف الباركود 2D',
|
'label2_2d_target' => 'هدف الباركود 2D',
|
||||||
'label2_2d_target_help' => 'عنوان URL الباركود 2D يشير إلى عندما يتم مسحه',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'تعاريف الحقل',
|
'label2_fields' => 'تعاريف الحقل',
|
||||||
'label2_fields_help' => 'يمكن إضافة الحقول وإزالتها وإعادة ترتيبها في العمود الأيسر. لكل حقل ، يمكن إضافة خيارات متعددة للتسمية و DataSource ، وإزالتها وإعادة ترتيبها في العمود الأيمن.',
|
'label2_fields_help' => 'يمكن إضافة الحقول وإزالتها وإعادة ترتيبها في العمود الأيسر. لكل حقل ، يمكن إضافة خيارات متعددة للتسمية و DataSource ، وإزالتها وإعادة ترتيبها في العمود الأيمن.',
|
||||||
'help_asterisk_bold' => 'النص الذي تم إدخاله كـ <code>**text**</code> سيتم عرضه بالخط العريض',
|
'help_asterisk_bold' => 'النص الذي تم إدخاله كـ <code>**text**</code> سيتم عرضه بالخط العريض',
|
||||||
'help_blank_to_use' => 'اتركه فارغاً لاستخدام القيمة من <code>:setting_name</code>',
|
'help_blank_to_use' => 'اتركه فارغاً لاستخدام القيمة من <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'الافتراضي',
|
'default' => 'الافتراضي',
|
||||||
'none' => 'لا',
|
'none' => 'لا',
|
||||||
'google_callback_help' => 'يجب إدخال هذا كعنوان URL لرد الاتصال في إعدادات تطبيق Google OAuth في مؤسستك's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'يجب إدخال هذا كعنوان URL لرد الاتصال في إعدادات تطبيق Google OAuth في مؤسستك's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'قدم, الشعار, الطباعة, الموضوع, الجلد , الرأس , الألوان , الألوان',
|
||||||
|
'general_settings' => 'دعم الشركة، التوقيع، القبول، تنسيق البريد الإلكتروني، تنسيق اسم المستخدم، الصور، لكل صفحة، صورة مصغرة، إيولا، الجاذبية، التصورات، لوحة التحكم، الخصوصية',
|
||||||
|
'groups' => 'الأذونات، مجموعات الأذونات، تفويض',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'التعميم، العملة، المحلية المحلية، المحلية والمنطقة الزمنية، المنطقة الزمنية، الدولية، الاستيعاب، اللغة، الترجمة',
|
||||||
|
'php_overview' => 'phpinfo, النظام, معلومات',
|
||||||
|
'purge' => 'حذف نهائيًا',
|
||||||
|
'security' => 'كلمة المرور، كلمة المرور، كلمات المرور، المتطلبات، عاملان، كلمات المرور الشائعة، تسجيل الدخول، المصادقة',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'حدث خطأ ما. استجاب :app :error_message',
|
'error' => 'حدث خطأ ما. استجاب :app :error_message',
|
||||||
'error_redirect' => 'خطأ: 301/302 :endpoint يرجع إعادة توجيه. لأسباب أمنية، نحن لا نتابع إعادة التوجيه. الرجاء استخدام نقطة النهاية الفعلية.',
|
'error_redirect' => 'خطأ: 301/302 :endpoint يرجع إعادة توجيه. لأسباب أمنية، نحن لا نتابع إعادة التوجيه. الرجاء استخدام نقطة النهاية الفعلية.',
|
||||||
'error_misc' => 'حدث خطأ ما. :( ',
|
'error_misc' => 'حدث خطأ ما. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'لا يوجد نتائج.',
|
'no_results' => 'لا يوجد نتائج.',
|
||||||
'no' => 'لا',
|
'no' => 'لا',
|
||||||
'notes' => 'مُلاحظات',
|
'notes' => 'مُلاحظات',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'رقم الأمر',
|
'order_number' => 'رقم الأمر',
|
||||||
'only_deleted' => 'الأصول المحذوفة فقط',
|
'only_deleted' => 'الأصول المحذوفة فقط',
|
||||||
'page_menu' => 'عرض عناصر _MENU_',
|
'page_menu' => 'عرض عناصر _MENU_',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Допълнителен текст във футъра',
|
'footer_text' => 'Допълнителен текст във футъра',
|
||||||
'footer_text_help' => 'Този текст ще се визуализира в дясната част на футъра. Връзки могат да бъдат добавяни с използването на <a href="https://help.github.com/articles/github-flavored-markdown/">Github тип markdown</a>. Нови редове, хедър тагове, изображения и т.н. могат да доведат до непредвидими резултати.',
|
'footer_text_help' => 'Този текст ще се визуализира в дясната част на футъра. Връзки могат да бъдат добавяни с използването на <a href="https://help.github.com/articles/github-flavored-markdown/">Github тип markdown</a>. Нови редове, хедър тагове, изображения и т.н. могат да доведат до непредвидими резултати.',
|
||||||
'general_settings' => 'Общи настройки',
|
'general_settings' => 'Общи настройки',
|
||||||
'general_settings_keywords' => 'поддръжка, подписи, получаване, формат на е-майл, формат на потребителско име, снимки, страници, иконки, EULA, Gravatar, tos, панели, поверителност',
|
|
||||||
'general_settings_help' => 'Общи условия и други',
|
'general_settings_help' => 'Общи условия и други',
|
||||||
'generate_backup' => 'Създаване на архив',
|
'generate_backup' => 'Създаване на архив',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP версия',
|
'php' => 'PHP версия',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, система, информация',
|
|
||||||
'php_overview_help' => 'PHP Системна информация',
|
'php_overview_help' => 'PHP Системна информация',
|
||||||
'php_gd_info' => 'Необходимо е да инсталирате php-gd, за да визуализирате QR кодове. Моля прегледайте инструкцията за инсталация.',
|
'php_gd_info' => 'Необходимо е да инсталирате php-gd, за да визуализирате QR кодове. Моля прегледайте инструкцията за инсталация.',
|
||||||
'php_gd_warning' => 'php-gd НЕ е инсталиран.',
|
'php_gd_warning' => 'php-gd НЕ е инсталиран.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Обновяване на настройките',
|
'update' => 'Обновяване на настройките',
|
||||||
'value' => 'Стойност',
|
'value' => 'Стойност',
|
||||||
'brand' => 'Брандиране',
|
'brand' => 'Брандиране',
|
||||||
'brand_keywords' => 'долен колонтитул, лого, печат, тема, скин, горен колонтитул, цветове, css',
|
|
||||||
'brand_help' => 'Лого, Име на сайт',
|
'brand_help' => 'Лого, Име на сайт',
|
||||||
'web_brand' => 'Тип уеб брандиране',
|
'web_brand' => 'Тип уеб брандиране',
|
||||||
'about_settings_title' => 'Относно настройките',
|
'about_settings_title' => 'Относно настройките',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Филтър по ключова дума',
|
'filter_by_keyword' => 'Филтър по ключова дума',
|
||||||
'security' => 'Сигурност',
|
'security' => 'Сигурност',
|
||||||
'security_title' => 'Обнови настройките за сигурност',
|
'security_title' => 'Обнови настройките за сигурност',
|
||||||
'security_keywords' => 'парола, парили, изисквания, двустепенна идентификация, двустепенна-идентификация, общи пароли, отдалечен вход, изход, идентификация',
|
|
||||||
'security_help' => 'Двустепенна идентификация, ограничения на пароли',
|
'security_help' => 'Двустепенна идентификация, ограничения на пароли',
|
||||||
'groups_keywords' => 'права за достъп, групи за достъп, упълномощаване',
|
|
||||||
'groups_help' => 'Групи с разрешения за акаунт',
|
'groups_help' => 'Групи с разрешения за акаунт',
|
||||||
'localization' => 'Локализация',
|
'localization' => 'Локализация',
|
||||||
'localization_title' => 'Обнови настройките за локализация',
|
'localization_title' => 'Обнови настройките за локализация',
|
||||||
'localization_keywords' => 'локализация, валута, местен, място, часова зона, международен, интернационализация, език, езици, превод',
|
|
||||||
'localization_help' => 'Език, дата формат',
|
'localization_help' => 'Език, дата формат',
|
||||||
'notifications' => 'Известия',
|
'notifications' => 'Известия',
|
||||||
'notifications_help' => 'Настройки на е-майл известия',
|
'notifications_help' => 'Настройки на е-майл известия',
|
||||||
'asset_tags_help' => 'Автоматично номериране и префикси',
|
'asset_tags_help' => 'Автоматично номериране и префикси',
|
||||||
'labels' => 'Етикети',
|
'labels' => 'Етикети',
|
||||||
'labels_title' => 'Обнови настройките на етикета',
|
'labels_title' => 'Обнови настройките на етикета',
|
||||||
'labels_help' => 'Размер на етикета & настройки',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'изтриване за постоянно',
|
|
||||||
'purge_help' => 'Пречисти изтрити записи',
|
'purge_help' => 'Пречисти изтрити записи',
|
||||||
'ldap_extension_warning' => 'Изглежда, че нямате инсталирани LDAP разширения или не са пуснати на сървъра. Вие можете все пак да запишите настройките, но ще трябва да включите LDAP разширенията за PHP преди да синхронизирате с LDAP, в противен случай няма да можете да се логнете.',
|
'ldap_extension_warning' => 'Изглежда, че нямате инсталирани LDAP разширения или не са пуснати на сървъра. Вие можете все пак да запишите настройките, но ще трябва да включите LDAP разширенията за PHP преди да синхронизирате с LDAP, в противен случай няма да можете да се логнете.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D тип на баркод',
|
'label2_2d_type' => '2D тип на баркод',
|
||||||
'label2_2d_type_help' => 'Формат на 2D баркод',
|
'label2_2d_type_help' => 'Формат на 2D баркод',
|
||||||
'label2_2d_target' => '2D баркод адрес',
|
'label2_2d_target' => '2D баркод адрес',
|
||||||
'label2_2d_target_help' => 'Къде да сочи URL адреса на 2D баркода, когато се сканира',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Настройки на полета',
|
'label2_fields' => 'Настройки на полета',
|
||||||
'label2_fields_help' => 'Полетата могат да бъдат добавяни, премахване и подреждани от лявата колона. За всяко едно поле, множество настройки могат да бъдат добавяни премахвани и подреждани в дясната колона.',
|
'label2_fields_help' => 'Полетата могат да бъдат добавяни, премахване и подреждани от лявата колона. За всяко едно поле, множество настройки могат да бъдат добавяни премахвани и подреждани в дясната колона.',
|
||||||
'help_asterisk_bold' => 'Текста въведен като <code>**text**</code> ,ще бъде показан удебелено',
|
'help_asterisk_bold' => 'Текста въведен като <code>**text**</code> ,ще бъде показан удебелено',
|
||||||
'help_blank_to_use' => 'Оставете празно за да се ползва стойност от <code>:setting_name</code>',
|
'help_blank_to_use' => 'Оставете празно за да се ползва стойност от <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Подразбиране',
|
'default' => 'Подразбиране',
|
||||||
'none' => 'Няма',
|
'none' => 'Няма',
|
||||||
'google_callback_help' => 'Това трябва да се въведе като callback URL във вашият Google OAuth настройки за вашата организация 's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'Това трябва да се въведе като callback URL във вашият Google OAuth настройки за вашата организация 's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'долен колонтитул, лого, печат, тема, скин, горен колонтитул, цветове, css',
|
||||||
|
'general_settings' => 'поддръжка, подписи, получаване, формат на е-майл, формат на потребителско име, снимки, страници, иконки, EULA, Gravatar, tos, панели, поверителност',
|
||||||
|
'groups' => 'права за достъп, групи за достъп, упълномощаване',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'локализация, валута, местен, място, часова зона, международен, интернационализация, език, езици, превод',
|
||||||
|
'php_overview' => 'phpinfo, система, информация',
|
||||||
|
'purge' => 'изтриване за постоянно',
|
||||||
|
'security' => 'парола, парили, изисквания, двустепенна идентификация, двустепенна-идентификация, общи пароли, отдалечен вход, изход, идентификация',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Възникна грешка. :app върна грешка: :error_message',
|
'error' => 'Възникна грешка. :app върна грешка: :error_message',
|
||||||
'error_redirect' => 'Грешка 301/302 :endpoint върна пренасочване. От съображения за сигурност, ние не отваряме пренасочванията. Моля ползвайте действителната крайна точка.',
|
'error_redirect' => 'Грешка 301/302 :endpoint върна пренасочване. От съображения за сигурност, ние не отваряме пренасочванията. Моля ползвайте действителната крайна точка.',
|
||||||
'error_misc' => 'Възникна грешка. :( ',
|
'error_misc' => 'Възникна грешка. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Няма резултат.',
|
'no_results' => 'Няма резултат.',
|
||||||
'no' => 'Не',
|
'no' => 'Не',
|
||||||
'notes' => 'Бележки',
|
'notes' => 'Бележки',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Номер на поръчка',
|
'order_number' => 'Номер на поръчка',
|
||||||
'only_deleted' => 'Само изтрити активи',
|
'only_deleted' => 'Само изтрити активи',
|
||||||
'page_menu' => 'Показване на _MENU_ записа',
|
'page_menu' => 'Показване на _MENU_ записа',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Additional Footer Text ',
|
'footer_text' => 'Additional Footer Text ',
|
||||||
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
||||||
'general_settings' => 'General Settings',
|
'general_settings' => 'General Settings',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Default EULA and more',
|
'general_settings_help' => 'Default EULA and more',
|
||||||
'generate_backup' => 'Generate Backup',
|
'generate_backup' => 'Generate Backup',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP Version',
|
'php' => 'PHP Version',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'You must install php-gd to display QR codes, see install instructions.',
|
'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.',
|
'php_gd_warning' => 'PHP Image Processing and GD plugin is NOT installed.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Update Settings',
|
'update' => 'Update Settings',
|
||||||
'value' => 'Value',
|
'value' => 'Value',
|
||||||
'brand' => 'Branding',
|
'brand' => 'Branding',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
|
||||||
'brand_help' => 'Logo, Site Name',
|
'brand_help' => 'Logo, Site Name',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'About Settings',
|
'about_settings_title' => 'About Settings',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter by setting keyword',
|
'filter_by_keyword' => 'Filter by setting keyword',
|
||||||
'security' => 'Security',
|
'security' => 'Security',
|
||||||
'security_title' => 'Update Security Settings',
|
'security_title' => 'Update Security Settings',
|
||||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
|
||||||
'security_help' => 'Two-factor, Password Restrictions',
|
'security_help' => 'Two-factor, Password Restrictions',
|
||||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
|
||||||
'groups_help' => 'Account permission groups',
|
'groups_help' => 'Account permission groups',
|
||||||
'localization' => 'Localization',
|
'localization' => 'Localization',
|
||||||
'localization_title' => 'Update Localization Settings',
|
'localization_title' => 'Update Localization Settings',
|
||||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
|
||||||
'localization_help' => 'Language, date display',
|
'localization_help' => 'Language, date display',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||||
'asset_tags_help' => 'Incrementing and prefixes',
|
'asset_tags_help' => 'Incrementing and prefixes',
|
||||||
'labels' => 'Labels',
|
'labels' => 'Labels',
|
||||||
'labels_title' => 'Update Label Settings',
|
'labels_title' => 'Update Label Settings',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'permanently delete',
|
|
||||||
'purge_help' => 'Purge Deleted Records',
|
'purge_help' => 'Purge Deleted Records',
|
||||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D Barcode Type',
|
'label2_2d_type' => '2D Barcode Type',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'permissions, permission groups, authorization',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'permanently delete',
|
||||||
|
'security' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'Something went wrong. :( ',
|
'error_misc' => 'Something went wrong. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'No Results.',
|
'no_results' => 'No Results.',
|
||||||
'no' => 'No',
|
'no' => 'No',
|
||||||
'notes' => 'Notes',
|
'notes' => 'Notes',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Order Number',
|
'order_number' => 'Order Number',
|
||||||
'only_deleted' => 'Only Deleted Assets',
|
'only_deleted' => 'Only Deleted Assets',
|
||||||
'page_menu' => 'Showing _MENU_ items',
|
'page_menu' => 'Showing _MENU_ items',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Additional Footer Text ',
|
'footer_text' => 'Additional Footer Text ',
|
||||||
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
||||||
'general_settings' => 'General Settings',
|
'general_settings' => 'General Settings',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Default EULA and more',
|
'general_settings_help' => 'Default EULA and more',
|
||||||
'generate_backup' => 'Generate Backup',
|
'generate_backup' => 'Generate Backup',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP Version',
|
'php' => 'PHP Version',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'You must install php-gd to display QR codes, see install instructions.',
|
'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.',
|
'php_gd_warning' => 'PHP Image Processing and GD plugin is NOT installed.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Update Settings',
|
'update' => 'Update Settings',
|
||||||
'value' => 'Value',
|
'value' => 'Value',
|
||||||
'brand' => 'Branding',
|
'brand' => 'Branding',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
|
||||||
'brand_help' => 'Logo, Site Name',
|
'brand_help' => 'Logo, Site Name',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'About Settings',
|
'about_settings_title' => 'About Settings',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter by setting keyword',
|
'filter_by_keyword' => 'Filter by setting keyword',
|
||||||
'security' => 'Security',
|
'security' => 'Security',
|
||||||
'security_title' => 'Update Security Settings',
|
'security_title' => 'Update Security Settings',
|
||||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
|
||||||
'security_help' => 'Two-factor, Password Restrictions',
|
'security_help' => 'Two-factor, Password Restrictions',
|
||||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
|
||||||
'groups_help' => 'Account permission groups',
|
'groups_help' => 'Account permission groups',
|
||||||
'localization' => 'Localization',
|
'localization' => 'Localization',
|
||||||
'localization_title' => 'Update Localization Settings',
|
'localization_title' => 'Update Localization Settings',
|
||||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
|
||||||
'localization_help' => 'Language, date display',
|
'localization_help' => 'Language, date display',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||||
'asset_tags_help' => 'Incrementing and prefixes',
|
'asset_tags_help' => 'Incrementing and prefixes',
|
||||||
'labels' => 'Labels',
|
'labels' => 'Labels',
|
||||||
'labels_title' => 'Update Label Settings',
|
'labels_title' => 'Update Label Settings',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'permanently delete',
|
|
||||||
'purge_help' => 'Purge Deleted Records',
|
'purge_help' => 'Purge Deleted Records',
|
||||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D Barcode Type',
|
'label2_2d_type' => '2D Barcode Type',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'permissions, permission groups, authorization',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'permanently delete',
|
||||||
|
'security' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'Something went wrong. :( ',
|
'error_misc' => 'Something went wrong. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'No Results.',
|
'no_results' => 'No Results.',
|
||||||
'no' => 'No',
|
'no' => 'No',
|
||||||
'notes' => 'Notes',
|
'notes' => 'Notes',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Order Number',
|
'order_number' => 'Order Number',
|
||||||
'only_deleted' => 'Only Deleted Assets',
|
'only_deleted' => 'Only Deleted Assets',
|
||||||
'page_menu' => 'Showing _MENU_ items',
|
'page_menu' => 'Showing _MENU_ items',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Další text do zápatí ',
|
'footer_text' => 'Další text do zápatí ',
|
||||||
'footer_text_help' => 'Tento text se zobrazí v pravém zápatí. Odkazy jsou povoleny pomocí <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Zalamování řádků, záhlaví, obrázky atd. mohou mít za následek nepředvídatelné výsledky.',
|
'footer_text_help' => 'Tento text se zobrazí v pravém zápatí. Odkazy jsou povoleny pomocí <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Zalamování řádků, záhlaví, obrázky atd. mohou mít za následek nepředvídatelné výsledky.',
|
||||||
'general_settings' => 'Obecné nastavení',
|
'general_settings' => 'Obecné nastavení',
|
||||||
'general_settings_keywords' => 'podpora společnosti, podpis, přijetí, e-mailový formát, formát uživatelského jména, obrázky, na stránku, náhled, eula, gravatar, toky, nástěnka, soukromí',
|
|
||||||
'general_settings_help' => 'Výchozí EULA a další',
|
'general_settings_help' => 'Výchozí EULA a další',
|
||||||
'generate_backup' => 'Vytvořit zálohu',
|
'generate_backup' => 'Vytvořit zálohu',
|
||||||
'google_workspaces' => 'Pracovní prostory Google',
|
'google_workspaces' => 'Pracovní prostory Google',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'Verze PHP',
|
'php' => 'Verze PHP',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, systém, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'Je nutné nainstalovat php-gd pro zobrazení QR kódů. Více v instalační příručce.',
|
'php_gd_info' => 'Je nutné nainstalovat php-gd pro zobrazení QR kódů. Více v instalační příručce.',
|
||||||
'php_gd_warning' => 'PHP pluginy pro zpracování obrazu a GD nejsou nainstalovány.',
|
'php_gd_warning' => 'PHP pluginy pro zpracování obrazu a GD nejsou nainstalovány.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Upravit nastavení',
|
'update' => 'Upravit nastavení',
|
||||||
'value' => 'Hodnota',
|
'value' => 'Hodnota',
|
||||||
'brand' => 'Opatřit značkou',
|
'brand' => 'Opatřit značkou',
|
||||||
'brand_keywords' => 'zápatí, logo, tisk, motiv, skin, záhlaví, barvy, css',
|
|
||||||
'brand_help' => 'Logo, název webu',
|
'brand_help' => 'Logo, název webu',
|
||||||
'web_brand' => 'Typ webového brandingu',
|
'web_brand' => 'Typ webového brandingu',
|
||||||
'about_settings_title' => 'O nastavení',
|
'about_settings_title' => 'O nastavení',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filtrovat podle klíčového slova',
|
'filter_by_keyword' => 'Filtrovat podle klíčového slova',
|
||||||
'security' => 'Zabezpečení',
|
'security' => 'Zabezpečení',
|
||||||
'security_title' => 'Aktualizovat nastavení zabezpečení',
|
'security_title' => 'Aktualizovat nastavení zabezpečení',
|
||||||
'security_keywords' => 'heslo, hesla, požadavky, dvou fázové, dvou-fázové, běžná hesla, vzdálené přihlášení, odhlášení, autentifikace',
|
|
||||||
'security_help' => 'Dvou-faktorové, Omezení hesel',
|
'security_help' => 'Dvou-faktorové, Omezení hesel',
|
||||||
'groups_keywords' => 'oprávnění, skupiny oprávnění, autorizace',
|
|
||||||
'groups_help' => 'Skupiny oprávnění k účtu',
|
'groups_help' => 'Skupiny oprávnění k účtu',
|
||||||
'localization' => 'Lokalizace',
|
'localization' => 'Lokalizace',
|
||||||
'localization_title' => 'Aktualizovat nastavení lokalizace',
|
'localization_title' => 'Aktualizovat nastavení lokalizace',
|
||||||
'localization_keywords' => 'lokalizace, měna, místní, místní, časové pásmo, mezinárodní, internatinalizace, jazyk, jazyky, překlad',
|
|
||||||
'localization_help' => 'Jazyk, zobrazení data',
|
'localization_help' => 'Jazyk, zobrazení data',
|
||||||
'notifications' => 'Oznámení',
|
'notifications' => 'Oznámení',
|
||||||
'notifications_help' => 'E-mailová oznámení a inventura',
|
'notifications_help' => 'E-mailová oznámení a inventura',
|
||||||
'asset_tags_help' => 'Nárůst a prefixy',
|
'asset_tags_help' => 'Nárůst a prefixy',
|
||||||
'labels' => 'Štítky',
|
'labels' => 'Štítky',
|
||||||
'labels_title' => 'Upravit nastavení štítků',
|
'labels_title' => 'Upravit nastavení štítků',
|
||||||
'labels_help' => 'Velikost štítků & nastavení',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'trvale odstranit',
|
|
||||||
'purge_help' => 'Vymazat smazané záznamy',
|
'purge_help' => 'Vymazat smazané záznamy',
|
||||||
'ldap_extension_warning' => 'Nevypadá to, že LDAP rozšíření je nainstalováno nebo povoleno na tomto serveru. Stále můžete uložit vaše nastavení, ale budete muset povolit LDAP rozšíření pro PHP, než bude fungovat LDAP synchronizace nebo přihlášení.',
|
'ldap_extension_warning' => 'Nevypadá to, že LDAP rozšíření je nainstalováno nebo povoleno na tomto serveru. Stále můžete uložit vaše nastavení, ale budete muset povolit LDAP rozšíření pro PHP, než bude fungovat LDAP synchronizace nebo přihlášení.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'Typ 2D čárového kódu',
|
'label2_2d_type' => 'Typ 2D čárového kódu',
|
||||||
'label2_2d_type_help' => 'Formát pro 2D čárové kódy',
|
'label2_2d_type_help' => 'Formát pro 2D čárové kódy',
|
||||||
'label2_2d_target' => 'Cíl 2D čárového kódu',
|
'label2_2d_target' => 'Cíl 2D čárového kódu',
|
||||||
'label2_2d_target_help' => 'Adresa URL 2D čárového kódu při naskenování',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Definice polí',
|
'label2_fields' => 'Definice polí',
|
||||||
'label2_fields_help' => 'Pole lze přidat, odstranit a seřadit v levém sloupci. Pro každé pole lze přidat více možností pro popisek a DataSource a odstranit a přeřadit je v pravém sloupci.',
|
'label2_fields_help' => 'Pole lze přidat, odstranit a seřadit v levém sloupci. Pro každé pole lze přidat více možností pro popisek a DataSource a odstranit a přeřadit je v pravém sloupci.',
|
||||||
'help_asterisk_bold' => 'Text zadaný jako <code>**text**</code> bude zobrazen tučně',
|
'help_asterisk_bold' => 'Text zadaný jako <code>**text**</code> bude zobrazen tučně',
|
||||||
'help_blank_to_use' => 'Ponechte prázdné pro použití hodnoty z <code>:setting_name</code>',
|
'help_blank_to_use' => 'Ponechte prázdné pro použití hodnoty z <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Výchozí',
|
'default' => 'Výchozí',
|
||||||
'none' => 'Nic',
|
'none' => 'Nic',
|
||||||
'google_callback_help' => 'Toto by mělo být zadáno jako URL zpětného volání v nastavení aplikace Google OAuth ve vaší organizaci's <strong><a href="https://console.cloud.google.com/" target="_blank">vývojová konzole Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'Toto by mělo být zadáno jako URL zpětného volání v nastavení aplikace Google OAuth ve vaší organizaci's <strong><a href="https://console.cloud.google.com/" target="_blank">vývojová konzole Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'zápatí, logo, tisk, motiv, skin, záhlaví, barvy, css',
|
||||||
|
'general_settings' => 'podpora společnosti, podpis, přijetí, e-mailový formát, formát uživatelského jména, obrázky, na stránku, náhled, eula, gravatar, toky, nástěnka, soukromí',
|
||||||
|
'groups' => 'oprávnění, skupiny oprávnění, autorizace',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'lokalizace, měna, místní, místní, časové pásmo, mezinárodní, internatinalizace, jazyk, jazyky, překlad',
|
||||||
|
'php_overview' => 'phpinfo, systém, info',
|
||||||
|
'purge' => 'trvale odstranit',
|
||||||
|
'security' => 'heslo, hesla, požadavky, dvou fázové, dvou-fázové, běžná hesla, vzdálené přihlášení, odhlášení, autentifikace',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Něco se pokazilo. :app odpověděla v: :error_message',
|
'error' => 'Něco se pokazilo. :app odpověděla v: :error_message',
|
||||||
'error_redirect' => 'CHYBA: 301/302 :endpoint vrací přesměrování. Z bezpečnostních důvodů nesledujeme přesměrování. Použijte prosím skutečný koncový bod.',
|
'error_redirect' => 'CHYBA: 301/302 :endpoint vrací přesměrování. Z bezpečnostních důvodů nesledujeme přesměrování. Použijte prosím skutečný koncový bod.',
|
||||||
'error_misc' => 'Něco se nepovedlo.',
|
'error_misc' => 'Něco se nepovedlo.',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Žádné výsledky.',
|
'no_results' => 'Žádné výsledky.',
|
||||||
'no' => 'Ne',
|
'no' => 'Ne',
|
||||||
'notes' => 'Poznámky',
|
'notes' => 'Poznámky',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Číslo objednávky',
|
'order_number' => 'Číslo objednávky',
|
||||||
'only_deleted' => 'Pouze odstraněné položky',
|
'only_deleted' => 'Pouze odstraněné položky',
|
||||||
'page_menu' => 'Zobrazuji _MENU_ položky',
|
'page_menu' => 'Zobrazuji _MENU_ položky',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Testun Troedyn Ychwanegol ',
|
'footer_text' => 'Testun Troedyn Ychwanegol ',
|
||||||
'footer_text_help' => 'Dangosir y text yma ir ochor dde yn y troedyn. Mae lincs yn dderbyniol gan defnyddio <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
'footer_text_help' => 'Dangosir y text yma ir ochor dde yn y troedyn. Mae lincs yn dderbyniol gan defnyddio <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
||||||
'general_settings' => 'Gosodiadau Cyffredinol',
|
'general_settings' => 'Gosodiadau Cyffredinol',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Default EULA and more',
|
'general_settings_help' => 'Default EULA and more',
|
||||||
'generate_backup' => 'Creu copi-wrth-gefn',
|
'generate_backup' => 'Creu copi-wrth-gefn',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'Fersiwn PHP',
|
'php' => 'Fersiwn PHP',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'Rhaid gossod php-gd i weld codau QR, gweler y canllaawiau gosod.',
|
'php_gd_info' => 'Rhaid gossod php-gd i weld codau QR, gweler y canllaawiau gosod.',
|
||||||
'php_gd_warning' => 'NID yw PHP IMage Processing a\'r plugin GD wedi osod.',
|
'php_gd_warning' => 'NID yw PHP IMage Processing a\'r plugin GD wedi osod.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Diweddaru Gosodiadau',
|
'update' => 'Diweddaru Gosodiadau',
|
||||||
'value' => 'Gwerth',
|
'value' => 'Gwerth',
|
||||||
'brand' => 'Brandio',
|
'brand' => 'Brandio',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
|
||||||
'brand_help' => 'Logo, Enw\'r Wefan',
|
'brand_help' => 'Logo, Enw\'r Wefan',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'Amdan Gosodiadau',
|
'about_settings_title' => 'Amdan Gosodiadau',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter by setting keyword',
|
'filter_by_keyword' => 'Filter by setting keyword',
|
||||||
'security' => 'Diogelwch',
|
'security' => 'Diogelwch',
|
||||||
'security_title' => 'Update Security Settings',
|
'security_title' => 'Update Security Settings',
|
||||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
|
||||||
'security_help' => 'Two-factor, Password Restrictions',
|
'security_help' => 'Two-factor, Password Restrictions',
|
||||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
|
||||||
'groups_help' => 'Account permission groups',
|
'groups_help' => 'Account permission groups',
|
||||||
'localization' => 'Localization',
|
'localization' => 'Localization',
|
||||||
'localization_title' => 'Update Localization Settings',
|
'localization_title' => 'Update Localization Settings',
|
||||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
|
||||||
'localization_help' => 'Language, date display',
|
'localization_help' => 'Language, date display',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||||
'asset_tags_help' => 'Incrementing and prefixes',
|
'asset_tags_help' => 'Incrementing and prefixes',
|
||||||
'labels' => 'Labelau',
|
'labels' => 'Labelau',
|
||||||
'labels_title' => 'Update Label Settings',
|
'labels_title' => 'Update Label Settings',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'permanently delete',
|
|
||||||
'purge_help' => 'Clirio cofnodion sydd wedi\'i dileu',
|
'purge_help' => 'Clirio cofnodion sydd wedi\'i dileu',
|
||||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'Math Barcode 2D',
|
'label2_2d_type' => 'Math Barcode 2D',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'permissions, permission groups, authorization',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'permanently delete',
|
||||||
|
'security' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'Something went wrong. :( ',
|
'error_misc' => 'Something went wrong. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Dim canlyniadau.',
|
'no_results' => 'Dim canlyniadau.',
|
||||||
'no' => 'Na',
|
'no' => 'Na',
|
||||||
'notes' => 'Nodiadau',
|
'notes' => 'Nodiadau',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Rhif Archeb',
|
'order_number' => 'Rhif Archeb',
|
||||||
'only_deleted' => 'Only Deleted Assets',
|
'only_deleted' => 'Only Deleted Assets',
|
||||||
'page_menu' => 'Showing _MENU_ items',
|
'page_menu' => 'Showing _MENU_ items',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Ekstra footer tekst ',
|
'footer_text' => 'Ekstra footer tekst ',
|
||||||
'footer_text_help' => 'Denne tekst vil vises i footeren i højre side. Der kan anvendes links ved hjælp af <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Linjeskift, headere, billeder etc. kan føre til uforudsigelige resultater.',
|
'footer_text_help' => 'Denne tekst vil vises i footeren i højre side. Der kan anvendes links ved hjælp af <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Linjeskift, headere, billeder etc. kan føre til uforudsigelige resultater.',
|
||||||
'general_settings' => 'Generelle indstillinger',
|
'general_settings' => 'Generelle indstillinger',
|
||||||
'general_settings_keywords' => 'firma support, signatur, accept, e-mail format, brugernavn format, billeder, per side, miniaturebillede, eula, gravatar, tos, instrumentbræt, privatliv',
|
|
||||||
'general_settings_help' => 'Standard slutbrugerlicens og mere',
|
'general_settings_help' => 'Standard slutbrugerlicens og mere',
|
||||||
'generate_backup' => 'Generer sikkerhedskopiering',
|
'generate_backup' => 'Generer sikkerhedskopiering',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP Version',
|
'php' => 'PHP Version',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'Php System info',
|
'php_overview_help' => 'Php System info',
|
||||||
'php_gd_info' => 'Du skal installere php-gd for at vise QR-koder, se installationsvejledningen.',
|
'php_gd_info' => 'Du skal installere php-gd for at vise QR-koder, se installationsvejledningen.',
|
||||||
'php_gd_warning' => 'PHP Image Processing og GD plugin er IKKE installeret.',
|
'php_gd_warning' => 'PHP Image Processing og GD plugin er IKKE installeret.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Opdater indstillinger',
|
'update' => 'Opdater indstillinger',
|
||||||
'value' => 'Værdi',
|
'value' => 'Værdi',
|
||||||
'brand' => 'Branding',
|
'brand' => 'Branding',
|
||||||
'brand_keywords' => 'footer, logo, print, tema, hud, header, farver, farve, css',
|
|
||||||
'brand_help' => 'Logo, Webstedsnavn',
|
'brand_help' => 'Logo, Webstedsnavn',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'Om indstillinger',
|
'about_settings_title' => 'Om indstillinger',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filtrer efter indstilling af søgeord',
|
'filter_by_keyword' => 'Filtrer efter indstilling af søgeord',
|
||||||
'security' => 'Sikkerhed',
|
'security' => 'Sikkerhed',
|
||||||
'security_title' => 'Opdater Sikkerhedsindstillinger',
|
'security_title' => 'Opdater Sikkerhedsindstillinger',
|
||||||
'security_keywords' => 'adgangskode, adgangskoder, krav, to faktor, to-faktor, almindelige adgangskoder, fjernlogin, logout, godkendelse',
|
|
||||||
'security_help' => 'To-faktor, Adgangskodebegrænsninger',
|
'security_help' => 'To-faktor, Adgangskodebegrænsninger',
|
||||||
'groups_keywords' => 'tilladelser, tilladelsesgrupper, tilladelse',
|
|
||||||
'groups_help' => 'Konto tilladelsesgrupper',
|
'groups_help' => 'Konto tilladelsesgrupper',
|
||||||
'localization' => 'Lokalisering',
|
'localization' => 'Lokalisering',
|
||||||
'localization_title' => 'Opdater Lokaliseringsindstillinger',
|
'localization_title' => 'Opdater Lokaliseringsindstillinger',
|
||||||
'localization_keywords' => 'lokalisering, valuta, lokal, lokal, tidszone, international, internatinalisering, sprog, oversættelse',
|
|
||||||
'localization_help' => 'Sprog og datovisning',
|
'localization_help' => 'Sprog og datovisning',
|
||||||
'notifications' => 'Notifikationer',
|
'notifications' => 'Notifikationer',
|
||||||
'notifications_help' => 'E-Mail Advarsler Og Revisionsindstillinger',
|
'notifications_help' => 'E-Mail Advarsler Og Revisionsindstillinger',
|
||||||
'asset_tags_help' => 'Stigende og præfikser',
|
'asset_tags_help' => 'Stigende og præfikser',
|
||||||
'labels' => 'Etiketter',
|
'labels' => 'Etiketter',
|
||||||
'labels_title' => 'Opdater Etiketindstillinger',
|
'labels_title' => 'Opdater Etiketindstillinger',
|
||||||
'labels_help' => 'Etiketstørrelser & indstillinger',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'slet permanent',
|
|
||||||
'purge_help' => 'Ryd slettet poster',
|
'purge_help' => 'Ryd slettet poster',
|
||||||
'ldap_extension_warning' => 'Det ser ikke ud som om LDAP- udvidelsen er installeret eller aktiveret på denne server. Du kan stadig gemme dine indstillinger, men du bliver nødt til at aktivere LDAP-udvidelsen til PHP, før LDAP-synkronisering eller login vil virke.',
|
'ldap_extension_warning' => 'Det ser ikke ud som om LDAP- udvidelsen er installeret eller aktiveret på denne server. Du kan stadig gemme dine indstillinger, men du bliver nødt til at aktivere LDAP-udvidelsen til PHP, før LDAP-synkronisering eller login vil virke.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D stregkode type',
|
'label2_2d_type' => '2D stregkode type',
|
||||||
'label2_2d_type_help' => 'Format for 2D stregkoder',
|
'label2_2d_type_help' => 'Format for 2D stregkoder',
|
||||||
'label2_2d_target' => '2D Stregkode Mål',
|
'label2_2d_target' => '2D Stregkode Mål',
|
||||||
'label2_2d_target_help' => 'URL\'en 2D stregkode peger på, når der scannes',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Feltdefinitioner',
|
'label2_fields' => 'Feltdefinitioner',
|
||||||
'label2_fields_help' => 'Felter kan tilføjes, fjernes og omordnes i venstre kolonne. For hvert felt kan flere muligheder for Label og DataSource tilføjes, fjernes og omordnet i den rigtige kolonne.',
|
'label2_fields_help' => 'Felter kan tilføjes, fjernes og omordnes i venstre kolonne. For hvert felt kan flere muligheder for Label og DataSource tilføjes, fjernes og omordnet i den rigtige kolonne.',
|
||||||
'help_asterisk_bold' => 'Tekst indtastet som <code>**text**</code> vil blive vist som fed',
|
'help_asterisk_bold' => 'Tekst indtastet som <code>**text**</code> vil blive vist som fed',
|
||||||
'help_blank_to_use' => 'Efterlad blank for at bruge værdien fra <code>:setting_name</code>',
|
'help_blank_to_use' => 'Efterlad blank for at bruge værdien fra <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Standard',
|
'default' => 'Standard',
|
||||||
'none' => 'Ingen',
|
'none' => 'Ingen',
|
||||||
'google_callback_help' => 'Dette skal indtastes som callback URL i dine Google OAuth app indstillinger i din organisation's <strong><a href="https://console.cloud.google.com/" target="_blank">Google udvikler konsol <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'Dette skal indtastes som callback URL i dine Google OAuth app indstillinger i din organisation's <strong><a href="https://console.cloud.google.com/" target="_blank">Google udvikler konsol <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, tema, hud, header, farver, farve, css',
|
||||||
|
'general_settings' => 'firma support, signatur, accept, e-mail format, brugernavn format, billeder, per side, miniaturebillede, eula, gravatar, tos, instrumentbræt, privatliv',
|
||||||
|
'groups' => 'tilladelser, tilladelsesgrupper, tilladelse',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'lokalisering, valuta, lokal, lokal, tidszone, international, internatinalisering, sprog, oversættelse',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'slet permanent',
|
||||||
|
'security' => 'adgangskode, adgangskoder, krav, to faktor, to-faktor, almindelige adgangskoder, fjernlogin, logout, godkendelse',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Noget gik galt. :app svarede med: :error_message',
|
'error' => 'Noget gik galt. :app svarede med: :error_message',
|
||||||
'error_redirect' => 'FEJL: 301/302: endpoint returnerer en omdirigering. Af sikkerhedsmæssige årsager følger vi ikke omdirigeringer. Brug det faktiske slutpunkt.',
|
'error_redirect' => 'FEJL: 301/302: endpoint returnerer en omdirigering. Af sikkerhedsmæssige årsager følger vi ikke omdirigeringer. Brug det faktiske slutpunkt.',
|
||||||
'error_misc' => 'Noget gik galt. :( ',
|
'error_misc' => 'Noget gik galt. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Ingen Resultater.',
|
'no_results' => 'Ingen Resultater.',
|
||||||
'no' => 'Nej',
|
'no' => 'Nej',
|
||||||
'notes' => 'Noter',
|
'notes' => 'Noter',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Ordrenummer',
|
'order_number' => 'Ordrenummer',
|
||||||
'only_deleted' => 'Kun slettede aktiver',
|
'only_deleted' => 'Kun slettede aktiver',
|
||||||
'page_menu' => 'Viser _MENU_ emner',
|
'page_menu' => 'Viser _MENU_ emner',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Zusätzlicher Fußzeilentext ',
|
'footer_text' => 'Zusätzlicher Fußzeilentext ',
|
||||||
'footer_text_help' => 'Dieser Text wird in der rechten Fußzeile angezeigt. Links sind erlaubt mit <a href="https://help.github.com/articles/github-flavored-markdown/">Github Flavored Markdown</a>. Zeilenumbrüche, Kopfzeilen, Bilder usw. können zu unvorhersehbaren Verhalten führen.',
|
'footer_text_help' => 'Dieser Text wird in der rechten Fußzeile angezeigt. Links sind erlaubt mit <a href="https://help.github.com/articles/github-flavored-markdown/">Github Flavored Markdown</a>. Zeilenumbrüche, Kopfzeilen, Bilder usw. können zu unvorhersehbaren Verhalten führen.',
|
||||||
'general_settings' => 'Allgemeine Einstellungen',
|
'general_settings' => 'Allgemeine Einstellungen',
|
||||||
'general_settings_keywords' => 'Firmenunterstützung, Unterschrift, Akzeptanz, E-Mail-Format, Benutzernamenformat, Bilder, pro Seite, Vorschaubilder, EULA, Gravatar, TOS, Dashboard, Privatsphäre',
|
|
||||||
'general_settings_help' => 'Standard EULA und mehr',
|
'general_settings_help' => 'Standard EULA und mehr',
|
||||||
'generate_backup' => 'Backup erstellen',
|
'generate_backup' => 'Backup erstellen',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP Version',
|
'php' => 'PHP Version',
|
||||||
'php_info' => 'PHP Info',
|
'php_info' => 'PHP Info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'php Info, System, Info',
|
|
||||||
'php_overview_help' => 'PHP-Systeminfo',
|
'php_overview_help' => 'PHP-Systeminfo',
|
||||||
'php_gd_info' => 'Um QR-Codes anzeigen zu können muss php-gd installiert sein, siehe Installationshinweise.',
|
'php_gd_info' => 'Um QR-Codes anzeigen zu können muss php-gd installiert sein, siehe Installationshinweise.',
|
||||||
'php_gd_warning' => 'PHP Image Processing and GD Plugin ist NICHT installiert.',
|
'php_gd_warning' => 'PHP Image Processing and GD Plugin ist NICHT installiert.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Einstellungen übernehmen',
|
'update' => 'Einstellungen übernehmen',
|
||||||
'value' => 'Wert',
|
'value' => 'Wert',
|
||||||
'brand' => 'Branding',
|
'brand' => 'Branding',
|
||||||
'brand_keywords' => 'Fußzeile, Logo, Druck, Theme, Skin, Header, Farben, Farbe, CSS',
|
|
||||||
'brand_help' => 'Logo, Seitenname',
|
'brand_help' => 'Logo, Seitenname',
|
||||||
'web_brand' => 'Web Branding Typ',
|
'web_brand' => 'Web Branding Typ',
|
||||||
'about_settings_title' => 'Über Einstellungen',
|
'about_settings_title' => 'Über Einstellungen',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Nach Stichwort filtern',
|
'filter_by_keyword' => 'Nach Stichwort filtern',
|
||||||
'security' => 'Sicherheit',
|
'security' => 'Sicherheit',
|
||||||
'security_title' => 'Sicherheitseinstellungen aktualisieren',
|
'security_title' => 'Sicherheitseinstellungen aktualisieren',
|
||||||
'security_keywords' => 'Passwort, Passwörter, Anforderungen, Zwei-Faktor, Zwei-Faktor, übliche Passwörter, Remote-Login, Logout, Authentifizierung',
|
|
||||||
'security_help' => 'Zwei-Faktor, Passwort-Einschränkungen',
|
'security_help' => 'Zwei-Faktor, Passwort-Einschränkungen',
|
||||||
'groups_keywords' => 'Berechtigungen, Berechtigungsgruppen, Autorisierung',
|
|
||||||
'groups_help' => 'Account-Berechtigungsgruppen',
|
'groups_help' => 'Account-Berechtigungsgruppen',
|
||||||
'localization' => 'Lokalisierung',
|
'localization' => 'Lokalisierung',
|
||||||
'localization_title' => 'Lokalisierungseinstellungen aktualisieren',
|
'localization_title' => 'Lokalisierungseinstellungen aktualisieren',
|
||||||
'localization_keywords' => 'Lokalisierung, Währung, lokal, Lokal, Zeitzone, International, Internationalisierung, Sprache, Sprachen, Übersetzung',
|
|
||||||
'localization_help' => 'Sprache, Datumsanzeige',
|
'localization_help' => 'Sprache, Datumsanzeige',
|
||||||
'notifications' => 'Benachrichtigungen',
|
'notifications' => 'Benachrichtigungen',
|
||||||
'notifications_help' => 'E-Mail-Benachrichtigungen & Audit-Einstellungen',
|
'notifications_help' => 'E-Mail-Benachrichtigungen & Audit-Einstellungen',
|
||||||
'asset_tags_help' => 'Inkrementieren und Präfixe',
|
'asset_tags_help' => 'Inkrementieren und Präfixe',
|
||||||
'labels' => 'Etiketten',
|
'labels' => 'Etiketten',
|
||||||
'labels_title' => 'Etiketten-Einstellungen aktualisieren',
|
'labels_title' => 'Etiketten-Einstellungen aktualisieren',
|
||||||
'labels_help' => 'Labelgrößen & Einstellungen',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'Endgültig löschen',
|
|
||||||
'purge_help' => 'Gelöschte Einträge bereinigen',
|
'purge_help' => 'Gelöschte Einträge bereinigen',
|
||||||
'ldap_extension_warning' => 'Es sieht nicht so aus, als ob die LDAP-Erweiterung auf diesem Server installiert oder aktiviert ist. Sie können Ihre Einstellungen trotzdem speichern, aber Sie müssen die LDAP-Erweiterung für PHP aktivieren, bevor die LDAP-Synchronisierung oder der Login funktioniert.',
|
'ldap_extension_warning' => 'Es sieht nicht so aus, als ob die LDAP-Erweiterung auf diesem Server installiert oder aktiviert ist. Sie können Ihre Einstellungen trotzdem speichern, aber Sie müssen die LDAP-Erweiterung für PHP aktivieren, bevor die LDAP-Synchronisierung oder der Login funktioniert.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D Barcode Typ',
|
'label2_2d_type' => '2D Barcode Typ',
|
||||||
'label2_2d_type_help' => 'Format für 2D Barcodes',
|
'label2_2d_type_help' => 'Format für 2D Barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Ausgabe',
|
'label2_2d_target' => '2D Barcode Ausgabe',
|
||||||
'label2_2d_target_help' => 'Die URL, auf die der 2D Barcode beim Scannen verweist',
|
'label2_2d_target_help' => 'Die Daten, die im 2D Barcode enthalten sein werden',
|
||||||
'label2_fields' => 'Felddefinitionen',
|
'label2_fields' => 'Felddefinitionen',
|
||||||
'label2_fields_help' => 'Felder können in der linken Spalte hinzugefügt, entfernt und neu sortiert werden. In jedem Feld können mehrere Optionen für Label und Datenquelle in der rechten Spalte hinzugefügt, entfernt und neu angeordnet werden.',
|
'label2_fields_help' => 'Felder können in der linken Spalte hinzugefügt, entfernt und neu sortiert werden. In jedem Feld können mehrere Optionen für Label und Datenquelle in der rechten Spalte hinzugefügt, entfernt und neu angeordnet werden.',
|
||||||
'help_asterisk_bold' => 'Der eingegebene Text <code>**text**</code> wird in Fettschrift angezeigt',
|
'help_asterisk_bold' => 'Der eingegebene Text <code>**text**</code> wird in Fettschrift angezeigt',
|
||||||
'help_blank_to_use' => 'Leer lassen, um den Wert von <code>:setting_name</code> zu verwenden',
|
'help_blank_to_use' => 'Leer lassen, um den Wert von <code>:setting_name</code> zu verwenden',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Standard',
|
'default' => 'Standard',
|
||||||
'none' => 'Nichts',
|
'none' => 'Nichts',
|
||||||
'google_callback_help' => 'Dies sollte als Callback-URL in den Google OAuth App-Einstellungen in deinem Unternehmen eingegeben werden's <strong><a href="https://console.cloud.google.com/" target="_blank">Google Developer Konsole <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'Dies sollte als Callback-URL in den Google OAuth App-Einstellungen in deinem Unternehmen eingegeben werden's <strong><a href="https://console.cloud.google.com/" target="_blank">Google Developer Konsole <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'Wie viele Tage vor dem voraussichtlichen Check-in eines Vermögenswerts soll dieser auf der Seite „Zur Eincheckzeit fällig“ aufgeführt werden?',
|
'due_checkin_days_help' => 'Wie viele Tage vor dem voraussichtlichen Check-in eines Vermögenswerts soll dieser auf der Seite „Zur Eincheckzeit fällig“ aufgeführt werden?',
|
||||||
'no_groups' => 'Es wurden noch keine Gruppen erstellt. Navigieren Sie zu <code>Admin-Einstellungen > Berechtigungsgruppen</code>, um eine hinzuzufügen.',
|
'no_groups' => 'Es wurden noch keine Gruppen erstellt. Navigieren Sie zu <code>Admin-Einstellungen > Berechtigungsgruppen</code>, um eine hinzuzufügen.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'Fußzeile, Logo, Druck, Theme, Skin, Header, Farben, Farbe, CSS',
|
||||||
|
'general_settings' => 'Firmenunterstützung, Unterschrift, Akzeptanz, E-Mail-Format, Benutzernamenformat, Bilder, pro Seite, Vorschaubilder, EULA, Gravatar, TOS, Dashboard, Privatsphäre',
|
||||||
|
'groups' => 'Berechtigungen, Berechtigungsgruppen, Autorisierung',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'Lokalisierung, Währung, lokal, Lokal, Zeitzone, International, Internationalisierung, Sprache, Sprachen, Übersetzung',
|
||||||
|
'php_overview' => 'php Info, System, Info',
|
||||||
|
'purge' => 'Endgültig löschen',
|
||||||
|
'security' => 'Passwort, Passwörter, Anforderungen, Zwei-Faktor, Zwei-Faktor, übliche Passwörter, Remote-Login, Logout, Authentifizierung',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Etwas ist schief gelaufen. :app antwortete mit: :error_message',
|
'error' => 'Etwas ist schief gelaufen. :app antwortete mit: :error_message',
|
||||||
'error_redirect' => 'FEHLER: 301/302 :endpoint gibt eine Umleitung zurück. Aus Sicherheitsgründen folgen wir keinen Umleitungen. Bitte verwenden Sie den aktuellen Endpunkt.',
|
'error_redirect' => 'FEHLER: 301/302 :endpoint gibt eine Umleitung zurück. Aus Sicherheitsgründen folgen wir keinen Umleitungen. Bitte verwenden Sie den aktuellen Endpunkt.',
|
||||||
'error_misc' => 'Etwas ist schiefgelaufen. :( ',
|
'error_misc' => 'Etwas ist schiefgelaufen. :( ',
|
||||||
|
'webhook_fail' => '',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Keine Treffer.',
|
'no_results' => 'Keine Treffer.',
|
||||||
'no' => 'Nein',
|
'no' => 'Nein',
|
||||||
'notes' => 'Notizen',
|
'notes' => 'Notizen',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Bestellnummer',
|
'order_number' => 'Bestellnummer',
|
||||||
'only_deleted' => 'Nur gelöschte Gegenstände',
|
'only_deleted' => 'Nur gelöschte Gegenstände',
|
||||||
'page_menu' => 'Zeige _MENU_ Einträge',
|
'page_menu' => 'Zeige _MENU_ Einträge',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'Ein Asset mit dem Asset-Tag :asset_tag ist bereits vorhanden und es wurde keine Aktualisierung angefordert. Es wurden keine Änderungen vorgenommen.',
|
'import_asset_tag_exists' => 'Ein Asset mit dem Asset-Tag :asset_tag ist bereits vorhanden und es wurde keine Aktualisierung angefordert. Es wurden keine Änderungen vorgenommen.',
|
||||||
'countries_manually_entered_help' => 'Werte mit einem Sternchen (*) wurden manuell eingegeben und stimmen nicht mit vorhandenen Dropdown-Werten nach ISO 3166 überein',
|
'countries_manually_entered_help' => 'Werte mit einem Sternchen (*) wurden manuell eingegeben und stimmen nicht mit vorhandenen Dropdown-Werten nach ISO 3166 überein',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Zusätzlicher Fußzeilentext ',
|
'footer_text' => 'Zusätzlicher Fußzeilentext ',
|
||||||
'footer_text_help' => 'Dieser Text wird in der rechten Fußzeile angezeigt. Links sind erlaubt mit <a href="https://help.github.com/articles/github-flavored-markdown/">Github Flavored Markdown</a>. Zeilenumbrüche, Kopfzeilen, Bilder usw. können zu unvorhersehbaren Ergebnissen führen.',
|
'footer_text_help' => 'Dieser Text wird in der rechten Fußzeile angezeigt. Links sind erlaubt mit <a href="https://help.github.com/articles/github-flavored-markdown/">Github Flavored Markdown</a>. Zeilenumbrüche, Kopfzeilen, Bilder usw. können zu unvorhersehbaren Ergebnissen führen.',
|
||||||
'general_settings' => 'Allgemeine Einstellungen',
|
'general_settings' => 'Allgemeine Einstellungen',
|
||||||
'general_settings_keywords' => 'firmenunterstützung, Unterschrift, Akzeptanz, E-Mail-Format, Benutzername Format, Bilder, pro Seite, Vorschaubilder, eula, gravatar, tos, Dashboard, Privatsphäre',
|
|
||||||
'general_settings_help' => 'Standard EULA und mehr',
|
'general_settings_help' => 'Standard EULA und mehr',
|
||||||
'generate_backup' => 'Backup erstellen',
|
'generate_backup' => 'Backup erstellen',
|
||||||
'google_workspaces' => 'Google Arbeitsbereiche',
|
'google_workspaces' => 'Google Arbeitsbereiche',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP Version',
|
'php' => 'PHP Version',
|
||||||
'php_info' => 'PHP Info',
|
'php_info' => 'PHP Info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, System, Info',
|
|
||||||
'php_overview_help' => 'PHP-Systeminfo',
|
'php_overview_help' => 'PHP-Systeminfo',
|
||||||
'php_gd_info' => 'Um QR-Codes anzeigen zu können muss php-gd installiert sein, siehe Installationsanweisungen.',
|
'php_gd_info' => 'Um QR-Codes anzeigen zu können muss php-gd installiert sein, siehe Installationsanweisungen.',
|
||||||
'php_gd_warning' => 'PHP Image Processing and GD Plugin ist NICHT installiert.',
|
'php_gd_warning' => 'PHP Image Processing and GD Plugin ist NICHT installiert.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Einstellungen aktualisieren',
|
'update' => 'Einstellungen aktualisieren',
|
||||||
'value' => 'Wert',
|
'value' => 'Wert',
|
||||||
'brand' => 'Branding',
|
'brand' => 'Branding',
|
||||||
'brand_keywords' => 'Fußzeile, Logo, Druck, Thema, Skin, Header, Farben, Farbe, CSS',
|
|
||||||
'brand_help' => 'Logo, Seitenname',
|
'brand_help' => 'Logo, Seitenname',
|
||||||
'web_brand' => 'Web Branding Typ',
|
'web_brand' => 'Web Branding Typ',
|
||||||
'about_settings_title' => 'Über Einstellungen',
|
'about_settings_title' => 'Über Einstellungen',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Nach Stichwort filtern',
|
'filter_by_keyword' => 'Nach Stichwort filtern',
|
||||||
'security' => 'Sicherheit',
|
'security' => 'Sicherheit',
|
||||||
'security_title' => 'Sicherheitseinstellungen aktualisieren',
|
'security_title' => 'Sicherheitseinstellungen aktualisieren',
|
||||||
'security_keywords' => 'Passwort, Passwörter, Anforderungen, Zwei-Faktor, Zwei-Faktor, übliche Passwörter, Remote-Login, Logout, Authentifizierung',
|
|
||||||
'security_help' => 'Zwei-Faktor, Passwort-Einschränkungen',
|
'security_help' => 'Zwei-Faktor, Passwort-Einschränkungen',
|
||||||
'groups_keywords' => 'berechtigungen, Berechtigungsgruppen, Autorisierung',
|
|
||||||
'groups_help' => 'Account-Berechtigungsgruppen',
|
'groups_help' => 'Account-Berechtigungsgruppen',
|
||||||
'localization' => 'Lokalisierung',
|
'localization' => 'Lokalisierung',
|
||||||
'localization_title' => 'Lokalisierungseinstellungen aktualisieren',
|
'localization_title' => 'Lokalisierungseinstellungen aktualisieren',
|
||||||
'localization_keywords' => 'lokalisierung, Währung, lokal, Lokal, Zeitzone, International, Internationalisierung, Sprache, Sprachen, Übersetzung',
|
|
||||||
'localization_help' => 'Sprache, Datumsanzeige',
|
'localization_help' => 'Sprache, Datumsanzeige',
|
||||||
'notifications' => 'Benachrichtigungen',
|
'notifications' => 'Benachrichtigungen',
|
||||||
'notifications_help' => 'E-Mail-Benachrichtigungen & Audit-Einstellungen',
|
'notifications_help' => 'E-Mail-Benachrichtigungen & Audit-Einstellungen',
|
||||||
'asset_tags_help' => 'Inkrementieren und Präfixe',
|
'asset_tags_help' => 'Inkrementieren und Präfixe',
|
||||||
'labels' => 'Etiketten',
|
'labels' => 'Etiketten',
|
||||||
'labels_title' => 'Etiketten-Einstellungen aktualisieren',
|
'labels_title' => 'Etiketten-Einstellungen aktualisieren',
|
||||||
'labels_help' => 'Etikettengrößen & Einstellungen',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'Endgültig löschen',
|
|
||||||
'purge_help' => 'Gelöschte Einträge bereinigen',
|
'purge_help' => 'Gelöschte Einträge bereinigen',
|
||||||
'ldap_extension_warning' => 'Es sieht nicht so aus, als ob die LDAP-Erweiterung auf diesem Server installiert oder aktiviert ist. Du kannst deine Einstellungen trotzdem speichern, aber du musst die LDAP-Erweiterung für PHP aktivieren, bevor die LDAP-Synchronisierung oder der Login funktioniert.',
|
'ldap_extension_warning' => 'Es sieht nicht so aus, als ob die LDAP-Erweiterung auf diesem Server installiert oder aktiviert ist. Du kannst deine Einstellungen trotzdem speichern, aber du musst die LDAP-Erweiterung für PHP aktivieren, bevor die LDAP-Synchronisierung oder der Login funktioniert.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D Barcode Typ',
|
'label2_2d_type' => '2D Barcode Typ',
|
||||||
'label2_2d_type_help' => 'Format für 2D Barcodes',
|
'label2_2d_type_help' => 'Format für 2D Barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Ausgabe',
|
'label2_2d_target' => '2D Barcode Ausgabe',
|
||||||
'label2_2d_target_help' => 'Die URL, auf die der 2D Barcode beim Scannen verweist',
|
'label2_2d_target_help' => 'Die Daten, die im 2D Barcode enthalten sein werden',
|
||||||
'label2_fields' => 'Felddefinitionen',
|
'label2_fields' => 'Felddefinitionen',
|
||||||
'label2_fields_help' => 'Felder können in der linken Spalte hinzugefügt, entfernt und neu sortiert werden. In jedem Feld können mehrere Optionen für Label und Datenquelle in der rechten Spalte hinzugefügt, entfernt und neu angeordnet werden.',
|
'label2_fields_help' => 'Felder können in der linken Spalte hinzugefügt, entfernt und neu sortiert werden. In jedem Feld können mehrere Optionen für Label und Datenquelle in der rechten Spalte hinzugefügt, entfernt und neu angeordnet werden.',
|
||||||
'help_asterisk_bold' => 'Der eingegebene Text <code>**text**</code> wird in Fettschrift angezeigt',
|
'help_asterisk_bold' => 'Der eingegebene Text <code>**text**</code> wird in Fettschrift angezeigt',
|
||||||
'help_blank_to_use' => 'Leer lassen, um den Wert von <code>:setting_name</code> zu verwenden',
|
'help_blank_to_use' => 'Leer lassen, um den Wert von <code>:setting_name</code> zu verwenden',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Standard',
|
'default' => 'Standard',
|
||||||
'none' => 'Nichts',
|
'none' => 'Nichts',
|
||||||
'google_callback_help' => 'Dies sollte als Callback-URL in den Google OAuth App-Einstellungen in deinem Unternehmen eingegeben werden's <strong><a href="https://console.cloud.google.com/" target="_blank">Google Developer Konsole <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'Dies sollte als Callback-URL in den Google OAuth App-Einstellungen in deinem Unternehmen eingegeben werden's <strong><a href="https://console.cloud.google.com/" target="_blank">Google Developer Konsole <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'Wie viele Tage vor dem voraussichtlichen Check-in eines Vermögenswerts soll dieser auf der Seite „Zur Eincheckzeit fällig“ aufgeführt werden?',
|
'due_checkin_days_help' => 'Wie viele Tage vor dem voraussichtlichen Check-in eines Vermögenswerts soll dieser auf der Seite „Zur Eincheckzeit fällig“ aufgeführt werden?',
|
||||||
'no_groups' => 'Es wurden noch keine Gruppen erstellt. Navigiere zu <code>Admin-Einstellungen > Berechtigungsgruppen</code>, um eine hinzuzufügen.',
|
'no_groups' => 'Es wurden noch keine Gruppen erstellt. Navigiere zu <code>Admin-Einstellungen > Berechtigungsgruppen</code>, um eine hinzuzufügen.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'Fußzeile, Logo, Druck, Thema, Skin, Header, Farben, Farbe, CSS',
|
||||||
|
'general_settings' => 'firmenunterstützung, Unterschrift, Akzeptanz, E-Mail-Format, Benutzername Format, Bilder, pro Seite, Vorschaubilder, eula, gravatar, tos, Dashboard, Privatsphäre',
|
||||||
|
'groups' => 'berechtigungen, Berechtigungsgruppen, Autorisierung',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'lokalisierung, Währung, lokal, Lokal, Zeitzone, International, Internationalisierung, Sprache, Sprachen, Übersetzung',
|
||||||
|
'php_overview' => 'phpinfo, System, Info',
|
||||||
|
'purge' => 'Endgültig löschen',
|
||||||
|
'security' => 'Passwort, Passwörter, Anforderungen, Zwei-Faktor, Zwei-Faktor, übliche Passwörter, Remote-Login, Logout, Authentifizierung',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Etwas ist schiefgelaufen. :app antwortete mit: :error_message',
|
'error' => 'Etwas ist schiefgelaufen. :app antwortete mit: :error_message',
|
||||||
'error_redirect' => 'FEHLER: 301/302 :endpoint gibt eine Umleitung zurück. Aus Sicherheitsgründen folgen wir keine Umleitungen. Bitte verwende den aktuellen Endpunkt.',
|
'error_redirect' => 'FEHLER: 301/302 :endpoint gibt eine Umleitung zurück. Aus Sicherheitsgründen folgen wir keine Umleitungen. Bitte verwende den aktuellen Endpunkt.',
|
||||||
'error_misc' => 'Etwas ist schiefgelaufen! :( ',
|
'error_misc' => 'Etwas ist schiefgelaufen! :( ',
|
||||||
|
'webhook_fail' => '',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Keine Treffer.',
|
'no_results' => 'Keine Treffer.',
|
||||||
'no' => 'Nein',
|
'no' => 'Nein',
|
||||||
'notes' => 'Anmerkungen',
|
'notes' => 'Anmerkungen',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Auftragsnummer',
|
'order_number' => 'Auftragsnummer',
|
||||||
'only_deleted' => 'Nur gelöschte Assets',
|
'only_deleted' => 'Nur gelöschte Assets',
|
||||||
'page_menu' => 'Zeige _MENU_ Einträge',
|
'page_menu' => 'Zeige _MENU_ Einträge',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'Ein Asset mit dem Asset-Tag :asset_tag ist bereits vorhanden und es wurde keine Aktualisierung angefordert. Es wurden keine Änderungen vorgenommen.',
|
'import_asset_tag_exists' => 'Ein Asset mit dem Asset-Tag :asset_tag ist bereits vorhanden und es wurde keine Aktualisierung angefordert. Es wurden keine Änderungen vorgenommen.',
|
||||||
'countries_manually_entered_help' => 'Werte mit einem Sternchen (*) wurden manuell eingegeben und stimmen nicht mit vorhandenen Dropdown-Werten nach ISO 3166 überein',
|
'countries_manually_entered_help' => 'Werte mit einem Sternchen (*) wurden manuell eingegeben und stimmen nicht mit vorhandenen Dropdown-Werten nach ISO 3166 überein',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Πρόσθετο κείμενο Footer',
|
'footer_text' => 'Πρόσθετο κείμενο Footer',
|
||||||
'footer_text_help' => 'Αυτό το κείμενο θα εμφανιστεί στο υποσέλιδο στη δεξιά πλευρά. Οι σύνδεσμοι επιτρέπονται χρησιμοποιώντας την <a href="https://help.github.com/articles/github-flavored-markdown/"> Github flavored markdown </a>. Διακοπή γραμμής, κεφαλίδες, εικόνες κ.λπ. μπορεί να οδηγήσουν σε απρόβλεπτα αποτελέσματα.',
|
'footer_text_help' => 'Αυτό το κείμενο θα εμφανιστεί στο υποσέλιδο στη δεξιά πλευρά. Οι σύνδεσμοι επιτρέπονται χρησιμοποιώντας την <a href="https://help.github.com/articles/github-flavored-markdown/"> Github flavored markdown </a>. Διακοπή γραμμής, κεφαλίδες, εικόνες κ.λπ. μπορεί να οδηγήσουν σε απρόβλεπτα αποτελέσματα.',
|
||||||
'general_settings' => 'Γενικές ρυθμίσεις',
|
'general_settings' => 'Γενικές ρυθμίσεις',
|
||||||
'general_settings_keywords' => 'υποστήριξη της εταιρείας, υπογραφή, αποδοχή, μορφή ηλεκτρονικού ταχυδρομείου, μορφή ονόματος χρήστη, εικόνες, ανά σελίδα, μικρογραφία, eula, gravatar, tos, ταμπλό, ιδιωτικότητα',
|
|
||||||
'general_settings_help' => 'Προεπιλογή EULA και άλλα',
|
'general_settings_help' => 'Προεπιλογή EULA και άλλα',
|
||||||
'generate_backup' => 'Δημιουργία Αντίγραφου Ασφαλείας',
|
'generate_backup' => 'Δημιουργία Αντίγραφου Ασφαλείας',
|
||||||
'google_workspaces' => 'Χώροι Εργασίας Google',
|
'google_workspaces' => 'Χώροι Εργασίας Google',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'Έκδοση PHP',
|
'php' => 'Έκδοση PHP',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, σύστημα, πληροφορίες',
|
|
||||||
'php_overview_help' => 'Πληροφορίες συστήματος PHP',
|
'php_overview_help' => 'Πληροφορίες συστήματος PHP',
|
||||||
'php_gd_info' => 'Πρέπει να εγκαταστήσετε το php-gd για να εμφανίσετε τους QR κώδικες, δείτε τις οδηγίες εγκατάστασης.',
|
'php_gd_info' => 'Πρέπει να εγκαταστήσετε το php-gd για να εμφανίσετε τους QR κώδικες, δείτε τις οδηγίες εγκατάστασης.',
|
||||||
'php_gd_warning' => 'Η επεξεργασία εικόνας PHP και το πρόσθετο GD ΔΕΝ έχουν εγκατασταθεί.',
|
'php_gd_warning' => 'Η επεξεργασία εικόνας PHP και το πρόσθετο GD ΔΕΝ έχουν εγκατασταθεί.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Ενημέρωση ρυθμίσεων',
|
'update' => 'Ενημέρωση ρυθμίσεων',
|
||||||
'value' => 'Τιμή',
|
'value' => 'Τιμή',
|
||||||
'brand' => 'Μάρκα',
|
'brand' => 'Μάρκα',
|
||||||
'brand_keywords' => 'υποσέλιδο, λογότυπο, εκτύπωση, θέμα, δέρμα, κεφαλίδα, χρώματα, χρώμα, css',
|
|
||||||
'brand_help' => 'Λογότυπο, Όνομα Ιστοσελίδας',
|
'brand_help' => 'Λογότυπο, Όνομα Ιστοσελίδας',
|
||||||
'web_brand' => 'Τύπος Μάρκετινγκ Web',
|
'web_brand' => 'Τύπος Μάρκετινγκ Web',
|
||||||
'about_settings_title' => 'Σχετικά με τις ρυθμίσεις',
|
'about_settings_title' => 'Σχετικά με τις ρυθμίσεις',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Φιλτράρισμα κατά ρύθμιση λέξης-κλειδιού',
|
'filter_by_keyword' => 'Φιλτράρισμα κατά ρύθμιση λέξης-κλειδιού',
|
||||||
'security' => 'Ασφάλεια',
|
'security' => 'Ασφάλεια',
|
||||||
'security_title' => 'Ενημέρωση Ρυθμίσεων Ασφαλείας',
|
'security_title' => 'Ενημέρωση Ρυθμίσεων Ασφαλείας',
|
||||||
'security_keywords' => 'κωδικός πρόσβασης, κωδικοί πρόσβασης, απαιτήσεις, δύο παράγοντες, δύο παράγοντες, κοινοί κωδικοί πρόσβασης, απομακρυσμένη σύνδεση, αποσύνδεση, έλεγχος ταυτότητας',
|
|
||||||
'security_help' => 'Δύο Παράγοντες, Περιορισμοί Κωδικού Πρόσβασης',
|
'security_help' => 'Δύο Παράγοντες, Περιορισμοί Κωδικού Πρόσβασης',
|
||||||
'groups_keywords' => 'άδειες, ομάδες δικαιωμάτων, εξουσιοδότηση',
|
|
||||||
'groups_help' => 'Ομάδες δικαιωμάτων λογαριασμού',
|
'groups_help' => 'Ομάδες δικαιωμάτων λογαριασμού',
|
||||||
'localization' => 'Τοπικοποίηση',
|
'localization' => 'Τοπικοποίηση',
|
||||||
'localization_title' => 'Ενημέρωση Ρυθμίσεων Τοπικοποίησης',
|
'localization_title' => 'Ενημέρωση Ρυθμίσεων Τοπικοποίησης',
|
||||||
'localization_keywords' => 'τοπικοποίηση, νόμισμα, τοπική, τοπική, ζώνη ώρας, ζώνη ώρας, διεθνές, διαγεννητικότητα, γλώσσα, γλώσσες, μετάφραση',
|
|
||||||
'localization_help' => 'Γλώσσα, εμφάνιση ημερομηνίας',
|
'localization_help' => 'Γλώσσα, εμφάνιση ημερομηνίας',
|
||||||
'notifications' => 'Ειδοποιήσεις',
|
'notifications' => 'Ειδοποιήσεις',
|
||||||
'notifications_help' => 'Ρυθμίσεις Ειδοποιήσεων & Ελέγχου Email',
|
'notifications_help' => 'Ρυθμίσεις Ειδοποιήσεων & Ελέγχου Email',
|
||||||
'asset_tags_help' => 'Αυξήσεις και προθέματα',
|
'asset_tags_help' => 'Αυξήσεις και προθέματα',
|
||||||
'labels' => 'Ετικέτες',
|
'labels' => 'Ετικέτες',
|
||||||
'labels_title' => 'Ενημέρωση Ρυθμίσεων Ετικετών',
|
'labels_title' => 'Ενημέρωση Ρυθμίσεων Ετικετών',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'μόνιμη διαγραφή',
|
|
||||||
'purge_help' => 'Καθαρισμός αρχείων που έχουν διαγραφεί',
|
'purge_help' => 'Καθαρισμός αρχείων που έχουν διαγραφεί',
|
||||||
'ldap_extension_warning' => 'Δεν φαίνεται ότι η επέκταση LDAP είναι εγκατεστημένη ή ενεργοποιημένη σε αυτόν τον διακομιστή. Μπορείτε ακόμα να αποθηκεύσετε τις ρυθμίσεις σας, αλλά θα πρέπει να ενεργοποιήσετε την επέκταση LDAP για PHP πριν το συγχρονισμό LDAP ή σύνδεση θα λειτουργήσει.',
|
'ldap_extension_warning' => 'Δεν φαίνεται ότι η επέκταση LDAP είναι εγκατεστημένη ή ενεργοποιημένη σε αυτόν τον διακομιστή. Μπορείτε ακόμα να αποθηκεύσετε τις ρυθμίσεις σας, αλλά θα πρέπει να ενεργοποιήσετε την επέκταση LDAP για PHP πριν το συγχρονισμό LDAP ή σύνδεση θα λειτουργήσει.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D Barcode Type',
|
'label2_2d_type' => '2D Barcode Type',
|
||||||
'label2_2d_type_help' => 'Μορφή για barcodes 2D',
|
'label2_2d_type_help' => 'Μορφή για barcodes 2D',
|
||||||
'label2_2d_target' => 'Στόχος 2D Barcode',
|
'label2_2d_target' => 'Στόχος 2D Barcode',
|
||||||
'label2_2d_target_help' => 'Το URL των σημείων 2D γραμμωτού κώδικα όταν σαρωθεί',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Ορισμοί Πεδίων',
|
'label2_fields' => 'Ορισμοί Πεδίων',
|
||||||
'label2_fields_help' => 'Τα πεδία μπορούν να προστεθούν, να αφαιρεθούν και να παραγγελθούν στην αριστερή στήλη. Για κάθε πεδίο, μπορούν να προστεθούν, να αφαιρεθούν πολλαπλές επιλογές για την Ετικέτα και την Πηγή Δεδομένων και να παραγγελθούν στη δεξιά στήλη.',
|
'label2_fields_help' => 'Τα πεδία μπορούν να προστεθούν, να αφαιρεθούν και να παραγγελθούν στην αριστερή στήλη. Για κάθε πεδίο, μπορούν να προστεθούν, να αφαιρεθούν πολλαπλές επιλογές για την Ετικέτα και την Πηγή Δεδομένων και να παραγγελθούν στη δεξιά στήλη.',
|
||||||
'help_asterisk_bold' => 'Το κείμενο που έχει εισαχθεί ως <code>**text**</code> θα εμφανιστεί ως έντονο',
|
'help_asterisk_bold' => 'Το κείμενο που έχει εισαχθεί ως <code>**text**</code> θα εμφανιστεί ως έντονο',
|
||||||
'help_blank_to_use' => 'Αφήστε κενό για να χρησιμοποιήσετε την τιμή από <code>:setting_name</code>',
|
'help_blank_to_use' => 'Αφήστε κενό για να χρησιμοποιήσετε την τιμή από <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Προεπιλογή',
|
'default' => 'Προεπιλογή',
|
||||||
'none' => 'Κανένα',
|
'none' => 'Κανένα',
|
||||||
'google_callback_help' => 'Αυτό θα πρέπει να εισαχθεί ως το URL επιστροφής κλήσης στις ρυθμίσεις της εφαρμογής Google OAuth στον οργανισμό σας's <strong><a href="https://console.cloud.google.com/" target="_blank">κονσόλα προγραμματιστών Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'Αυτό θα πρέπει να εισαχθεί ως το URL επιστροφής κλήσης στις ρυθμίσεις της εφαρμογής Google OAuth στον οργανισμό σας's <strong><a href="https://console.cloud.google.com/" target="_blank">κονσόλα προγραμματιστών Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'υποσέλιδο, λογότυπο, εκτύπωση, θέμα, δέρμα, κεφαλίδα, χρώματα, χρώμα, css',
|
||||||
|
'general_settings' => 'υποστήριξη της εταιρείας, υπογραφή, αποδοχή, μορφή ηλεκτρονικού ταχυδρομείου, μορφή ονόματος χρήστη, εικόνες, ανά σελίδα, μικρογραφία, eula, gravatar, tos, ταμπλό, ιδιωτικότητα',
|
||||||
|
'groups' => 'άδειες, ομάδες δικαιωμάτων, εξουσιοδότηση',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'τοπικοποίηση, νόμισμα, τοπική, τοπική, ζώνη ώρας, ζώνη ώρας, διεθνές, διαγεννητικότητα, γλώσσα, γλώσσες, μετάφραση',
|
||||||
|
'php_overview' => 'phpinfo, σύστημα, πληροφορίες',
|
||||||
|
'purge' => 'μόνιμη διαγραφή',
|
||||||
|
'security' => 'κωδικός πρόσβασης, κωδικοί πρόσβασης, απαιτήσεις, δύο παράγοντες, δύο παράγοντες, κοινοί κωδικοί πρόσβασης, απομακρυσμένη σύνδεση, αποσύνδεση, έλεγχος ταυτότητας',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Κάτι πήγε στραβά. :app απάντησε με: :error_message',
|
'error' => 'Κάτι πήγε στραβά. :app απάντησε με: :error_message',
|
||||||
'error_redirect' => 'ΣΦΑΛΜΑ: 301/302:endpoint επιστρέφει μια ανακατεύθυνση. Για λόγους ασφαλείας, δεν ακολουθούμε ανακατευθύνσεις. Παρακαλούμε χρησιμοποιήστε το πραγματικό τελικό σημείο.',
|
'error_redirect' => 'ΣΦΑΛΜΑ: 301/302:endpoint επιστρέφει μια ανακατεύθυνση. Για λόγους ασφαλείας, δεν ακολουθούμε ανακατευθύνσεις. Παρακαλούμε χρησιμοποιήστε το πραγματικό τελικό σημείο.',
|
||||||
'error_misc' => 'Κάτι πήγε στραβά. :( ',
|
'error_misc' => 'Κάτι πήγε στραβά. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Δεν βρέθηκαν αποτελέσματα.',
|
'no_results' => 'Δεν βρέθηκαν αποτελέσματα.',
|
||||||
'no' => '\'Οχι',
|
'no' => '\'Οχι',
|
||||||
'notes' => 'Σημειώσεις',
|
'notes' => 'Σημειώσεις',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Αριθμός παραγγελίας',
|
'order_number' => 'Αριθμός παραγγελίας',
|
||||||
'only_deleted' => 'Μόνο Διαγραμμένα Περιουσιακά Στοιχεία',
|
'only_deleted' => 'Μόνο Διαγραμμένα Περιουσιακά Στοιχεία',
|
||||||
'page_menu' => 'Εμφάνιση _MENU_ αντικειμένων',
|
'page_menu' => 'Εμφάνιση _MENU_ αντικειμένων',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Additional Footer Text ',
|
'footer_text' => 'Additional Footer Text ',
|
||||||
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavoured markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavoured markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
||||||
'general_settings' => 'General Settings',
|
'general_settings' => 'General Settings',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Default EULA and more',
|
'general_settings_help' => 'Default EULA and more',
|
||||||
'generate_backup' => 'Generate Backup',
|
'generate_backup' => 'Generate Backup',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP Version',
|
'php' => 'PHP Version',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'You must install php-gd to display QR codes, see install instructions.',
|
'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.',
|
'php_gd_warning' => 'PHP Image Processing and GD plugin is NOT installed.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Update Settings',
|
'update' => 'Update Settings',
|
||||||
'value' => 'Value',
|
'value' => 'Value',
|
||||||
'brand' => 'Branding',
|
'brand' => 'Branding',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colours, colour, css',
|
|
||||||
'brand_help' => 'Logo, Site Name & Skin',
|
'brand_help' => 'Logo, Site Name & Skin',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'About Settings',
|
'about_settings_title' => 'About Settings',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter by setting keyword',
|
'filter_by_keyword' => 'Filter by setting keyword',
|
||||||
'security' => 'Security',
|
'security' => 'Security',
|
||||||
'security_title' => 'Update Security Settings',
|
'security_title' => 'Update Security Settings',
|
||||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
|
||||||
'security_help' => 'Two-Factor, Password Restrictions',
|
'security_help' => 'Two-Factor, Password Restrictions',
|
||||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
|
||||||
'groups_help' => 'Account Permission Groups',
|
'groups_help' => 'Account Permission Groups',
|
||||||
'localization' => 'Localization',
|
'localization' => 'Localization',
|
||||||
'localization_title' => 'Update Localization Settings',
|
'localization_title' => 'Update Localization Settings',
|
||||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
|
||||||
'localization_help' => 'Language, Date & Currency Display',
|
'localization_help' => 'Language, Date & Currency Display',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||||
'asset_tags_help' => 'Incrementing and prefixes',
|
'asset_tags_help' => 'Incrementing and prefixes',
|
||||||
'labels' => 'Labels',
|
'labels' => 'Labels',
|
||||||
'labels_title' => 'Update Label Settings',
|
'labels_title' => 'Update Label Settings',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'permanently delete',
|
|
||||||
'purge_help' => 'Purge Deleted Records',
|
'purge_help' => 'Purge Deleted Records',
|
||||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D Barcode Type',
|
'label2_2d_type' => '2D Barcode Type',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colours, colour, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'permissions, permission groups, authorization',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'permanently delete',
|
||||||
|
'security' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'Something went wrong. :( ',
|
'error_misc' => 'Something went wrong. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'No Results.',
|
'no_results' => 'No Results.',
|
||||||
'no' => 'No',
|
'no' => 'No',
|
||||||
'notes' => 'Notes',
|
'notes' => 'Notes',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Order Number',
|
'order_number' => 'Order Number',
|
||||||
'only_deleted' => 'Only Deleted Assets',
|
'only_deleted' => 'Only Deleted Assets',
|
||||||
'page_menu' => 'Showing _MENU_ items',
|
'page_menu' => 'Showing _MENU_ items',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Teks Footer Tambahan ',
|
'footer_text' => 'Teks Footer Tambahan ',
|
||||||
'footer_text_help' => 'Teks ini akan muncul di footer sisi kanan. Tautan diizinkan menggunakan <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Jeda, tajuk, gambar, dll bisa mengakibatkan hasil yang tidak dapat diprediksi.',
|
'footer_text_help' => 'Teks ini akan muncul di footer sisi kanan. Tautan diizinkan menggunakan <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Jeda, tajuk, gambar, dll bisa mengakibatkan hasil yang tidak dapat diprediksi.',
|
||||||
'general_settings' => 'Pengaturan Umum',
|
'general_settings' => 'Pengaturan Umum',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Default EULA and more',
|
'general_settings_help' => 'Default EULA and more',
|
||||||
'generate_backup' => 'Membuat Cadangan',
|
'generate_backup' => 'Membuat Cadangan',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'Versi PHP',
|
'php' => 'Versi PHP',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'Anda harus menginstall php-gd untuk menampilkan kode QR, lihat petunjuk pemasangan.',
|
'php_gd_info' => 'Anda harus menginstall php-gd untuk menampilkan kode QR, lihat petunjuk pemasangan.',
|
||||||
'php_gd_warning' => 'Pengolahan gambar PHP dan plugin GD TIDAK terpasang.',
|
'php_gd_warning' => 'Pengolahan gambar PHP dan plugin GD TIDAK terpasang.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Perbarui Setelan',
|
'update' => 'Perbarui Setelan',
|
||||||
'value' => 'Jumlah',
|
'value' => 'Jumlah',
|
||||||
'brand' => 'Bermerek',
|
'brand' => 'Bermerek',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
|
||||||
'brand_help' => 'Logo, Site Name',
|
'brand_help' => 'Logo, Site Name',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'Tentang Pengaturan',
|
'about_settings_title' => 'Tentang Pengaturan',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter by setting keyword',
|
'filter_by_keyword' => 'Filter by setting keyword',
|
||||||
'security' => 'Security',
|
'security' => 'Security',
|
||||||
'security_title' => 'Update Security Settings',
|
'security_title' => 'Update Security Settings',
|
||||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
|
||||||
'security_help' => 'Two-factor, Password Restrictions',
|
'security_help' => 'Two-factor, Password Restrictions',
|
||||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
|
||||||
'groups_help' => 'Account permission groups',
|
'groups_help' => 'Account permission groups',
|
||||||
'localization' => 'Localization',
|
'localization' => 'Localization',
|
||||||
'localization_title' => 'Update Localization Settings',
|
'localization_title' => 'Update Localization Settings',
|
||||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
|
||||||
'localization_help' => 'Language, date display',
|
'localization_help' => 'Language, date display',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||||
'asset_tags_help' => 'Incrementing and prefixes',
|
'asset_tags_help' => 'Incrementing and prefixes',
|
||||||
'labels' => 'Labels',
|
'labels' => 'Labels',
|
||||||
'labels_title' => 'Update Label Settings',
|
'labels_title' => 'Update Label Settings',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'permanently delete',
|
|
||||||
'purge_help' => 'Bersihkan Arsip yang Dihapus',
|
'purge_help' => 'Bersihkan Arsip yang Dihapus',
|
||||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'Tipe Kode Batang 2D',
|
'label2_2d_type' => 'Tipe Kode Batang 2D',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'permissions, permission groups, authorization',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'permanently delete',
|
||||||
|
'security' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'Something went wrong. :( ',
|
'error_misc' => 'Something went wrong. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Tidak ada Hasil.',
|
'no_results' => 'Tidak ada Hasil.',
|
||||||
'no' => 'Tidak',
|
'no' => 'Tidak',
|
||||||
'notes' => 'Catatan',
|
'notes' => 'Catatan',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Nomor Pemesanan',
|
'order_number' => 'Nomor Pemesanan',
|
||||||
'only_deleted' => 'Only Deleted Assets',
|
'only_deleted' => 'Only Deleted Assets',
|
||||||
'page_menu' => 'Menampilkan item _MENU_',
|
'page_menu' => 'Menampilkan item _MENU_',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Texto adicional en el pie de página ',
|
'footer_text' => 'Texto adicional en el pie de página ',
|
||||||
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">markdown estilo Github</a>. Los saltos de línea, encabezados, imágenes, etc. pueden dar lugar a resultados impredecibles.',
|
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">markdown estilo Github</a>. Los saltos de línea, encabezados, imágenes, etc. pueden dar lugar a resultados impredecibles.',
|
||||||
'general_settings' => 'Configuración general',
|
'general_settings' => 'Configuración general',
|
||||||
'general_settings_keywords' => 'soporte de la compañía, firma, aceptación, formato de correo electrónico, formato de nombre de usuario, imágenes, por página, miniatura, acuerdo de uso, términos y condiciones, gravatar, términos de servicio, tablero de indicadores, privacidad',
|
|
||||||
'general_settings_help' => 'Acuerdo de uso predeterminado y más',
|
'general_settings_help' => 'Acuerdo de uso predeterminado y más',
|
||||||
'generate_backup' => 'Generar copia de seguridad',
|
'generate_backup' => 'Generar copia de seguridad',
|
||||||
'google_workspaces' => 'Google Workspace',
|
'google_workspaces' => 'Google Workspace',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'Versión de PHP',
|
'php' => 'Versión de PHP',
|
||||||
'php_info' => 'Información de PHP',
|
'php_info' => 'Información de PHP',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, sistema, información',
|
|
||||||
'php_overview_help' => 'Información del sistema PHP',
|
'php_overview_help' => 'Información del sistema PHP',
|
||||||
'php_gd_info' => 'Debe instalar php-gd para mostrar códigos QR, consulte las instrucciones de instalación.',
|
'php_gd_info' => 'Debe instalar php-gd para mostrar códigos QR, consulte las instrucciones de instalación.',
|
||||||
'php_gd_warning' => 'PHP Image Processing y GD plugin NO están instalados.',
|
'php_gd_warning' => 'PHP Image Processing y GD plugin NO están instalados.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Actualizar configuraciones',
|
'update' => 'Actualizar configuraciones',
|
||||||
'value' => 'Valor',
|
'value' => 'Valor',
|
||||||
'brand' => 'Marca',
|
'brand' => 'Marca',
|
||||||
'brand_keywords' => 'pie de página, logotipo, impresión, tema, apariencia, encabezado, colores, color, css',
|
|
||||||
'brand_help' => 'Logo, nombre del sitio',
|
'brand_help' => 'Logo, nombre del sitio',
|
||||||
'web_brand' => 'Tipo de marca en la web',
|
'web_brand' => 'Tipo de marca en la web',
|
||||||
'about_settings_title' => 'Acerca de las configuraciones',
|
'about_settings_title' => 'Acerca de las configuraciones',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filtrar por palabra clave',
|
'filter_by_keyword' => 'Filtrar por palabra clave',
|
||||||
'security' => 'Seguridad',
|
'security' => 'Seguridad',
|
||||||
'security_title' => 'Actualizar la configuración de seguridad',
|
'security_title' => 'Actualizar la configuración de seguridad',
|
||||||
'security_keywords' => 'contraseña, contraseñas, requisitos, dos factores, contraseñas comunes, inicio de sesión remoto, autenticación',
|
|
||||||
'security_help' => 'Verificación de dos factores y restricciones de contraseña',
|
'security_help' => 'Verificación de dos factores y restricciones de contraseña',
|
||||||
'groups_keywords' => 'permisos, grupos de permisos, autorización',
|
|
||||||
'groups_help' => 'Grupos de permisos',
|
'groups_help' => 'Grupos de permisos',
|
||||||
'localization' => 'Localización',
|
'localization' => 'Localización',
|
||||||
'localization_title' => 'Actualizar la configuración de localización',
|
'localization_title' => 'Actualizar la configuración de localización',
|
||||||
'localization_keywords' => 'localización, moneda, local, ubicación, zona horaria, internacional, internacionalización, idioma, traducción',
|
|
||||||
'localization_help' => 'Idioma, visualización de la fecha',
|
'localization_help' => 'Idioma, visualización de la fecha',
|
||||||
'notifications' => 'Notificaciones',
|
'notifications' => 'Notificaciones',
|
||||||
'notifications_help' => 'Configuración de alertas por correo electrónico y de auditoría',
|
'notifications_help' => 'Configuración de alertas por correo electrónico y de auditoría',
|
||||||
'asset_tags_help' => 'Incrementos y prefijos',
|
'asset_tags_help' => 'Incrementos y prefijos',
|
||||||
'labels' => 'Etiquetas',
|
'labels' => 'Etiquetas',
|
||||||
'labels_title' => 'Actualizar configuración de etiquetas',
|
'labels_title' => 'Actualizar configuración de etiquetas',
|
||||||
'labels_help' => 'Tamaños de etiqueta & ajustes',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'eliminar permanentemente',
|
|
||||||
'purge_help' => 'Purgar registros eliminados',
|
'purge_help' => 'Purgar registros eliminados',
|
||||||
'ldap_extension_warning' => 'No parece que la extensión LDAP esté instalada o habilitada en este servidor. Todavía puede guardar su configuración, pero necesitará habilitar la extensión LDAP para PHP antes de que funcione la sincronización LDAP o el inicio de sesión.',
|
'ldap_extension_warning' => 'No parece que la extensión LDAP esté instalada o habilitada en este servidor. Todavía puede guardar su configuración, pero necesitará habilitar la extensión LDAP para PHP antes de que funcione la sincronización LDAP o el inicio de sesión.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'Tipo de código de barras 2D',
|
'label2_2d_type' => 'Tipo de código de barras 2D',
|
||||||
'label2_2d_type_help' => 'Formato para códigos de barras 2D',
|
'label2_2d_type_help' => 'Formato para códigos de barras 2D',
|
||||||
'label2_2d_target' => 'Apuntamiento del código de barras 2D',
|
'label2_2d_target' => 'Apuntamiento del código de barras 2D',
|
||||||
'label2_2d_target_help' => 'La URL a la que apunta el código de barras 2D cuando se escanea',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Definiciones del campo',
|
'label2_fields' => 'Definiciones del campo',
|
||||||
'label2_fields_help' => 'Los campos se pueden añadir, eliminar y reordenar en la columna izquierda. Para cada campo, se pueden agregar, eliminar y reordenar múltiples opciones para etiquetas y para orígenes de datos en la columna derecha.',
|
'label2_fields_help' => 'Los campos se pueden añadir, eliminar y reordenar en la columna izquierda. Para cada campo, se pueden agregar, eliminar y reordenar múltiples opciones para etiquetas y para orígenes de datos en la columna derecha.',
|
||||||
'help_asterisk_bold' => 'Texto introducido como <code>**texto**</code> se mostrará como negrita',
|
'help_asterisk_bold' => 'Texto introducido como <code>**texto**</code> se mostrará como negrita',
|
||||||
'help_blank_to_use' => 'Deje en blanco para usar el valor de <code>:setting_name</code>',
|
'help_blank_to_use' => 'Deje en blanco para usar el valor de <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Por defecto',
|
'default' => 'Por defecto',
|
||||||
'none' => 'Ninguna',
|
'none' => 'Ninguna',
|
||||||
'google_callback_help' => 'Esto debe introducirse como URL de devolución de llamada (callback) en la configuración de su aplicación de Google OAuth en la <strong><a href="https://console.cloud.google.com/" target="_blank">consola de desarrollador de Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong> de su organización .',
|
'google_callback_help' => 'Esto debe introducirse como URL de devolución de llamada (callback) en la configuración de su aplicación de Google OAuth en la <strong><a href="https://console.cloud.google.com/" target="_blank">consola de desarrollador de Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong> de su organización .',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => '¿Cuántos días antes de la fecha prevista de ingreso de un activo debe figurar en la página «Próximos a ingresar»?',
|
'due_checkin_days_help' => '¿Cuántos días antes de la fecha prevista de ingreso de un activo debe figurar en la página «Próximos a ingresar»?',
|
||||||
'no_groups' => 'Todavía no se han creado grupos. Para agregar uno, visite<code>Configuración de administración > Grupos de permisos</code>.',
|
'no_groups' => 'Todavía no se han creado grupos. Para agregar uno, visite<code>Configuración de administración > Grupos de permisos</code>.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'pie de página, logotipo, impresión, tema, apariencia, encabezado, colores, color, css',
|
||||||
|
'general_settings' => 'soporte de la compañía, firma, aceptación, formato de correo electrónico, formato de nombre de usuario, imágenes, por página, miniatura, acuerdo de uso, términos y condiciones, gravatar, términos de servicio, tablero de indicadores, privacidad',
|
||||||
|
'groups' => 'permisos, grupos de permisos, autorización',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localización, moneda, local, ubicación, zona horaria, internacional, internacionalización, idioma, traducción',
|
||||||
|
'php_overview' => 'phpinfo, sistema, información',
|
||||||
|
'purge' => 'eliminar permanentemente',
|
||||||
|
'security' => 'contraseña, contraseñas, requisitos, dos factores, contraseñas comunes, inicio de sesión remoto, autenticación',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Algo salió mal. :app respondió con: :error_message',
|
'error' => 'Algo salió mal. :app respondió con: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint devuelve una redirección. Por razones de seguridad, no seguimos redirecciones. Por favor, utilice el punto final actual.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint devuelve una redirección. Por razones de seguridad, no seguimos redirecciones. Por favor, utilice el punto final actual.',
|
||||||
'error_misc' => 'Algo salió mal. :( ',
|
'error_misc' => 'Algo salió mal. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'No hay resultados.',
|
'no_results' => 'No hay resultados.',
|
||||||
'no' => 'No',
|
'no' => 'No',
|
||||||
'notes' => 'Notas',
|
'notes' => 'Notas',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Número de orden',
|
'order_number' => 'Número de orden',
|
||||||
'only_deleted' => 'Solo activos eliminados',
|
'only_deleted' => 'Solo activos eliminados',
|
||||||
'page_menu' => 'Mostrando elementos de _MENU_',
|
'page_menu' => 'Mostrando elementos de _MENU_',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'Ya existe un activo con la placa :asset_tag y no se ha solicitado una actualización. No se ha realizado ningún cambio.',
|
'import_asset_tag_exists' => 'Ya existe un activo con la placa :asset_tag y no se ha solicitado una actualización. No se ha realizado ningún cambio.',
|
||||||
'countries_manually_entered_help' => 'Los valores con asterisco (*) fueron introducidos manualmente y no coinciden con los valores desplegables ISO 3166 existentes',
|
'countries_manually_entered_help' => 'Los valores con asterisco (*) fueron introducidos manualmente y no coinciden con los valores desplegables ISO 3166 existentes',
|
||||||
'accessories_assigned' => 'Accesorios asignados',
|
'accessories_assigned' => 'Accesorios asignados',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Texto adicional en el pie de página ',
|
'footer_text' => 'Texto adicional en el pie de página ',
|
||||||
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">markdown estilo Github</a>. Los saltos de línea, encabezados, imágenes, etc. pueden dar lugar a resultados impredecibles.',
|
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">markdown estilo Github</a>. Los saltos de línea, encabezados, imágenes, etc. pueden dar lugar a resultados impredecibles.',
|
||||||
'general_settings' => 'Configuración general',
|
'general_settings' => 'Configuración general',
|
||||||
'general_settings_keywords' => 'soporte de la compañía, firma, aceptación, formato de correo electrónico, formato de nombre de usuario, imágenes, por página, miniatura, acuerdo de uso, términos y condiciones, gravatar, términos de servicio, tablero de indicadores, privacidad',
|
|
||||||
'general_settings_help' => 'Acuerdo de uso predeterminado y más',
|
'general_settings_help' => 'Acuerdo de uso predeterminado y más',
|
||||||
'generate_backup' => 'Generar Respaldo',
|
'generate_backup' => 'Generar Respaldo',
|
||||||
'google_workspaces' => 'Google Workspace',
|
'google_workspaces' => 'Google Workspace',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'Versión de PHP',
|
'php' => 'Versión de PHP',
|
||||||
'php_info' => 'Información de PHP',
|
'php_info' => 'Información de PHP',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, sistema, información',
|
|
||||||
'php_overview_help' => 'Información del sistema PHP',
|
'php_overview_help' => 'Información del sistema PHP',
|
||||||
'php_gd_info' => 'Debe instalar php-gd para mostrar códigos QR, consulte las instrucciones de instalación.',
|
'php_gd_info' => 'Debe instalar php-gd para mostrar códigos QR, consulte las instrucciones de instalación.',
|
||||||
'php_gd_warning' => 'PHP Image Processing y GD plugin NO están instalados.',
|
'php_gd_warning' => 'PHP Image Processing y GD plugin NO están instalados.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Actualizar configuraciones',
|
'update' => 'Actualizar configuraciones',
|
||||||
'value' => 'Valor',
|
'value' => 'Valor',
|
||||||
'brand' => 'Marca',
|
'brand' => 'Marca',
|
||||||
'brand_keywords' => 'pie de página, logotipo, impresión, tema, apariencia, encabezado, colores, color, css',
|
|
||||||
'brand_help' => 'Logo, nombre del sitio',
|
'brand_help' => 'Logo, nombre del sitio',
|
||||||
'web_brand' => 'Tipo de marca en la web',
|
'web_brand' => 'Tipo de marca en la web',
|
||||||
'about_settings_title' => 'Acerca de las configuraciones',
|
'about_settings_title' => 'Acerca de las configuraciones',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filtrar por palabra clave',
|
'filter_by_keyword' => 'Filtrar por palabra clave',
|
||||||
'security' => 'Seguridad',
|
'security' => 'Seguridad',
|
||||||
'security_title' => 'Actualizar la configuración de seguridad',
|
'security_title' => 'Actualizar la configuración de seguridad',
|
||||||
'security_keywords' => 'contraseña, contraseñas, requisitos, dos factores, contraseñas comunes, inicio de sesión remoto, autenticación',
|
|
||||||
'security_help' => 'Verificación de dos factores y restricciones de contraseña',
|
'security_help' => 'Verificación de dos factores y restricciones de contraseña',
|
||||||
'groups_keywords' => 'permisos, grupos de permisos, autorización',
|
|
||||||
'groups_help' => 'Grupos de permisos',
|
'groups_help' => 'Grupos de permisos',
|
||||||
'localization' => 'Localización',
|
'localization' => 'Localización',
|
||||||
'localization_title' => 'Actualizar la configuración de localización',
|
'localization_title' => 'Actualizar la configuración de localización',
|
||||||
'localization_keywords' => 'localización, moneda, local, ubicación, zona horaria, internacional, internacionalización, idioma, traducción',
|
|
||||||
'localization_help' => 'Idioma, visualización de la fecha',
|
'localization_help' => 'Idioma, visualización de la fecha',
|
||||||
'notifications' => 'Notificaciones',
|
'notifications' => 'Notificaciones',
|
||||||
'notifications_help' => 'Configuración de alertas por correo electrónico y de auditoría',
|
'notifications_help' => 'Configuración de alertas por correo electrónico y de auditoría',
|
||||||
'asset_tags_help' => 'Incrementos y prefijos',
|
'asset_tags_help' => 'Incrementos y prefijos',
|
||||||
'labels' => 'Etiquetas',
|
'labels' => 'Etiquetas',
|
||||||
'labels_title' => 'Actualizar configuración de etiquetas',
|
'labels_title' => 'Actualizar configuración de etiquetas',
|
||||||
'labels_help' => 'Tamaños de etiqueta & ajustes',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'eliminar permanentemente',
|
|
||||||
'purge_help' => 'Purgar registros eliminados',
|
'purge_help' => 'Purgar registros eliminados',
|
||||||
'ldap_extension_warning' => 'No parece que la extensión LDAP esté instalada o habilitada en este servidor. Todavía puede guardar su configuración, pero necesitará habilitar la extensión LDAP para PHP antes de que funcione la sincronización LDAP o el inicio de sesión.',
|
'ldap_extension_warning' => 'No parece que la extensión LDAP esté instalada o habilitada en este servidor. Todavía puede guardar su configuración, pero necesitará habilitar la extensión LDAP para PHP antes de que funcione la sincronización LDAP o el inicio de sesión.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'Tipo de códigos de barras 2D',
|
'label2_2d_type' => 'Tipo de códigos de barras 2D',
|
||||||
'label2_2d_type_help' => 'Formato para códigos de barras 2D',
|
'label2_2d_type_help' => 'Formato para códigos de barras 2D',
|
||||||
'label2_2d_target' => 'Apuntamiento del código de barras 2D',
|
'label2_2d_target' => 'Apuntamiento del código de barras 2D',
|
||||||
'label2_2d_target_help' => 'La URL a la que apunta el código de barras 2D cuando se escanea',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Definiciones del campo',
|
'label2_fields' => 'Definiciones del campo',
|
||||||
'label2_fields_help' => 'Los campos se pueden añadir, eliminar y reordenar en la columna izquierda. Para cada campo, se pueden agregar, eliminar y reordenar múltiples opciones para etiquetas y para orígenes de datos en la columna derecha.',
|
'label2_fields_help' => 'Los campos se pueden añadir, eliminar y reordenar en la columna izquierda. Para cada campo, se pueden agregar, eliminar y reordenar múltiples opciones para etiquetas y para orígenes de datos en la columna derecha.',
|
||||||
'help_asterisk_bold' => 'Texto introducido como <code>**texto**</code> se mostrará como negrita',
|
'help_asterisk_bold' => 'Texto introducido como <code>**texto**</code> se mostrará como negrita',
|
||||||
'help_blank_to_use' => 'Deje en blanco para usar el valor de <code>:setting_name</code>',
|
'help_blank_to_use' => 'Deje en blanco para usar el valor de <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Por defecto',
|
'default' => 'Por defecto',
|
||||||
'none' => 'Ninguna',
|
'none' => 'Ninguna',
|
||||||
'google_callback_help' => 'Esto debe introducirse como URL de devolución de llamada (callback) en la configuración de su aplicación de Google OAuth en la <strong><a href="https://console.cloud.google.com/" target="_blank">consola de desarrollador de Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong> de su organización .',
|
'google_callback_help' => 'Esto debe introducirse como URL de devolución de llamada (callback) en la configuración de su aplicación de Google OAuth en la <strong><a href="https://console.cloud.google.com/" target="_blank">consola de desarrollador de Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong> de su organización .',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => '¿Cuántos días antes de la fecha prevista de ingreso de un activo debe figurar en la página «Próximos a ingresar»?',
|
'due_checkin_days_help' => '¿Cuántos días antes de la fecha prevista de ingreso de un activo debe figurar en la página «Próximos a ingresar»?',
|
||||||
'no_groups' => 'Todavía no se han creado grupos. Para agregar uno, visite<code>Configuración de administración > Grupos de permisos</code>.',
|
'no_groups' => 'Todavía no se han creado grupos. Para agregar uno, visite<code>Configuración de administración > Grupos de permisos</code>.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'pie de página, logotipo, impresión, tema, apariencia, encabezado, colores, color, css',
|
||||||
|
'general_settings' => 'soporte de la compañía, firma, aceptación, formato de correo electrónico, formato de nombre de usuario, imágenes, por página, miniatura, acuerdo de uso, términos y condiciones, gravatar, términos de servicio, tablero de indicadores, privacidad',
|
||||||
|
'groups' => 'permisos, grupos de permisos, autorización',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localización, moneda, local, ubicación, zona horaria, internacional, internacionalización, idioma, traducción',
|
||||||
|
'php_overview' => 'phpinfo, sistema, información',
|
||||||
|
'purge' => 'eliminar permanentemente',
|
||||||
|
'security' => 'contraseña, contraseñas, requisitos, dos factores, contraseñas comunes, inicio de sesión remoto, autenticación',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Algo salió mal. :app respondió con: :error_message',
|
'error' => 'Algo salió mal. :app respondió con: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint devuelve una redirección. Por razones de seguridad, no seguimos redirecciones. Por favor, utilice el punto final actual.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint devuelve una redirección. Por razones de seguridad, no seguimos redirecciones. Por favor, utilice el punto final actual.',
|
||||||
'error_misc' => 'Algo salió mal. :( ',
|
'error_misc' => 'Algo salió mal. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'No hay resultados.',
|
'no_results' => 'No hay resultados.',
|
||||||
'no' => 'No',
|
'no' => 'No',
|
||||||
'notes' => 'Notas',
|
'notes' => 'Notas',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Número de orden',
|
'order_number' => 'Número de orden',
|
||||||
'only_deleted' => 'Solo activos eliminados',
|
'only_deleted' => 'Solo activos eliminados',
|
||||||
'page_menu' => 'Mostrando elementos de _MENU_',
|
'page_menu' => 'Mostrando elementos de _MENU_',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'Ya existe un activo con la placa :asset_tag y no se ha solicitado una actualización. No se ha realizado ningún cambio.',
|
'import_asset_tag_exists' => 'Ya existe un activo con la placa :asset_tag y no se ha solicitado una actualización. No se ha realizado ningún cambio.',
|
||||||
'countries_manually_entered_help' => 'Los valores con asterisco (*) fueron introducidos manualmente y no coinciden con los valores desplegables ISO 3166 existentes',
|
'countries_manually_entered_help' => 'Los valores con asterisco (*) fueron introducidos manualmente y no coinciden con los valores desplegables ISO 3166 existentes',
|
||||||
'accessories_assigned' => 'Accesorios asignados',
|
'accessories_assigned' => 'Accesorios asignados',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Texto adicional en el pie de página ',
|
'footer_text' => 'Texto adicional en el pie de página ',
|
||||||
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">markdown estilo Github</a>. Los saltos de línea, encabezados, imágenes, etc. pueden dar lugar a resultados impredecibles.',
|
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">markdown estilo Github</a>. Los saltos de línea, encabezados, imágenes, etc. pueden dar lugar a resultados impredecibles.',
|
||||||
'general_settings' => 'Configuración general',
|
'general_settings' => 'Configuración general',
|
||||||
'general_settings_keywords' => 'soporte de la compañía, firma, aceptación, formato de correo electrónico, formato de nombre de usuario, imágenes, por página, miniatura, acuerdo de uso, términos y condiciones, gravatar, términos de servicio, tablero de indicadores, privacidad',
|
|
||||||
'general_settings_help' => 'Acuerdo de uso predeterminado y más',
|
'general_settings_help' => 'Acuerdo de uso predeterminado y más',
|
||||||
'generate_backup' => 'Generar copia de seguridad',
|
'generate_backup' => 'Generar copia de seguridad',
|
||||||
'google_workspaces' => 'Google Workspace',
|
'google_workspaces' => 'Google Workspace',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'Versión de PHP',
|
'php' => 'Versión de PHP',
|
||||||
'php_info' => 'Información de PHP',
|
'php_info' => 'Información de PHP',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, sistema, información',
|
|
||||||
'php_overview_help' => 'Información del sistema PHP',
|
'php_overview_help' => 'Información del sistema PHP',
|
||||||
'php_gd_info' => 'Debe instalar php-gd para mostrar códigos QR, consulte las instrucciones de instalación.',
|
'php_gd_info' => 'Debe instalar php-gd para mostrar códigos QR, consulte las instrucciones de instalación.',
|
||||||
'php_gd_warning' => 'PHP Image Processing y GD plugin NO están instalados.',
|
'php_gd_warning' => 'PHP Image Processing y GD plugin NO están instalados.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Actualizar configuraciones',
|
'update' => 'Actualizar configuraciones',
|
||||||
'value' => 'Valor',
|
'value' => 'Valor',
|
||||||
'brand' => 'Marca',
|
'brand' => 'Marca',
|
||||||
'brand_keywords' => 'pie de página, logotipo, impresión, tema, apariencia, encabezado, colores, color, css',
|
|
||||||
'brand_help' => 'Logo, nombre del sitio',
|
'brand_help' => 'Logo, nombre del sitio',
|
||||||
'web_brand' => 'Tipo de marca en la web',
|
'web_brand' => 'Tipo de marca en la web',
|
||||||
'about_settings_title' => 'Acerca de las configuraciones',
|
'about_settings_title' => 'Acerca de las configuraciones',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filtrar por palabra clave',
|
'filter_by_keyword' => 'Filtrar por palabra clave',
|
||||||
'security' => 'Seguridad',
|
'security' => 'Seguridad',
|
||||||
'security_title' => 'Actualizar la configuración de seguridad',
|
'security_title' => 'Actualizar la configuración de seguridad',
|
||||||
'security_keywords' => 'contraseña, contraseñas, requisitos, dos factores, contraseñas comunes, inicio de sesión remoto, autenticación',
|
|
||||||
'security_help' => 'Verificación de dos factores y restricciones de contraseña',
|
'security_help' => 'Verificación de dos factores y restricciones de contraseña',
|
||||||
'groups_keywords' => 'permisos, grupos de permisos, autorización',
|
|
||||||
'groups_help' => 'Grupos de permisos',
|
'groups_help' => 'Grupos de permisos',
|
||||||
'localization' => 'Localización',
|
'localization' => 'Localización',
|
||||||
'localization_title' => 'Actualizar la configuración de localización',
|
'localization_title' => 'Actualizar la configuración de localización',
|
||||||
'localization_keywords' => 'localización, moneda, local, ubicación, zona horaria, internacional, internacionalización, idioma, traducción',
|
|
||||||
'localization_help' => 'Idioma, visualización de la fecha',
|
'localization_help' => 'Idioma, visualización de la fecha',
|
||||||
'notifications' => 'Notificaciones',
|
'notifications' => 'Notificaciones',
|
||||||
'notifications_help' => 'Configuración de alertas por correo electrónico y de auditoría',
|
'notifications_help' => 'Configuración de alertas por correo electrónico y de auditoría',
|
||||||
'asset_tags_help' => 'Incrementos y prefijos',
|
'asset_tags_help' => 'Incrementos y prefijos',
|
||||||
'labels' => 'Etiquetas',
|
'labels' => 'Etiquetas',
|
||||||
'labels_title' => 'Actualizar configuración de etiquetas',
|
'labels_title' => 'Actualizar configuración de etiquetas',
|
||||||
'labels_help' => 'Tamaños de etiqueta & ajustes',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'eliminar permanentemente',
|
|
||||||
'purge_help' => 'Purgar registros eliminados',
|
'purge_help' => 'Purgar registros eliminados',
|
||||||
'ldap_extension_warning' => 'No parece que la extensión LDAP esté instalada o habilitada en este servidor. Todavía puede guardar su configuración, pero necesitará habilitar la extensión LDAP para PHP antes de que funcione la sincronización LDAP o el inicio de sesión.',
|
'ldap_extension_warning' => 'No parece que la extensión LDAP esté instalada o habilitada en este servidor. Todavía puede guardar su configuración, pero necesitará habilitar la extensión LDAP para PHP antes de que funcione la sincronización LDAP o el inicio de sesión.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'Tipo de código de barras 2D',
|
'label2_2d_type' => 'Tipo de código de barras 2D',
|
||||||
'label2_2d_type_help' => 'Formato para códigos de barras 2D',
|
'label2_2d_type_help' => 'Formato para códigos de barras 2D',
|
||||||
'label2_2d_target' => 'Apuntamiento del código de barras 2D',
|
'label2_2d_target' => 'Apuntamiento del código de barras 2D',
|
||||||
'label2_2d_target_help' => 'La URL a la que apunta el código de barras 2D cuando se escanea',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Definiciones del campo',
|
'label2_fields' => 'Definiciones del campo',
|
||||||
'label2_fields_help' => 'Los campos se pueden añadir, eliminar y reordenar en la columna izquierda. Para cada campo, se pueden agregar, eliminar y reordenar múltiples opciones para etiquetas y para orígenes de datos en la columna derecha.',
|
'label2_fields_help' => 'Los campos se pueden añadir, eliminar y reordenar en la columna izquierda. Para cada campo, se pueden agregar, eliminar y reordenar múltiples opciones para etiquetas y para orígenes de datos en la columna derecha.',
|
||||||
'help_asterisk_bold' => 'El texto escrito como <code>**texto**</code> se mostrará como negrita',
|
'help_asterisk_bold' => 'El texto escrito como <code>**texto**</code> se mostrará como negrita',
|
||||||
'help_blank_to_use' => 'Deje en blanco para usar el valor de <code>:setting_name</code>',
|
'help_blank_to_use' => 'Deje en blanco para usar el valor de <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Predeterminado',
|
'default' => 'Predeterminado',
|
||||||
'none' => 'Ninguno',
|
'none' => 'Ninguno',
|
||||||
'google_callback_help' => 'Esto debe introducirse como URL de devolución de llamada (callback) en la configuración de su aplicación de Google OAuth en la <strong><a href="https://console.cloud.google.com/" target="_blank">consola de desarrollador de Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong> de su organización .',
|
'google_callback_help' => 'Esto debe introducirse como URL de devolución de llamada (callback) en la configuración de su aplicación de Google OAuth en la <strong><a href="https://console.cloud.google.com/" target="_blank">consola de desarrollador de Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong> de su organización .',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => '¿Cuántos días antes de la fecha prevista de ingreso de un activo debe figurar en la página «Próximos a ingresar»?',
|
'due_checkin_days_help' => '¿Cuántos días antes de la fecha prevista de ingreso de un activo debe figurar en la página «Próximos a ingresar»?',
|
||||||
'no_groups' => 'Todavía no se han creado grupos. Para agregar uno, visite<code>Configuración de administración > Grupos de permisos</code>.',
|
'no_groups' => 'Todavía no se han creado grupos. Para agregar uno, visite<code>Configuración de administración > Grupos de permisos</code>.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'pie de página, logotipo, impresión, tema, apariencia, encabezado, colores, color, css',
|
||||||
|
'general_settings' => 'soporte de la compañía, firma, aceptación, formato de correo electrónico, formato de nombre de usuario, imágenes, por página, miniatura, acuerdo de uso, términos y condiciones, gravatar, términos de servicio, tablero de indicadores, privacidad',
|
||||||
|
'groups' => 'permisos, grupos de permisos, autorización',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localización, moneda, local, ubicación, zona horaria, internacional, internacionalización, idioma, traducción',
|
||||||
|
'php_overview' => 'phpinfo, sistema, información',
|
||||||
|
'purge' => 'eliminar permanentemente',
|
||||||
|
'security' => 'contraseña, contraseñas, requisitos, dos factores, contraseñas comunes, inicio de sesión remoto, autenticación',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Algo salió mal. :app respondió con: :error_message',
|
'error' => 'Algo salió mal. :app respondió con: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint devuelve una redirección. Por razones de seguridad, no seguimos redirecciones. Por favor, utilice el punto final actual.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint devuelve una redirección. Por razones de seguridad, no seguimos redirecciones. Por favor, utilice el punto final actual.',
|
||||||
'error_misc' => 'Algo salió mal. :( ',
|
'error_misc' => 'Algo salió mal. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'No hay resultados.',
|
'no_results' => 'No hay resultados.',
|
||||||
'no' => 'No',
|
'no' => 'No',
|
||||||
'notes' => 'Notas',
|
'notes' => 'Notas',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Número de orden',
|
'order_number' => 'Número de orden',
|
||||||
'only_deleted' => 'Solo activos eliminados',
|
'only_deleted' => 'Solo activos eliminados',
|
||||||
'page_menu' => 'Mostrando elementos de _MENU_',
|
'page_menu' => 'Mostrando elementos de _MENU_',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'Ya existe un activo con la placa :asset_tag y no se ha solicitado una actualización. No se ha realizado ningún cambio.',
|
'import_asset_tag_exists' => 'Ya existe un activo con la placa :asset_tag y no se ha solicitado una actualización. No se ha realizado ningún cambio.',
|
||||||
'countries_manually_entered_help' => 'Los valores con asterisco (*) fueron introducidos manualmente y no coinciden con los valores desplegables ISO 3166 existentes',
|
'countries_manually_entered_help' => 'Los valores con asterisco (*) fueron introducidos manualmente y no coinciden con los valores desplegables ISO 3166 existentes',
|
||||||
'accessories_assigned' => 'Accesorios asignados',
|
'accessories_assigned' => 'Accesorios asignados',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Texto adicional en el pie de página ',
|
'footer_text' => 'Texto adicional en el pie de página ',
|
||||||
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">markdown estilo Github</a>. Los saltos de línea, encabezados, imágenes, etc. pueden dar lugar a resultados impredecibles.',
|
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">markdown estilo Github</a>. Los saltos de línea, encabezados, imágenes, etc. pueden dar lugar a resultados impredecibles.',
|
||||||
'general_settings' => 'Configuración general',
|
'general_settings' => 'Configuración general',
|
||||||
'general_settings_keywords' => 'soporte de la compañía, firma, aceptación, formato de correo electrónico, formato de nombre de usuario, imágenes, por página, miniatura, acuerdo de uso, términos y condiciones, gravatar, términos de servicio, tablero de indicadores, privacidad',
|
|
||||||
'general_settings_help' => 'Acuerdo de uso predeterminado y más',
|
'general_settings_help' => 'Acuerdo de uso predeterminado y más',
|
||||||
'generate_backup' => 'Generar copia de seguridad',
|
'generate_backup' => 'Generar copia de seguridad',
|
||||||
'google_workspaces' => 'Google Workspace',
|
'google_workspaces' => 'Google Workspace',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'Versión de PHP',
|
'php' => 'Versión de PHP',
|
||||||
'php_info' => 'Información de PHP',
|
'php_info' => 'Información de PHP',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, sistema, información',
|
|
||||||
'php_overview_help' => 'Información del sistema PHP',
|
'php_overview_help' => 'Información del sistema PHP',
|
||||||
'php_gd_info' => 'Debe instalar php-gd para mostrar códigos QR, consulte las instrucciones de instalación.',
|
'php_gd_info' => 'Debe instalar php-gd para mostrar códigos QR, consulte las instrucciones de instalación.',
|
||||||
'php_gd_warning' => 'PHP Image Processing y GD plugin NO están instalados.',
|
'php_gd_warning' => 'PHP Image Processing y GD plugin NO están instalados.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Actualizar Configuraciones',
|
'update' => 'Actualizar Configuraciones',
|
||||||
'value' => 'Valor',
|
'value' => 'Valor',
|
||||||
'brand' => 'Marca',
|
'brand' => 'Marca',
|
||||||
'brand_keywords' => 'pie de página, logotipo, impresión, tema, apariencia, encabezado, colores, color, css',
|
|
||||||
'brand_help' => 'Logo, nombre del sitio',
|
'brand_help' => 'Logo, nombre del sitio',
|
||||||
'web_brand' => 'Tipo de marca en la web',
|
'web_brand' => 'Tipo de marca en la web',
|
||||||
'about_settings_title' => 'Acerca de las configuraciones',
|
'about_settings_title' => 'Acerca de las configuraciones',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filtrar por palabra clave',
|
'filter_by_keyword' => 'Filtrar por palabra clave',
|
||||||
'security' => 'Seguridad',
|
'security' => 'Seguridad',
|
||||||
'security_title' => 'Actualizar la configuración de seguridad',
|
'security_title' => 'Actualizar la configuración de seguridad',
|
||||||
'security_keywords' => 'contraseña, contraseñas, requisitos, dos factores, contraseñas comunes, inicio de sesión remoto, autenticación',
|
|
||||||
'security_help' => 'Verificación de dos factores y restricciones de contraseña',
|
'security_help' => 'Verificación de dos factores y restricciones de contraseña',
|
||||||
'groups_keywords' => 'permisos, grupos de permisos, autorización',
|
|
||||||
'groups_help' => 'Grupos de permisos',
|
'groups_help' => 'Grupos de permisos',
|
||||||
'localization' => 'Localización',
|
'localization' => 'Localización',
|
||||||
'localization_title' => 'Actualizar la configuración de localización',
|
'localization_title' => 'Actualizar la configuración de localización',
|
||||||
'localization_keywords' => 'localización, moneda, local, ubicación, zona horaria, internacional, internacionalización, idioma, traducción',
|
|
||||||
'localization_help' => 'Idioma, visualización de la fecha',
|
'localization_help' => 'Idioma, visualización de la fecha',
|
||||||
'notifications' => 'Notificaciones',
|
'notifications' => 'Notificaciones',
|
||||||
'notifications_help' => 'Configuración de alertas por correo electrónico y de auditoría',
|
'notifications_help' => 'Configuración de alertas por correo electrónico y de auditoría',
|
||||||
'asset_tags_help' => 'Incrementos y prefijos',
|
'asset_tags_help' => 'Incrementos y prefijos',
|
||||||
'labels' => 'Etiquetas',
|
'labels' => 'Etiquetas',
|
||||||
'labels_title' => 'Actualizar configuración de etiquetas',
|
'labels_title' => 'Actualizar configuración de etiquetas',
|
||||||
'labels_help' => 'Tamaños de etiqueta & ajustes',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'eliminar permanentemente',
|
|
||||||
'purge_help' => 'Purgar registros eliminados',
|
'purge_help' => 'Purgar registros eliminados',
|
||||||
'ldap_extension_warning' => 'No parece que la extensión LDAP esté instalada o habilitada en este servidor. Todavía puede guardar su configuración, pero necesitará habilitar la extensión LDAP para PHP antes de que funcione la sincronización LDAP o el inicio de sesión.',
|
'ldap_extension_warning' => 'No parece que la extensión LDAP esté instalada o habilitada en este servidor. Todavía puede guardar su configuración, pero necesitará habilitar la extensión LDAP para PHP antes de que funcione la sincronización LDAP o el inicio de sesión.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'Tipo de código de barras 2D',
|
'label2_2d_type' => 'Tipo de código de barras 2D',
|
||||||
'label2_2d_type_help' => 'Formato para códigos de barras 2D',
|
'label2_2d_type_help' => 'Formato para códigos de barras 2D',
|
||||||
'label2_2d_target' => 'Apuntamiento del código de barras 2D',
|
'label2_2d_target' => 'Apuntamiento del código de barras 2D',
|
||||||
'label2_2d_target_help' => 'La URL a la que apunta el código de barras 2D cuando se escanea',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Definiciones del campo',
|
'label2_fields' => 'Definiciones del campo',
|
||||||
'label2_fields_help' => 'Los campos se pueden añadir, eliminar y reordenar en la columna izquierda. Para cada campo, se pueden agregar, eliminar y reordenar múltiples opciones para etiquetas y para orígenes de datos en la columna derecha.',
|
'label2_fields_help' => 'Los campos se pueden añadir, eliminar y reordenar en la columna izquierda. Para cada campo, se pueden agregar, eliminar y reordenar múltiples opciones para etiquetas y para orígenes de datos en la columna derecha.',
|
||||||
'help_asterisk_bold' => 'Texto introducido como <code>**texto**</code> se mostrará como negrita',
|
'help_asterisk_bold' => 'Texto introducido como <code>**texto**</code> se mostrará como negrita',
|
||||||
'help_blank_to_use' => 'Deje en blanco para usar el valor de <code>:setting_name</code>',
|
'help_blank_to_use' => 'Deje en blanco para usar el valor de <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Por defecto',
|
'default' => 'Por defecto',
|
||||||
'none' => 'Ninguna',
|
'none' => 'Ninguna',
|
||||||
'google_callback_help' => 'Esto debe introducirse como URL de devolución de llamada (callback) en la configuración de su aplicación de Google OAuth en la <strong><a href="https://console.cloud.google.com/" target="_blank">consola de desarrollador de Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong> de su organización .',
|
'google_callback_help' => 'Esto debe introducirse como URL de devolución de llamada (callback) en la configuración de su aplicación de Google OAuth en la <strong><a href="https://console.cloud.google.com/" target="_blank">consola de desarrollador de Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong> de su organización .',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => '¿Cuántos días antes de la fecha prevista de ingreso de un activo debe figurar en la página «Próximos a ingresar»?',
|
'due_checkin_days_help' => '¿Cuántos días antes de la fecha prevista de ingreso de un activo debe figurar en la página «Próximos a ingresar»?',
|
||||||
'no_groups' => 'Todavía no se han creado grupos. Para agregar uno, visite<code>Configuración de administración > Grupos de permisos</code>.',
|
'no_groups' => 'Todavía no se han creado grupos. Para agregar uno, visite<code>Configuración de administración > Grupos de permisos</code>.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'pie de página, logotipo, impresión, tema, apariencia, encabezado, colores, color, css',
|
||||||
|
'general_settings' => 'soporte de la compañía, firma, aceptación, formato de correo electrónico, formato de nombre de usuario, imágenes, por página, miniatura, acuerdo de uso, términos y condiciones, gravatar, términos de servicio, tablero de indicadores, privacidad',
|
||||||
|
'groups' => 'permisos, grupos de permisos, autorización',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localización, moneda, local, ubicación, zona horaria, internacional, internacionalización, idioma, traducción',
|
||||||
|
'php_overview' => 'phpinfo, sistema, información',
|
||||||
|
'purge' => 'eliminar permanentemente',
|
||||||
|
'security' => 'contraseña, contraseñas, requisitos, dos factores, contraseñas comunes, inicio de sesión remoto, autenticación',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Algo salió mal. :app respondió con: :error_message',
|
'error' => 'Algo salió mal. :app respondió con: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint devuelve una redirección. Por razones de seguridad, no seguimos redirecciones. Por favor, utilice el punto final actual.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint devuelve una redirección. Por razones de seguridad, no seguimos redirecciones. Por favor, utilice el punto final actual.',
|
||||||
'error_misc' => 'Algo salió mal. :( ',
|
'error_misc' => 'Algo salió mal. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'No hay resultados.',
|
'no_results' => 'No hay resultados.',
|
||||||
'no' => 'No',
|
'no' => 'No',
|
||||||
'notes' => 'Notas',
|
'notes' => 'Notas',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Número de orden',
|
'order_number' => 'Número de orden',
|
||||||
'only_deleted' => 'Solo activos eliminados',
|
'only_deleted' => 'Solo activos eliminados',
|
||||||
'page_menu' => 'Mostrando elementos de _MENU_',
|
'page_menu' => 'Mostrando elementos de _MENU_',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'Ya existe un activo con la placa :asset_tag y no se ha solicitado una actualización. No se ha realizado ningún cambio.',
|
'import_asset_tag_exists' => 'Ya existe un activo con la placa :asset_tag y no se ha solicitado una actualización. No se ha realizado ningún cambio.',
|
||||||
'countries_manually_entered_help' => 'Los valores con asterisco (*) fueron introducidos manualmente y no coinciden con los valores desplegables ISO 3166 existentes',
|
'countries_manually_entered_help' => 'Los valores con asterisco (*) fueron introducidos manualmente y no coinciden con los valores desplegables ISO 3166 existentes',
|
||||||
'accessories_assigned' => 'Accesorios asignados',
|
'accessories_assigned' => 'Accesorios asignados',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Additional Footer Text ',
|
'footer_text' => 'Additional Footer Text ',
|
||||||
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
||||||
'general_settings' => 'üldised seaded',
|
'general_settings' => 'üldised seaded',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Default EULA and more',
|
'general_settings_help' => 'Default EULA and more',
|
||||||
'generate_backup' => 'Loo varundamine',
|
'generate_backup' => 'Loo varundamine',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP versioon',
|
'php' => 'PHP versioon',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'Peate installima php-gd, et kuvada QR-koode, vt installijuhiseid.',
|
'php_gd_info' => 'Peate installima php-gd, et kuvada QR-koode, vt installijuhiseid.',
|
||||||
'php_gd_warning' => 'PHP pilditöötlust ja GD pluginat ei ole installitud.',
|
'php_gd_warning' => 'PHP pilditöötlust ja GD pluginat ei ole installitud.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Värskenda seaded',
|
'update' => 'Värskenda seaded',
|
||||||
'value' => 'Väärtus',
|
'value' => 'Väärtus',
|
||||||
'brand' => 'Branding',
|
'brand' => 'Branding',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
|
||||||
'brand_help' => 'Logo, Site Name',
|
'brand_help' => 'Logo, Site Name',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'Seadistuste kohta',
|
'about_settings_title' => 'Seadistuste kohta',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter by setting keyword',
|
'filter_by_keyword' => 'Filter by setting keyword',
|
||||||
'security' => 'Security',
|
'security' => 'Security',
|
||||||
'security_title' => 'Update Security Settings',
|
'security_title' => 'Update Security Settings',
|
||||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
|
||||||
'security_help' => 'Two-factor, Password Restrictions',
|
'security_help' => 'Two-factor, Password Restrictions',
|
||||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
|
||||||
'groups_help' => 'Account permission groups',
|
'groups_help' => 'Account permission groups',
|
||||||
'localization' => 'Localization',
|
'localization' => 'Localization',
|
||||||
'localization_title' => 'Update Localization Settings',
|
'localization_title' => 'Update Localization Settings',
|
||||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
|
||||||
'localization_help' => 'Language, date display',
|
'localization_help' => 'Language, date display',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||||
'asset_tags_help' => 'Incrementing and prefixes',
|
'asset_tags_help' => 'Incrementing and prefixes',
|
||||||
'labels' => 'Labels',
|
'labels' => 'Labels',
|
||||||
'labels_title' => 'Update Label Settings',
|
'labels_title' => 'Update Label Settings',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'permanently delete',
|
|
||||||
'purge_help' => 'Puhasta kustutatud dokumendid',
|
'purge_help' => 'Puhasta kustutatud dokumendid',
|
||||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D-triipkoodi tüüp',
|
'label2_2d_type' => '2D-triipkoodi tüüp',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'permissions, permission groups, authorization',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'permanently delete',
|
||||||
|
'security' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'Something went wrong. :( ',
|
'error_misc' => 'Something went wrong. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Tulemused puuduvad.',
|
'no_results' => 'Tulemused puuduvad.',
|
||||||
'no' => 'Ei',
|
'no' => 'Ei',
|
||||||
'notes' => 'Märkmed',
|
'notes' => 'Märkmed',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Tellimuse number',
|
'order_number' => 'Tellimuse number',
|
||||||
'only_deleted' => 'Ainult kustutatud varad',
|
'only_deleted' => 'Ainult kustutatud varad',
|
||||||
'page_menu' => 'Näitab _MENU_ üksusi',
|
'page_menu' => 'Näitab _MENU_ üksusi',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -96,7 +96,6 @@ return [
|
||||||
'footer_text_help' => 'این متن در فوتر سمت راست ظاهر می شود. پیوندها با استفاده از <a href="https://help.github.com/articles/github-flavored-markdown/">نشانگذاری طعمدار Github</a> مجاز هستند. شکستگی خطوط، هدرها، تصاویر و غیره ممکن است منجر به نتایج غیر قابل پیش بینی شود.
|
'footer_text_help' => 'این متن در فوتر سمت راست ظاهر می شود. پیوندها با استفاده از <a href="https://help.github.com/articles/github-flavored-markdown/">نشانگذاری طعمدار Github</a> مجاز هستند. شکستگی خطوط، هدرها، تصاویر و غیره ممکن است منجر به نتایج غیر قابل پیش بینی شود.
|
||||||
',
|
',
|
||||||
'general_settings' => 'تنظیمات عمومی',
|
'general_settings' => 'تنظیمات عمومی',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'EULA پیش فرض و موارد دیگر
|
'general_settings_help' => 'EULA پیش فرض و موارد دیگر
|
||||||
',
|
',
|
||||||
'generate_backup' => 'تولید پشتیبان گیری',
|
'generate_backup' => 'تولید پشتیبان گیری',
|
||||||
|
@ -213,7 +212,6 @@ return [
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP
|
'php_overview' => 'PHP
|
||||||
',
|
',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info
|
'php_overview_help' => 'PHP System info
|
||||||
',
|
',
|
||||||
'php_gd_info' => 'شما باید php-gd را نصب کنید تا QR کد ها را ببنید، به دستورالعمل های نصب نگاه کنید.',
|
'php_gd_info' => 'شما باید php-gd را نصب کنید تا QR کد ها را ببنید، به دستورالعمل های نصب نگاه کنید.',
|
||||||
|
@ -327,8 +325,6 @@ return [
|
||||||
'update' => 'به روزرسانی تنظیمات',
|
'update' => 'به روزرسانی تنظیمات',
|
||||||
'value' => 'عنوان آیتم',
|
'value' => 'عنوان آیتم',
|
||||||
'brand' => 'نام تجاری',
|
'brand' => 'نام تجاری',
|
||||||
'brand_keywords' => 'پاورقی، لوگو، چاپ، تم، پوسته، هدر، رنگ ها، رنگ، css
|
|
||||||
',
|
|
||||||
'brand_help' => 'لوگو، نام سایت
|
'brand_help' => 'لوگو، نام سایت
|
||||||
',
|
',
|
||||||
'web_brand' => 'نوع برندینگ وب
|
'web_brand' => 'نوع برندینگ وب
|
||||||
|
@ -438,20 +434,14 @@ return [
|
||||||
',
|
',
|
||||||
'security' => 'امنیت',
|
'security' => 'امنیت',
|
||||||
'security_title' => 'تنظیمات امنیتی را به روز کنید
|
'security_title' => 'تنظیمات امنیتی را به روز کنید
|
||||||
',
|
|
||||||
'security_keywords' => 'رمز عبور، رمزهای عبور، الزامات، دو عاملی، دو عاملی، رمزهای عبور رایج، ورود از راه دور، خروج از سیستم، احراز هویت
|
|
||||||
',
|
',
|
||||||
'security_help' => 'دو عامل، محدودیت رمز عبور
|
'security_help' => 'دو عامل، محدودیت رمز عبور
|
||||||
',
|
|
||||||
'groups_keywords' => 'مجوزها، گروههای مجوز، مجوزها
|
|
||||||
',
|
',
|
||||||
'groups_help' => 'گروه های مجوز حساب
|
'groups_help' => 'گروه های مجوز حساب
|
||||||
',
|
',
|
||||||
'localization' => 'بومی سازی
|
'localization' => 'بومی سازی
|
||||||
',
|
',
|
||||||
'localization_title' => 'تنظیمات محلی سازی را به روز کنید
|
'localization_title' => 'تنظیمات محلی سازی را به روز کنید
|
||||||
',
|
|
||||||
'localization_keywords' => 'محلی سازی، واحد پول، محلی، منطقه، منطقه زمانی، منطقه زمانی، بین المللی، بین المللی، زبان، زبان ها، ترجمه
|
|
||||||
',
|
',
|
||||||
'localization_help' => 'زبان، نمایش تاریخ
|
'localization_help' => 'زبان، نمایش تاریخ
|
||||||
',
|
',
|
||||||
|
@ -462,10 +452,7 @@ return [
|
||||||
'labels' => 'برچسب ها',
|
'labels' => 'برچسب ها',
|
||||||
'labels_title' => 'تنظیمات برچسب را به روز کنید
|
'labels_title' => 'تنظیمات برچسب را به روز کنید
|
||||||
',
|
',
|
||||||
'labels_help' => 'اندازه برچسب & تنظیمات
|
'labels_help' => 'Barcodes & label settings',
|
||||||
',
|
|
||||||
'purge_keywords' => 'برای همیشه حذف کنید
|
|
||||||
',
|
|
||||||
'purge_help' => 'پاک کردن رکوردهای حذف شده
|
'purge_help' => 'پاک کردن رکوردهای حذف شده
|
||||||
',
|
',
|
||||||
'ldap_extension_warning' => 'به نظر نمی رسد که برنامه افزودنی LDAP روی این سرور نصب یا فعال باشد. همچنان میتوانید تنظیمات خود را ذخیره کنید، اما قبل از اینکه همگامسازی یا ورود به سیستم LDAP کار کند، باید افزونه LDAP را برای PHP فعال کنید.
|
'ldap_extension_warning' => 'به نظر نمی رسد که برنامه افزودنی LDAP روی این سرور نصب یا فعال باشد. همچنان میتوانید تنظیمات خود را ذخیره کنید، اما قبل از اینکه همگامسازی یا ورود به سیستم LDAP کار کند، باید افزونه LDAP را برای PHP فعال کنید.
|
||||||
|
@ -507,12 +494,14 @@ return [
|
||||||
'label2_2d_type' => 'نوع بارکد 2D',
|
'label2_2d_type' => 'نوع بارکد 2D',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -534,4 +523,22 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'پاورقی، لوگو، چاپ، تم، پوسته، هدر، رنگ ها، رنگ، css
|
||||||
|
',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'مجوزها، گروههای مجوز، مجوزها
|
||||||
|
',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'محلی سازی، واحد پول، محلی، منطقه، منطقه زمانی، منطقه زمانی، بین المللی، بین المللی، زبان، زبان ها، ترجمه
|
||||||
|
',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'برای همیشه حذف کنید
|
||||||
|
',
|
||||||
|
'security' => 'رمز عبور، رمزهای عبور، الزامات، دو عاملی، دو عاملی، رمزهای عبور رایج، ورود از راه دور، خروج از سیستم، احراز هویت
|
||||||
|
',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -56,5 +56,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'مشکلی پیش آمده. :( ',
|
'error_misc' => 'مشکلی پیش آمده. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -233,6 +233,12 @@ return [
|
||||||
'no_results' => 'بدون نتیجه.',
|
'no_results' => 'بدون نتیجه.',
|
||||||
'no' => 'خیر',
|
'no' => 'خیر',
|
||||||
'notes' => 'یادداشت ها',
|
'notes' => 'یادداشت ها',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'شماره سفارش',
|
'order_number' => 'شماره سفارش',
|
||||||
'only_deleted' => 'فقط دارایی های حذف شده',
|
'only_deleted' => 'فقط دارایی های حذف شده',
|
||||||
'page_menu' => 'نمایش_موارد_منو',
|
'page_menu' => 'نمایش_موارد_منو',
|
||||||
|
@ -652,5 +658,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Lisäys alatunnisteen tekstiin ',
|
'footer_text' => 'Lisäys alatunnisteen tekstiin ',
|
||||||
'footer_text_help' => 'Tämä teksti esiintyy oikeanpuoleisessa alatunnisteessa. Linkkejä voi lisätä käyttämällä <a href="https://help.github.com/articles/github-flavored-markdown/">Github merkintätapaa</a>. Rivinvaihdot, otsikot, kuvat, jne. voivat johtaa epätoivottuihin tuloksiin.',
|
'footer_text_help' => 'Tämä teksti esiintyy oikeanpuoleisessa alatunnisteessa. Linkkejä voi lisätä käyttämällä <a href="https://help.github.com/articles/github-flavored-markdown/">Github merkintätapaa</a>. Rivinvaihdot, otsikot, kuvat, jne. voivat johtaa epätoivottuihin tuloksiin.',
|
||||||
'general_settings' => 'Yleiset asetukset',
|
'general_settings' => 'Yleiset asetukset',
|
||||||
'general_settings_keywords' => 'yrityksen tuki, allekirjoitus, hyväksyminen, sähköpostimuoto, käyttäjänimi muodossa, kuvia, sivua, pikkukuvat, eula, gravatar, tos, kojelauta, yksityisyys',
|
|
||||||
'general_settings_help' => 'Oletuskäyttöehdot ja muuta',
|
'general_settings_help' => 'Oletuskäyttöehdot ja muuta',
|
||||||
'generate_backup' => 'Luo varmuuskopio',
|
'generate_backup' => 'Luo varmuuskopio',
|
||||||
'google_workspaces' => 'Googlen Työtilat',
|
'google_workspaces' => 'Googlen Työtilat',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP versio',
|
'php' => 'PHP versio',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, järjestelmä, tiedot',
|
|
||||||
'php_overview_help' => 'PHP järjestelmän tiedot',
|
'php_overview_help' => 'PHP järjestelmän tiedot',
|
||||||
'php_gd_info' => 'Sinun tulee asentaa php-gd paketti näyttääksesi QR-koodit, katso lisätietoja asennusohjeista.',
|
'php_gd_info' => 'Sinun tulee asentaa php-gd paketti näyttääksesi QR-koodit, katso lisätietoja asennusohjeista.',
|
||||||
'php_gd_warning' => 'PHP Image Prosessing ja GD-lisäosia EI ole asennettuna.',
|
'php_gd_warning' => 'PHP Image Prosessing ja GD-lisäosia EI ole asennettuna.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Päivitä asetukset',
|
'update' => 'Päivitä asetukset',
|
||||||
'value' => 'Arvo',
|
'value' => 'Arvo',
|
||||||
'brand' => 'Brändäys',
|
'brand' => 'Brändäys',
|
||||||
'brand_keywords' => 'footer, logo, tulostus, teema, iho, otsikko, värit, css',
|
|
||||||
'brand_help' => 'Logo, Sivuston Nimi',
|
'brand_help' => 'Logo, Sivuston Nimi',
|
||||||
'web_brand' => 'Web-brändäyksen tyyppi',
|
'web_brand' => 'Web-brändäyksen tyyppi',
|
||||||
'about_settings_title' => 'Tietoa asetuksista',
|
'about_settings_title' => 'Tietoa asetuksista',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Suodata asettamalla avainsana',
|
'filter_by_keyword' => 'Suodata asettamalla avainsana',
|
||||||
'security' => 'Turvallisuus',
|
'security' => 'Turvallisuus',
|
||||||
'security_title' => 'Päivitä Turvallisuusasetukset',
|
'security_title' => 'Päivitä Turvallisuusasetukset',
|
||||||
'security_keywords' => 'salasana, salasanat, vaatimukset, kaksi tekijää, kaksiosainen tekijä, yhteiset salasanat, etäkirjautuminen, kirjaudu, todennus',
|
|
||||||
'security_help' => 'Kaksikerroin, Salasanan Rajoitukset',
|
'security_help' => 'Kaksikerroin, Salasanan Rajoitukset',
|
||||||
'groups_keywords' => 'käyttöoikeudet, käyttöoikeusryhmät, valtuutus',
|
|
||||||
'groups_help' => 'Tilin käyttöoikeusryhmät',
|
'groups_help' => 'Tilin käyttöoikeusryhmät',
|
||||||
'localization' => 'Lokalisointi',
|
'localization' => 'Lokalisointi',
|
||||||
'localization_title' => 'Päivitä Lokalisoinnin Asetukset',
|
'localization_title' => 'Päivitä Lokalisoinnin Asetukset',
|
||||||
'localization_keywords' => 'lokalisointi, valuutta, paikallinen, paikallinen, paikallinen, aikavyöhyke, kansainväliset, internatinalization, kieli, kielet, käännös',
|
|
||||||
'localization_help' => 'Kieli, päivämäärän näyttö',
|
'localization_help' => 'Kieli, päivämäärän näyttö',
|
||||||
'notifications' => 'Ilmoitukset',
|
'notifications' => 'Ilmoitukset',
|
||||||
'notifications_help' => 'Sähköpostihälytykset Ja Tarkastusasetukset',
|
'notifications_help' => 'Sähköpostihälytykset Ja Tarkastusasetukset',
|
||||||
'asset_tags_help' => 'Korotukset ja etuliitteet',
|
'asset_tags_help' => 'Korotukset ja etuliitteet',
|
||||||
'labels' => 'Tunnisteet',
|
'labels' => 'Tunnisteet',
|
||||||
'labels_title' => 'Päivitä Tunnisteasetukset',
|
'labels_title' => 'Päivitä Tunnisteasetukset',
|
||||||
'labels_help' => 'Tunnistekoot & asetukset',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'poista pysyvästi',
|
|
||||||
'purge_help' => 'Puhdista poistetut tietueet',
|
'purge_help' => 'Puhdista poistetut tietueet',
|
||||||
'ldap_extension_warning' => 'Se ei näytä LDAP laajennus on asennettu tai otettu käyttöön tällä palvelimella. Voit silti tallentaa asetuksesi, mutta sinun täytyy ottaa käyttöön LDAP laajennus PHP ennen LDAP synkronointia tai kirjautuminen toimii.',
|
'ldap_extension_warning' => 'Se ei näytä LDAP laajennus on asennettu tai otettu käyttöön tällä palvelimella. Voit silti tallentaa asetuksesi, mutta sinun täytyy ottaa käyttöön LDAP laajennus PHP ennen LDAP synkronointia tai kirjautuminen toimii.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D viivakoodityyppi',
|
'label2_2d_type' => '2D viivakoodityyppi',
|
||||||
'label2_2d_type_help' => 'Muoto 2D-viivakoodeja varten',
|
'label2_2d_type_help' => 'Muoto 2D-viivakoodeja varten',
|
||||||
'label2_2d_target' => '2d-Viivakoodin Kohde',
|
'label2_2d_target' => '2d-Viivakoodin Kohde',
|
||||||
'label2_2d_target_help' => 'URL-osoite, joka on 2D viivakoodipisteitä, kun skannattu',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Kentän Määritelmät',
|
'label2_fields' => 'Kentän Määritelmät',
|
||||||
'label2_fields_help' => 'Kentät voidaan lisätä, poistaa ja järjestää uudelleen vasemmassa sarakkeessa. Kussakin kentässä voidaan lisätä, poistaa ja järjestää uudelleen oikeaan sarakkeeseen useita vaihtoehtoja.',
|
'label2_fields_help' => 'Kentät voidaan lisätä, poistaa ja järjestää uudelleen vasemmassa sarakkeessa. Kussakin kentässä voidaan lisätä, poistaa ja järjestää uudelleen oikeaan sarakkeeseen useita vaihtoehtoja.',
|
||||||
'help_asterisk_bold' => 'Teksti, joka syötetään muodossa <code>**text**</code> näytetään lihavoituina',
|
'help_asterisk_bold' => 'Teksti, joka syötetään muodossa <code>**text**</code> näytetään lihavoituina',
|
||||||
'help_blank_to_use' => 'Jätä tyhjäksi käyttääksesi arvoa <code>:setting_name</code>',
|
'help_blank_to_use' => 'Jätä tyhjäksi käyttääksesi arvoa <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Oletus',
|
'default' => 'Oletus',
|
||||||
'none' => 'Ei Mitään',
|
'none' => 'Ei Mitään',
|
||||||
'google_callback_help' => 'Tämä tulisi syöttää takaisinsoittoosoitteeksi Google OAuth -sovellusasetuksissa organisaatiosi's <strong><a href="https://console.cloud.google.com/" target="_blank">Googlen kehittäjäkonsoli <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'Tämä tulisi syöttää takaisinsoittoosoitteeksi Google OAuth -sovellusasetuksissa organisaatiosi's <strong><a href="https://console.cloud.google.com/" target="_blank">Googlen kehittäjäkonsoli <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, tulostus, teema, iho, otsikko, värit, css',
|
||||||
|
'general_settings' => 'yrityksen tuki, allekirjoitus, hyväksyminen, sähköpostimuoto, käyttäjänimi muodossa, kuvia, sivua, pikkukuvat, eula, gravatar, tos, kojelauta, yksityisyys',
|
||||||
|
'groups' => 'käyttöoikeudet, käyttöoikeusryhmät, valtuutus',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'lokalisointi, valuutta, paikallinen, paikallinen, paikallinen, aikavyöhyke, kansainväliset, internatinalization, kieli, kielet, käännös',
|
||||||
|
'php_overview' => 'phpinfo, järjestelmä, tiedot',
|
||||||
|
'purge' => 'poista pysyvästi',
|
||||||
|
'security' => 'salasana, salasanat, vaatimukset, kaksi tekijää, kaksiosainen tekijä, yhteiset salasanat, etäkirjautuminen, kirjaudu, todennus',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Jokin meni pieleen. :app vastasi: :error_message',
|
'error' => 'Jokin meni pieleen. :app vastasi: :error_message',
|
||||||
'error_redirect' => 'VIRHE: 301/302 :endpoint palauttaa uudelleenohjauksen. Turvallisuussyistä emme seuraa uudelleenohjauksia. Käytä todellista päätepistettä.',
|
'error_redirect' => 'VIRHE: 301/302 :endpoint palauttaa uudelleenohjauksen. Turvallisuussyistä emme seuraa uudelleenohjauksia. Käytä todellista päätepistettä.',
|
||||||
'error_misc' => 'Jokin meni pieleen. :( ',
|
'error_misc' => 'Jokin meni pieleen. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Ei tuloksia.',
|
'no_results' => 'Ei tuloksia.',
|
||||||
'no' => 'Ei',
|
'no' => 'Ei',
|
||||||
'notes' => 'Muistiinpanot',
|
'notes' => 'Muistiinpanot',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Tilausnumero',
|
'order_number' => 'Tilausnumero',
|
||||||
'only_deleted' => 'Vain poistetut laitteet',
|
'only_deleted' => 'Vain poistetut laitteet',
|
||||||
'page_menu' => 'Näytetään _MENU_ kohteita',
|
'page_menu' => 'Näytetään _MENU_ kohteita',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Ang Karagdagang Teksto ng Footer ',
|
'footer_text' => 'Ang Karagdagang Teksto ng Footer ',
|
||||||
'footer_text_help' => 'Ang tekstong ito ay lilitaw sa kanang bahagsi ng footer. Ang mga links ay pinapayagan gamit ang <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored na markdown</a>. Ang biak na mga Linya, mga header, mga imahi, atbp ay maaaring magsaad ng hindi inaasahang mga resulta.',
|
'footer_text_help' => 'Ang tekstong ito ay lilitaw sa kanang bahagsi ng footer. Ang mga links ay pinapayagan gamit ang <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored na markdown</a>. Ang biak na mga Linya, mga header, mga imahi, atbp ay maaaring magsaad ng hindi inaasahang mga resulta.',
|
||||||
'general_settings' => 'Ang Pangakalahatang mga Setting',
|
'general_settings' => 'Ang Pangakalahatang mga Setting',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Default EULA and more',
|
'general_settings_help' => 'Default EULA and more',
|
||||||
'generate_backup' => 'Magsagawa ng Backup',
|
'generate_backup' => 'Magsagawa ng Backup',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'Ang Bersyon ng PHP',
|
'php' => 'Ang Bersyon ng PHP',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'Dapat kang mag-install ng php-gd para makapag-pakita ng mga code ng QR, tingnan ang mga batayan sa pag-install.',
|
'php_gd_info' => 'Dapat kang mag-install ng php-gd para makapag-pakita ng mga code ng QR, tingnan ang mga batayan sa pag-install.',
|
||||||
'php_gd_warning' => 'Hindi na-install ang Pagpoproseso ng Imahe ng PHP at plugin ng GD.',
|
'php_gd_warning' => 'Hindi na-install ang Pagpoproseso ng Imahe ng PHP at plugin ng GD.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Ang mga Setting ay I-update',
|
'update' => 'Ang mga Setting ay I-update',
|
||||||
'value' => 'Balyu',
|
'value' => 'Balyu',
|
||||||
'brand' => 'Ang Pagkakaroon ng Brand',
|
'brand' => 'Ang Pagkakaroon ng Brand',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
|
||||||
'brand_help' => 'Logo, Site Name',
|
'brand_help' => 'Logo, Site Name',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'Ang Tungkol sa mga Setting',
|
'about_settings_title' => 'Ang Tungkol sa mga Setting',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter by setting keyword',
|
'filter_by_keyword' => 'Filter by setting keyword',
|
||||||
'security' => 'Security',
|
'security' => 'Security',
|
||||||
'security_title' => 'Update Security Settings',
|
'security_title' => 'Update Security Settings',
|
||||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
|
||||||
'security_help' => 'Two-factor, Password Restrictions',
|
'security_help' => 'Two-factor, Password Restrictions',
|
||||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
|
||||||
'groups_help' => 'Account permission groups',
|
'groups_help' => 'Account permission groups',
|
||||||
'localization' => 'Localization',
|
'localization' => 'Localization',
|
||||||
'localization_title' => 'Update Localization Settings',
|
'localization_title' => 'Update Localization Settings',
|
||||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
|
||||||
'localization_help' => 'Language, date display',
|
'localization_help' => 'Language, date display',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||||
'asset_tags_help' => 'Incrementing and prefixes',
|
'asset_tags_help' => 'Incrementing and prefixes',
|
||||||
'labels' => 'Labels',
|
'labels' => 'Labels',
|
||||||
'labels_title' => 'Update Label Settings',
|
'labels_title' => 'Update Label Settings',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'permanently delete',
|
|
||||||
'purge_help' => 'Ang mga Rekords na Nai-delete sa Pag-purge',
|
'purge_help' => 'Ang mga Rekords na Nai-delete sa Pag-purge',
|
||||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'Ang Uri ng 2D Barcode',
|
'label2_2d_type' => 'Ang Uri ng 2D Barcode',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'permissions, permission groups, authorization',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'permanently delete',
|
||||||
|
'security' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'Something went wrong. :( ',
|
'error_misc' => 'Something went wrong. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Walang mga Resulta.',
|
'no_results' => 'Walang mga Resulta.',
|
||||||
'no' => 'Hindi',
|
'no' => 'Hindi',
|
||||||
'notes' => 'Ang mga Paalala',
|
'notes' => 'Ang mga Paalala',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Ang Numero ng Pagkakasunod-sunod',
|
'order_number' => 'Ang Numero ng Pagkakasunod-sunod',
|
||||||
'only_deleted' => 'Only Deleted Assets',
|
'only_deleted' => 'Only Deleted Assets',
|
||||||
'page_menu' => 'Ipinapakita_MENU_mga aytem',
|
'page_menu' => 'Ipinapakita_MENU_mga aytem',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Texte supplémentaire en pied de page ',
|
'footer_text' => 'Texte supplémentaire en pied de page ',
|
||||||
'footer_text_help' => 'Ce texte apparaîtra dans le pied de page de droitre. Les liens sont autorisés en utilisant <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Les sauts de ligne, les en-têtes, les images, etc. peuvent entraîner des résultats imprévisibles.',
|
'footer_text_help' => 'Ce texte apparaîtra dans le pied de page de droitre. Les liens sont autorisés en utilisant <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Les sauts de ligne, les en-têtes, les images, etc. peuvent entraîner des résultats imprévisibles.',
|
||||||
'general_settings' => 'Configuration générale',
|
'general_settings' => 'Configuration générale',
|
||||||
'general_settings_keywords' => 'support de l\'entreprise, signature, acceptation, format de courriel, format de nom d\'utilisateur, images, par page, miniature, eula, gravatar, tos, tableau de bord, confidentialité',
|
|
||||||
'general_settings_help' => 'CLUF par défaut et plus encore',
|
'general_settings_help' => 'CLUF par défaut et plus encore',
|
||||||
'generate_backup' => 'Générer une sauvegarde',
|
'generate_backup' => 'Générer une sauvegarde',
|
||||||
'google_workspaces' => 'Espaces de travail Google',
|
'google_workspaces' => 'Espaces de travail Google',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'Version de PHP',
|
'php' => 'Version de PHP',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, système, infos',
|
|
||||||
'php_overview_help' => 'Infos système PHP',
|
'php_overview_help' => 'Infos système PHP',
|
||||||
'php_gd_info' => 'Vous devez installer php-gd afin d\'afficher les QR codes (voir les instructions d\'installation).',
|
'php_gd_info' => 'Vous devez installer php-gd afin d\'afficher les QR codes (voir les instructions d\'installation).',
|
||||||
'php_gd_warning' => 'Le PHP Image Processing et GD plugin n\'est PAS installé.',
|
'php_gd_warning' => 'Le PHP Image Processing et GD plugin n\'est PAS installé.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Mettre à jour les paramètres',
|
'update' => 'Mettre à jour les paramètres',
|
||||||
'value' => 'Valeur',
|
'value' => 'Valeur',
|
||||||
'brand' => 'Marque',
|
'brand' => 'Marque',
|
||||||
'brand_keywords' => 'pied de page, logo, impression, thème, habillage, en-tête, couleurs, couleur, css',
|
|
||||||
'brand_help' => 'Logo, nom du site',
|
'brand_help' => 'Logo, nom du site',
|
||||||
'web_brand' => 'Type de Web Branding',
|
'web_brand' => 'Type de Web Branding',
|
||||||
'about_settings_title' => 'A propos des réglages',
|
'about_settings_title' => 'A propos des réglages',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filtrer par mot clé',
|
'filter_by_keyword' => 'Filtrer par mot clé',
|
||||||
'security' => 'Sécurité',
|
'security' => 'Sécurité',
|
||||||
'security_title' => 'Gérer les paramètres de sécurité',
|
'security_title' => 'Gérer les paramètres de sécurité',
|
||||||
'security_keywords' => 'mot de passe, mots de passe, exigences, deux facteurs, deux-facteurs, mots de passe communs, connexion distante, déconnexion, authentification',
|
|
||||||
'security_help' => 'Authentification à deux facteurs (2FA), Restrictions de mot de passe',
|
'security_help' => 'Authentification à deux facteurs (2FA), Restrictions de mot de passe',
|
||||||
'groups_keywords' => 'permissions, permissions de groupe, autorisation',
|
|
||||||
'groups_help' => 'Permissions de groupe du compte',
|
'groups_help' => 'Permissions de groupe du compte',
|
||||||
'localization' => 'Traduction',
|
'localization' => 'Traduction',
|
||||||
'localization_title' => 'Gérer les paramètres de localisation',
|
'localization_title' => 'Gérer les paramètres de localisation',
|
||||||
'localization_keywords' => 'localisation, devise, locale, locale, fuseau horaire, fuseau horaire, international, internationalisation, langue, traduction, traduction',
|
|
||||||
'localization_help' => 'Langue, affichage de la date',
|
'localization_help' => 'Langue, affichage de la date',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Paramètres d\'alerte et d\'audit par e-mail',
|
'notifications_help' => 'Paramètres d\'alerte et d\'audit par e-mail',
|
||||||
'asset_tags_help' => 'Incrémentation et préfixes',
|
'asset_tags_help' => 'Incrémentation et préfixes',
|
||||||
'labels' => 'Étiquettes',
|
'labels' => 'Étiquettes',
|
||||||
'labels_title' => 'Mettre à jour les paramètres d\'étiquetage',
|
'labels_title' => 'Mettre à jour les paramètres d\'étiquetage',
|
||||||
'labels_help' => 'Taille & paramètres des étiquettes',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'supprimer définitivement',
|
|
||||||
'purge_help' => 'Purger les enregistrements supprimés',
|
'purge_help' => 'Purger les enregistrements supprimés',
|
||||||
'ldap_extension_warning' => 'Il semble que l\'extension LDAP ne soit pas installée ou activée sur ce serveur. Vous pouvez toujours enregistrer vos paramètres, mais vous devrez activer l\'extension LDAP pour PHP avant que la synchronisation LDAP ne fonctionne.',
|
'ldap_extension_warning' => 'Il semble que l\'extension LDAP ne soit pas installée ou activée sur ce serveur. Vous pouvez toujours enregistrer vos paramètres, mais vous devrez activer l\'extension LDAP pour PHP avant que la synchronisation LDAP ne fonctionne.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'Type du code-barres 2D',
|
'label2_2d_type' => 'Type du code-barres 2D',
|
||||||
'label2_2d_type_help' => 'Format pour les codes-barres 2D',
|
'label2_2d_type_help' => 'Format pour les codes-barres 2D',
|
||||||
'label2_2d_target' => 'Cible du code-barres 2D',
|
'label2_2d_target' => 'Cible du code-barres 2D',
|
||||||
'label2_2d_target_help' => 'L\'URL vers laquelle le code-barres 2D pointe lorsqu\'il est scanné',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Définitions de champ',
|
'label2_fields' => 'Définitions de champ',
|
||||||
'label2_fields_help' => 'Les champs peuvent être ajoutés, supprimés et réordonnés dans la colonne de gauche. Pour chaque champ, plusieurs options pour Étiquette et Source de données peuvent être ajoutées, supprimées et réordonnées dans la colonne de droite.',
|
'label2_fields_help' => 'Les champs peuvent être ajoutés, supprimés et réordonnés dans la colonne de gauche. Pour chaque champ, plusieurs options pour Étiquette et Source de données peuvent être ajoutées, supprimées et réordonnées dans la colonne de droite.',
|
||||||
'help_asterisk_bold' => 'Le texte entré sous la forme <code>**texte**</code> sera affiché en gras',
|
'help_asterisk_bold' => 'Le texte entré sous la forme <code>**texte**</code> sera affiché en gras',
|
||||||
'help_blank_to_use' => 'Laisser vide pour utiliser la valeur de <code>:setting_name</code>',
|
'help_blank_to_use' => 'Laisser vide pour utiliser la valeur de <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Par défaut',
|
'default' => 'Par défaut',
|
||||||
'none' => 'Aucun·e',
|
'none' => 'Aucun·e',
|
||||||
'google_callback_help' => 'Ceci doit être entré comme URL de rappel dans les paramètres de votre application Google OAuth dans la <strong><a href="https://console.cloud.google.com/" target="_blank">console de développement Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong> de votre organisation.',
|
'google_callback_help' => 'Ceci doit être entré comme URL de rappel dans les paramètres de votre application Google OAuth dans la <strong><a href="https://console.cloud.google.com/" target="_blank">console de développement Google <i class="fa fa-external-link" aria-hidden="true"></i></a></strong> de votre organisation.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'pied de page, logo, impression, thème, habillage, en-tête, couleurs, couleur, css',
|
||||||
|
'general_settings' => 'support de l\'entreprise, signature, acceptation, format de courriel, format de nom d\'utilisateur, images, par page, miniature, eula, gravatar, tos, tableau de bord, confidentialité',
|
||||||
|
'groups' => 'permissions, permissions de groupe, autorisation',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localisation, devise, locale, locale, fuseau horaire, fuseau horaire, international, internationalisation, langue, traduction, traduction',
|
||||||
|
'php_overview' => 'phpinfo, système, infos',
|
||||||
|
'purge' => 'supprimer définitivement',
|
||||||
|
'security' => 'mot de passe, mots de passe, exigences, deux facteurs, deux-facteurs, mots de passe communs, connexion distante, déconnexion, authentification',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Quelque chose s\'est mal passé. :app a répondu avec: :error_message',
|
'error' => 'Quelque chose s\'est mal passé. :app a répondu avec: :error_message',
|
||||||
'error_redirect' => 'ERREUR : 301/302 :endpoint renvoie une redirection. Pour des raisons de sécurité, nous ne suivons pas les redirections. Veuillez utiliser le point de terminaison réel.',
|
'error_redirect' => 'ERREUR : 301/302 :endpoint renvoie une redirection. Pour des raisons de sécurité, nous ne suivons pas les redirections. Veuillez utiliser le point de terminaison réel.',
|
||||||
'error_misc' => 'Une erreur est survenue. :( ',
|
'error_misc' => 'Une erreur est survenue. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Pas de résultat.',
|
'no_results' => 'Pas de résultat.',
|
||||||
'no' => 'Non',
|
'no' => 'Non',
|
||||||
'notes' => 'Notes',
|
'notes' => 'Notes',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Numéro de commande',
|
'order_number' => 'Numéro de commande',
|
||||||
'only_deleted' => 'Seulement les matériels supprimés',
|
'only_deleted' => 'Seulement les matériels supprimés',
|
||||||
'page_menu' => 'Afficher_MENU_items',
|
'page_menu' => 'Afficher_MENU_items',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Additional Footer Text ',
|
'footer_text' => 'Additional Footer Text ',
|
||||||
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
||||||
'general_settings' => 'Socruithe Ginearálta',
|
'general_settings' => 'Socruithe Ginearálta',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Default EULA and more',
|
'general_settings_help' => 'Default EULA and more',
|
||||||
'generate_backup' => 'Gin Cúltaca',
|
'generate_backup' => 'Gin Cúltaca',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'Leagan PHP',
|
'php' => 'Leagan PHP',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'Ní mór duit php-gd a shuiteáil chun cóid QR a thaispeáint, féach treoracha a shuiteáil.',
|
'php_gd_info' => 'Ní mór duit php-gd a shuiteáil chun cóid QR a thaispeáint, féach treoracha a shuiteáil.',
|
||||||
'php_gd_warning' => 'NÍ bhfuil an próiseáil Íomhá PHP agus an breiseán GD suiteáilte.',
|
'php_gd_warning' => 'NÍ bhfuil an próiseáil Íomhá PHP agus an breiseán GD suiteáilte.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Socruithe Nuashonraithe',
|
'update' => 'Socruithe Nuashonraithe',
|
||||||
'value' => 'Luach',
|
'value' => 'Luach',
|
||||||
'brand' => 'Brandáil',
|
'brand' => 'Brandáil',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
|
||||||
'brand_help' => 'Logo, Site Name',
|
'brand_help' => 'Logo, Site Name',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'Socruithe Maidir',
|
'about_settings_title' => 'Socruithe Maidir',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter by setting keyword',
|
'filter_by_keyword' => 'Filter by setting keyword',
|
||||||
'security' => 'Security',
|
'security' => 'Security',
|
||||||
'security_title' => 'Update Security Settings',
|
'security_title' => 'Update Security Settings',
|
||||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
|
||||||
'security_help' => 'Two-factor, Password Restrictions',
|
'security_help' => 'Two-factor, Password Restrictions',
|
||||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
|
||||||
'groups_help' => 'Account permission groups',
|
'groups_help' => 'Account permission groups',
|
||||||
'localization' => 'Localization',
|
'localization' => 'Localization',
|
||||||
'localization_title' => 'Update Localization Settings',
|
'localization_title' => 'Update Localization Settings',
|
||||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
|
||||||
'localization_help' => 'Language, date display',
|
'localization_help' => 'Language, date display',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||||
'asset_tags_help' => 'Incrementing and prefixes',
|
'asset_tags_help' => 'Incrementing and prefixes',
|
||||||
'labels' => 'Labels',
|
'labels' => 'Labels',
|
||||||
'labels_title' => 'Update Label Settings',
|
'labels_title' => 'Update Label Settings',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'permanently delete',
|
|
||||||
'purge_help' => 'Taifid Scriosta Purge',
|
'purge_help' => 'Taifid Scriosta Purge',
|
||||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'Cineál Barcode 2D',
|
'label2_2d_type' => 'Cineál Barcode 2D',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'permissions, permission groups, authorization',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'permanently delete',
|
||||||
|
'security' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'Something went wrong. :( ',
|
'error_misc' => 'Something went wrong. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Gan Torthaí.',
|
'no_results' => 'Gan Torthaí.',
|
||||||
'no' => 'Uimh',
|
'no' => 'Uimh',
|
||||||
'notes' => 'Nótaí',
|
'notes' => 'Nótaí',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Uimhir ordú',
|
'order_number' => 'Uimhir ordú',
|
||||||
'only_deleted' => 'Only Deleted Assets',
|
'only_deleted' => 'Only Deleted Assets',
|
||||||
'page_menu' => 'Míreanna _MENU_ a thaispeáint',
|
'page_menu' => 'Míreanna _MENU_ a thaispeáint',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Additional Footer Text ',
|
'footer_text' => 'Additional Footer Text ',
|
||||||
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
||||||
'general_settings' => 'הגדרות כלליות',
|
'general_settings' => 'הגדרות כלליות',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Default EULA and more',
|
'general_settings_help' => 'Default EULA and more',
|
||||||
'generate_backup' => 'צור גיבוי',
|
'generate_backup' => 'צור גיבוי',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'גרסת PHP',
|
'php' => 'גרסת PHP',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'עליך להתקין את PHP-gd כדי להציג קודי QR, ראה הוראות התקנה.',
|
'php_gd_info' => 'עליך להתקין את PHP-gd כדי להציג קודי QR, ראה הוראות התקנה.',
|
||||||
'php_gd_warning' => 'עיבוד תמונה PHP ותוסף GD אינו מותקן.',
|
'php_gd_warning' => 'עיבוד תמונה PHP ותוסף GD אינו מותקן.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'עדכן הגדרות',
|
'update' => 'עדכן הגדרות',
|
||||||
'value' => 'ערך',
|
'value' => 'ערך',
|
||||||
'brand' => 'מיתוג',
|
'brand' => 'מיתוג',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
|
||||||
'brand_help' => 'Logo, Site Name',
|
'brand_help' => 'Logo, Site Name',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'על הגדרות',
|
'about_settings_title' => 'על הגדרות',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter by setting keyword',
|
'filter_by_keyword' => 'Filter by setting keyword',
|
||||||
'security' => 'אבטחה',
|
'security' => 'אבטחה',
|
||||||
'security_title' => 'Update Security Settings',
|
'security_title' => 'Update Security Settings',
|
||||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
|
||||||
'security_help' => 'Two-factor, Password Restrictions',
|
'security_help' => 'Two-factor, Password Restrictions',
|
||||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
|
||||||
'groups_help' => 'Account permission groups',
|
'groups_help' => 'Account permission groups',
|
||||||
'localization' => 'Localization',
|
'localization' => 'Localization',
|
||||||
'localization_title' => 'Update Localization Settings',
|
'localization_title' => 'Update Localization Settings',
|
||||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
|
||||||
'localization_help' => 'Language, date display',
|
'localization_help' => 'Language, date display',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||||
'asset_tags_help' => 'Incrementing and prefixes',
|
'asset_tags_help' => 'Incrementing and prefixes',
|
||||||
'labels' => 'Labels',
|
'labels' => 'Labels',
|
||||||
'labels_title' => 'Update Label Settings',
|
'labels_title' => 'Update Label Settings',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'permanently delete',
|
|
||||||
'purge_help' => 'טיהור רשומות שנמחקו',
|
'purge_help' => 'טיהור רשומות שנמחקו',
|
||||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'סוג ברקוד דו-ממדי',
|
'label2_2d_type' => 'סוג ברקוד דו-ממדי',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'permissions, permission groups, authorization',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'permanently delete',
|
||||||
|
'security' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'משהו השתבש אופסי פופסי. :( ',
|
'error_misc' => 'משהו השתבש אופסי פופסי. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'אין תוצאות.',
|
'no_results' => 'אין תוצאות.',
|
||||||
'no' => 'לא',
|
'no' => 'לא',
|
||||||
'notes' => 'הערות',
|
'notes' => 'הערות',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'מספר הזמנה',
|
'order_number' => 'מספר הזמנה',
|
||||||
'only_deleted' => 'Only Deleted Assets',
|
'only_deleted' => 'Only Deleted Assets',
|
||||||
'page_menu' => 'מציג _MENU_ פריטים',
|
'page_menu' => 'מציג _MENU_ פריטים',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'ניהול סיסמאות',
|
||||||
|
'user_managed_passwords_disallow' => 'למנוע ממשתמשים לנהל את הסיסמאות של עצמם',
|
||||||
|
'user_managed_passwords_allow' => 'לאפשר למשתמשים לנהל את הסיסמאות של עצמם',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Dodatni tekst u podnožju ',
|
'footer_text' => 'Dodatni tekst u podnožju ',
|
||||||
'footer_text_help' => 'Ovaj će se tekst pojaviti u podnožju desno. Poveznice su dopuštene uporabom <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Prijelazi u novi red, naslovi, slike itd., mogu imati nepredvidive rezultate.',
|
'footer_text_help' => 'Ovaj će se tekst pojaviti u podnožju desno. Poveznice su dopuštene uporabom <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Prijelazi u novi red, naslovi, slike itd., mogu imati nepredvidive rezultate.',
|
||||||
'general_settings' => 'Opće postavke',
|
'general_settings' => 'Opće postavke',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Default EULA and more',
|
'general_settings_help' => 'Default EULA and more',
|
||||||
'generate_backup' => 'Izradi sigurnosnu kopiju',
|
'generate_backup' => 'Izradi sigurnosnu kopiju',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP verzija',
|
'php' => 'PHP verzija',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'Morate instalirati php-gd da biste prikazali QR kodove, pogledajte instalacijske upute.',
|
'php_gd_info' => 'Morate instalirati php-gd da biste prikazali QR kodove, pogledajte instalacijske upute.',
|
||||||
'php_gd_warning' => 'PHP Image Processing i GD dodatak NIJE instalirani.',
|
'php_gd_warning' => 'PHP Image Processing i GD dodatak NIJE instalirani.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Ažuriraj postavke',
|
'update' => 'Ažuriraj postavke',
|
||||||
'value' => 'Vrijednost',
|
'value' => 'Vrijednost',
|
||||||
'brand' => 'branding',
|
'brand' => 'branding',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
|
||||||
'brand_help' => 'Logo, Site Name',
|
'brand_help' => 'Logo, Site Name',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'O postavkama',
|
'about_settings_title' => 'O postavkama',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter by setting keyword',
|
'filter_by_keyword' => 'Filter by setting keyword',
|
||||||
'security' => 'Security',
|
'security' => 'Security',
|
||||||
'security_title' => 'Update Security Settings',
|
'security_title' => 'Update Security Settings',
|
||||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
|
||||||
'security_help' => 'Two-factor, Password Restrictions',
|
'security_help' => 'Two-factor, Password Restrictions',
|
||||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
|
||||||
'groups_help' => 'Account permission groups',
|
'groups_help' => 'Account permission groups',
|
||||||
'localization' => 'Localization',
|
'localization' => 'Localization',
|
||||||
'localization_title' => 'Update Localization Settings',
|
'localization_title' => 'Update Localization Settings',
|
||||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
|
||||||
'localization_help' => 'Language, date display',
|
'localization_help' => 'Language, date display',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||||
'asset_tags_help' => 'Incrementing and prefixes',
|
'asset_tags_help' => 'Incrementing and prefixes',
|
||||||
'labels' => 'Labels',
|
'labels' => 'Labels',
|
||||||
'labels_title' => 'Update Label Settings',
|
'labels_title' => 'Update Label Settings',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'permanently delete',
|
|
||||||
'purge_help' => 'Obrišite izbrisane zapise',
|
'purge_help' => 'Obrišite izbrisane zapise',
|
||||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'Vrsta 2D barkod',
|
'label2_2d_type' => 'Vrsta 2D barkod',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'permissions, permission groups, authorization',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'permanently delete',
|
||||||
|
'security' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'Something went wrong. :( ',
|
'error_misc' => 'Something went wrong. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Nema rezultata.',
|
'no_results' => 'Nema rezultata.',
|
||||||
'no' => 'Ne',
|
'no' => 'Ne',
|
||||||
'notes' => 'Bilješke',
|
'notes' => 'Bilješke',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Broj narudžbe',
|
'order_number' => 'Broj narudžbe',
|
||||||
'only_deleted' => 'Only Deleted Assets',
|
'only_deleted' => 'Only Deleted Assets',
|
||||||
'page_menu' => 'Prikazuje se _MENU_ stavki',
|
'page_menu' => 'Prikazuje se _MENU_ stavki',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'További lábjegyzet szöveg ',
|
'footer_text' => 'További lábjegyzet szöveg ',
|
||||||
'footer_text_help' => 'Ez a szöveg a lábléc jobb oldalán fog megjelenni. Linkek használata engedélyezett <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a> formátumban. Sortörések, fejlécek, képek, stb. okozhatnak problémákat a megjelenítés során.',
|
'footer_text_help' => 'Ez a szöveg a lábléc jobb oldalán fog megjelenni. Linkek használata engedélyezett <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a> formátumban. Sortörések, fejlécek, képek, stb. okozhatnak problémákat a megjelenítés során.',
|
||||||
'general_settings' => 'Általános beállítások',
|
'general_settings' => 'Általános beállítások',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Alapértelmezett EULA és egyéb',
|
'general_settings_help' => 'Alapértelmezett EULA és egyéb',
|
||||||
'generate_backup' => 'Háttér létrehozása',
|
'generate_backup' => 'Háttér létrehozása',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP verzió',
|
'php' => 'PHP verzió',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, rendszer, információ',
|
|
||||||
'php_overview_help' => 'PHP Rendszer információk',
|
'php_overview_help' => 'PHP Rendszer információk',
|
||||||
'php_gd_info' => 'A QR-kódok megjelenítéséhez telepíteni kell a php-gd-t, lásd a telepítési utasításokat.',
|
'php_gd_info' => 'A QR-kódok megjelenítéséhez telepíteni kell a php-gd-t, lásd a telepítési utasításokat.',
|
||||||
'php_gd_warning' => 'A PHP Image Processing és a GD plugin NEM van telepítve.',
|
'php_gd_warning' => 'A PHP Image Processing és a GD plugin NEM van telepítve.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Frissítési beállítások',
|
'update' => 'Frissítési beállítások',
|
||||||
'value' => 'Érték',
|
'value' => 'Érték',
|
||||||
'brand' => 'Branding',
|
'brand' => 'Branding',
|
||||||
'brand_keywords' => 'lábléc, logó, nyomtatás, téma, megjelenés, fejléc, színek, szín, css',
|
|
||||||
'brand_help' => 'Logó, oldal neve',
|
'brand_help' => 'Logó, oldal neve',
|
||||||
'web_brand' => 'Weboldalon megjelenő branding típusa',
|
'web_brand' => 'Weboldalon megjelenő branding típusa',
|
||||||
'about_settings_title' => 'A Beállítások részről',
|
'about_settings_title' => 'A Beállítások részről',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Szűrés beállítási kulcsszó alapján',
|
'filter_by_keyword' => 'Szűrés beállítási kulcsszó alapján',
|
||||||
'security' => 'Biztonság',
|
'security' => 'Biztonság',
|
||||||
'security_title' => 'Biztonsági beállítások frissítése',
|
'security_title' => 'Biztonsági beállítások frissítése',
|
||||||
'security_keywords' => 'jelszó, jelszavak, követelmények, kétfaktoros, két-faktoros, közös jelszavak, távoli bejelentkezés, kijelentkezés, hitelesítés',
|
|
||||||
'security_help' => 'Kétfaktoros, jelszavas korlátozások',
|
'security_help' => 'Kétfaktoros, jelszavas korlátozások',
|
||||||
'groups_keywords' => 'jogosultságok, jogosultsági csoportok, engedélyezés',
|
|
||||||
'groups_help' => 'Fiókjogosultsági csoportok',
|
'groups_help' => 'Fiókjogosultsági csoportok',
|
||||||
'localization' => 'Lokalizáció',
|
'localization' => 'Lokalizáció',
|
||||||
'localization_title' => 'Lokalizációs beállítások frissítése',
|
'localization_title' => 'Lokalizációs beállítások frissítése',
|
||||||
'localization_keywords' => 'lokalizáció, pénznem, helyi, lokalitás, időzóna, időzóna, nemzetközi, internatinalizáció, nyelv, nyelvek, fordítás',
|
|
||||||
'localization_help' => 'Nyelv, dátum kijelzés',
|
'localization_help' => 'Nyelv, dátum kijelzés',
|
||||||
'notifications' => 'Értesítések',
|
'notifications' => 'Értesítések',
|
||||||
'notifications_help' => 'E-mail riasztások, audit beállítások',
|
'notifications_help' => 'E-mail riasztások, audit beállítások',
|
||||||
'asset_tags_help' => 'Inkrementálás és előtagok',
|
'asset_tags_help' => 'Inkrementálás és előtagok',
|
||||||
'labels' => 'Címkék',
|
'labels' => 'Címkék',
|
||||||
'labels_title' => 'Címke beállítások frissítése',
|
'labels_title' => 'Címke beállítások frissítése',
|
||||||
'labels_help' => 'Címke méretek & beállításai',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'véglegesen törölni',
|
|
||||||
'purge_help' => 'Törölt rekordok kitisztítása',
|
'purge_help' => 'Törölt rekordok kitisztítása',
|
||||||
'ldap_extension_warning' => 'Úgy tűnik, hogy az LDAP-bővítmény nincs telepítve vagy engedélyezve ezen a kiszolgálón. A beállításokat továbbra is elmentheti, de az LDAP-szinkronizálás vagy a bejelentkezés előtt engedélyeznie kell az LDAP-bővítményt a PHP számára.',
|
'ldap_extension_warning' => 'Úgy tűnik, hogy az LDAP-bővítmény nincs telepítve vagy engedélyezve ezen a kiszolgálón. A beállításokat továbbra is elmentheti, de az LDAP-szinkronizálás vagy a bejelentkezés előtt engedélyeznie kell az LDAP-bővítményt a PHP számára.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D vonalkód típus',
|
'label2_2d_type' => '2D vonalkód típus',
|
||||||
'label2_2d_type_help' => '2D vonalkód formátuma',
|
'label2_2d_type_help' => '2D vonalkód formátuma',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Mező definíciók',
|
'label2_fields' => 'Mező definíciók',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Alapértelmezés',
|
'default' => 'Alapértelmezés',
|
||||||
'none' => 'Egyik sem',
|
'none' => 'Egyik sem',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'lábléc, logó, nyomtatás, téma, megjelenés, fejléc, színek, szín, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'jogosultságok, jogosultsági csoportok, engedélyezés',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'lokalizáció, pénznem, helyi, lokalitás, időzóna, időzóna, nemzetközi, internatinalizáció, nyelv, nyelvek, fordítás',
|
||||||
|
'php_overview' => 'phpinfo, rendszer, információ',
|
||||||
|
'purge' => 'véglegesen törölni',
|
||||||
|
'security' => 'jelszó, jelszavak, követelmények, kétfaktoros, két-faktoros, közös jelszavak, távoli bejelentkezés, kijelentkezés, hitelesítés',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Valami hiba történt. A Slack a következő üzenettel válaszolt: :error_message',
|
'error' => 'Valami hiba történt. A Slack a következő üzenettel válaszolt: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'Valami hiba történt :( ',
|
'error_misc' => 'Valami hiba történt :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Nincs találat.',
|
'no_results' => 'Nincs találat.',
|
||||||
'no' => 'Nem ',
|
'no' => 'Nem ',
|
||||||
'notes' => 'Megjegyzések',
|
'notes' => 'Megjegyzések',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Rendelésszám',
|
'order_number' => 'Rendelésszám',
|
||||||
'only_deleted' => 'Csak törölt eszközök',
|
'only_deleted' => 'Csak törölt eszközök',
|
||||||
'page_menu' => '_MENU_ elemet megjelenítve',
|
'page_menu' => '_MENU_ elemet megjelenítve',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Teks Footer Tambahan ',
|
'footer_text' => 'Teks Footer Tambahan ',
|
||||||
'footer_text_help' => 'Teks ini akan muncul di footer sebelah kanan. Tautan diizinkan menggunakan <a href="https://help.github.com/articles/github-flavored-markdown/">marka bergaya Github</a>. Baris baru, header, gambar, dll mungkin akan mengakibatkan hasil yang tidak sesuai.',
|
'footer_text_help' => 'Teks ini akan muncul di footer sebelah kanan. Tautan diizinkan menggunakan <a href="https://help.github.com/articles/github-flavored-markdown/">marka bergaya Github</a>. Baris baru, header, gambar, dll mungkin akan mengakibatkan hasil yang tidak sesuai.',
|
||||||
'general_settings' => 'Konfigurasi umum',
|
'general_settings' => 'Konfigurasi umum',
|
||||||
'general_settings_keywords' => 'dukungan company, tanda tangan, penerimaan, format email, format nama pengguna, gambar, per halaman, thumbnail, Eula, gravatar, tos, dasbor, privasi',
|
|
||||||
'general_settings_help' => 'EULA Default dan lainnya',
|
'general_settings_help' => 'EULA Default dan lainnya',
|
||||||
'generate_backup' => 'Membuat cadangan',
|
'generate_backup' => 'Membuat cadangan',
|
||||||
'google_workspaces' => 'Google Workspace',
|
'google_workspaces' => 'Google Workspace',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'Versi PHP',
|
'php' => 'Versi PHP',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'Anda harus memasang php-gd untuk menampilkan kode QR, baca petunjuk pemasangan.',
|
'php_gd_info' => 'Anda harus memasang php-gd untuk menampilkan kode QR, baca petunjuk pemasangan.',
|
||||||
'php_gd_warning' => 'Plugin PHP pengolahan citra dan GD tidak diinstal.',
|
'php_gd_warning' => 'Plugin PHP pengolahan citra dan GD tidak diinstal.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Pengaturan perbaruan',
|
'update' => 'Pengaturan perbaruan',
|
||||||
'value' => 'Harga',
|
'value' => 'Harga',
|
||||||
'brand' => 'Merek',
|
'brand' => 'Merek',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
|
||||||
'brand_help' => 'Logo, Nama Website',
|
'brand_help' => 'Logo, Nama Website',
|
||||||
'web_brand' => 'Jenis Web Branding',
|
'web_brand' => 'Jenis Web Branding',
|
||||||
'about_settings_title' => 'Tentang pengaturan',
|
'about_settings_title' => 'Tentang pengaturan',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter dengan mengatur kata kunci',
|
'filter_by_keyword' => 'Filter dengan mengatur kata kunci',
|
||||||
'security' => 'Keamanan',
|
'security' => 'Keamanan',
|
||||||
'security_title' => 'Perbarui Pengaturan Keamanan',
|
'security_title' => 'Perbarui Pengaturan Keamanan',
|
||||||
'security_keywords' => 'sandi, persyaratan, dua faktor, kata sandi umum, login jarak jauh, keluar, autentikasi',
|
|
||||||
'security_help' => 'Dua Faktor, Batasan Kata Sandi',
|
'security_help' => 'Dua Faktor, Batasan Kata Sandi',
|
||||||
'groups_keywords' => 'Izin, grup izin, otorisasi',
|
|
||||||
'groups_help' => 'Grup izin akun',
|
'groups_help' => 'Grup izin akun',
|
||||||
'localization' => 'Lokalisasi',
|
'localization' => 'Lokalisasi',
|
||||||
'localization_title' => 'Perbarui Pengaturan Lokalisasi',
|
'localization_title' => 'Perbarui Pengaturan Lokalisasi',
|
||||||
'localization_keywords' => 'Lokalisasi, mata uang, lokal, zona waktu, internasionalisasi, bahasa, terjemahan',
|
|
||||||
'localization_help' => 'Bahasa, tampilan tanggal',
|
'localization_help' => 'Bahasa, tampilan tanggal',
|
||||||
'notifications' => 'Notifikasi',
|
'notifications' => 'Notifikasi',
|
||||||
'notifications_help' => 'Peringatan Email & Pengaturan Audit',
|
'notifications_help' => 'Peringatan Email & Pengaturan Audit',
|
||||||
'asset_tags_help' => 'Penambahan dan awalan',
|
'asset_tags_help' => 'Penambahan dan awalan',
|
||||||
'labels' => 'Label',
|
'labels' => 'Label',
|
||||||
'labels_title' => 'Perbarui Pengaturan Label',
|
'labels_title' => 'Perbarui Pengaturan Label',
|
||||||
'labels_help' => 'Ukuran label & pengaturan',
|
'labels_help' => 'Pengaturan Barcode & label',
|
||||||
'purge_keywords' => 'Hapus permanen',
|
|
||||||
'purge_help' => 'Pembersihan catatan yang telah terhapus',
|
'purge_help' => 'Pembersihan catatan yang telah terhapus',
|
||||||
'ldap_extension_warning' => 'Sepertinya ekstensi LDAP tidak terinstal atau diaktifkan di server ini. Anda masih dapat menyimpan pengaturan, tetapi Anda perlu mengaktifkan ekstensi LDAP untuk PHP sebelum sinkronisasi atau login LDAP berfungsi.',
|
'ldap_extension_warning' => 'Sepertinya ekstensi LDAP tidak terinstal atau diaktifkan di server ini. Anda masih dapat menyimpan pengaturan, tetapi Anda perlu mengaktifkan ekstensi LDAP untuk PHP sebelum sinkronisasi atau login LDAP berfungsi.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,15 @@ return [
|
||||||
'label2_2d_type' => 'Tipe Barcode 2D',
|
'label2_2d_type' => 'Tipe Barcode 2D',
|
||||||
'label2_2d_type_help' => 'Format untuk barcode 2D',
|
'label2_2d_type_help' => 'Format untuk barcode 2D',
|
||||||
'label2_2d_target' => 'Targer Barcode 2D',
|
'label2_2d_target' => 'Targer Barcode 2D',
|
||||||
'label2_2d_target_help' => 'URL yang dituju oleh barcode 2D saat dipindai',
|
'label2_2d_target_help' => 'Data yang akan dimuat dalam barcode 2D',
|
||||||
'label2_fields' => 'Definisi Kolom',
|
'label2_fields' => 'Definisi Kolom',
|
||||||
'label2_fields_help' => 'Kolom dapat ditambahkan, dihapus, dan diurutkan ulang di bagian kiri. Untuk setiap kolom, beberapa opsi untuk Label dan Sumber Data dapat ditambahkan, dihapus, dan diurutkan ulang di bagian kanan.',
|
'label2_fields_help' => 'Kolom dapat ditambahkan, dihapus, dan diurutkan ulang di bagian kiri. Untuk setiap kolom, beberapa opsi untuk Label dan Sumber Data dapat ditambahkan, dihapus, dan diurutkan ulang di bagian kanan.',
|
||||||
'help_asterisk_bold' => 'Teks yang dimasukkan sebagai <code>**text**</code> akan ditampilkan dengan huruf tebal',
|
'help_asterisk_bold' => 'Teks yang dimasukkan sebagai <code>**text**</code> akan ditampilkan dengan huruf tebal',
|
||||||
'help_blank_to_use' => 'Biarkan kosong untuk menggunakan nilai dari <code>:setting_name</code>',
|
'help_blank_to_use' => 'Biarkan kosong untuk menggunakan nilai dari <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> akan menggunakan nilai dari <code>:setting_name</code>.
|
||||||
|
<br>Perhatikan bahwa nilai barcode harus mematuhi spesifikasi barcode terkait agar berhasil diger. Silakan lihat <a href="https://snipe-it.readme.io/docs/barcodes">dokumentasi <i class="fa fa-external-link"></i></a> untuk detail lebih lanjut. ',
|
||||||
|
'asset_id' => 'ID Aset',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'Kosong',
|
'none' => 'Kosong',
|
||||||
'google_callback_help' => 'Ini harus dimasukkan sebagai URL panggilan balik atau callback URL di pengaturan aplikasi Google OAuth Anda di <strong><a href="https://console.cloud.google.com/" target="_blank">Google Developer Console organisasi Anda <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'Ini harus dimasukkan sebagai URL panggilan balik atau callback URL di pengaturan aplikasi Google OAuth Anda di <strong><a href="https://console.cloud.google.com/" target="_blank">Google Developer Console organisasi Anda <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +385,17 @@ return [
|
||||||
'due_checkin_days_help' => 'Berapa hari sebelum perkiraan check-in dari aset yang harus terdaftar di halaman "Due for checkin"?',
|
'due_checkin_days_help' => 'Berapa hari sebelum perkiraan check-in dari aset yang harus terdaftar di halaman "Due for checkin"?',
|
||||||
'no_groups' => 'Belum ada grup yang dibuat. Kunjungi <code>Pengaturan Admin > Grup Izin</code> untuk menambahkannya.',
|
'no_groups' => 'Belum ada grup yang dibuat. Kunjungi <code>Pengaturan Admin > Grup Izin</code> untuk menambahkannya.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||||
|
'general_settings' => 'dukungan company, tanda tangan, penerimaan, format email, format nama pengguna, gambar, per halaman, thumbnail, Eula, gravatar, tos, dasbor, privasi',
|
||||||
|
'groups' => 'izin, grup izin, otorisasi',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'lokalisasi, mata uang, lokal, zona waktu, internasionalisasi, bahasa, terjemahan',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'hapus permanen',
|
||||||
|
'security' => 'sandi, persyaratan, dua faktor, kata sandi umum, login jarak jauh, keluar, autentikasi',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Terjadi kesalahan. :app merespons dengan: :error_message',
|
'error' => 'Terjadi kesalahan. :app merespons dengan: :error_message',
|
||||||
'error_redirect' => 'KESALAHAN: 301/302 :endpoint mengembalikan pengalihan. Untuk alasan keamanan, kami tidak mengikuti pengalihan. Harap gunakan endpoint yang sebenarnya.',
|
'error_redirect' => 'KESALAHAN: 301/302 :endpoint mengembalikan pengalihan. Untuk alasan keamanan, kami tidak mengikuti pengalihan. Harap gunakan endpoint yang sebenarnya.',
|
||||||
'error_misc' => 'Terjadi kesalahan. :( ',
|
'error_misc' => 'Terjadi kesalahan. :( ',
|
||||||
|
'webhook_fail' => ' notifikasi webhook gagal: Pastikan URL masih valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Tidak ada hasil.',
|
'no_results' => 'Tidak ada hasil.',
|
||||||
'no' => 'Tidak',
|
'no' => 'Tidak',
|
||||||
'notes' => 'Catatan',
|
'notes' => 'Catatan',
|
||||||
|
'note_added' => 'Catatan Ditambahkan',
|
||||||
|
'add_note' => 'Tambah Catatan',
|
||||||
|
'note_edited' => 'Catatan Diedit',
|
||||||
|
'edit_note' => 'Edit Catatan',
|
||||||
|
'note_deleted' => 'Catatan Dihapus',
|
||||||
|
'delete_note' => 'Hapus Catatan',
|
||||||
'order_number' => 'Jumlah order',
|
'order_number' => 'Jumlah order',
|
||||||
'only_deleted' => 'Hanya Aset yang Dihapus',
|
'only_deleted' => 'Hanya Aset yang Dihapus',
|
||||||
'page_menu' => 'Menampilkan item _MENU_',
|
'page_menu' => 'Menampilkan item _MENU_',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'Aset dengan tag aset :asset_tag sudah ada dan tidak ada permintaan pembaruan. Tidak ada perubahan yang dibuat.',
|
'import_asset_tag_exists' => 'Aset dengan tag aset :asset_tag sudah ada dan tidak ada permintaan pembaruan. Tidak ada perubahan yang dibuat.',
|
||||||
'countries_manually_entered_help' => 'Nilai yang ditandai dengan tanda bintang (*) dimasukkan secara manual dan tidak cocok dengan nilai dropdown ISO 3166 yang ada',
|
'countries_manually_entered_help' => 'Nilai yang ditandai dengan tanda bintang (*) dimasukkan secara manual dan tidak cocok dengan nilai dropdown ISO 3166 yang ada',
|
||||||
'accessories_assigned' => 'Aksesoris yang Dipasangkan',
|
'accessories_assigned' => 'Aksesoris yang Dipasangkan',
|
||||||
|
'user_managed_passwords' => 'Manajemen Kata Sandi',
|
||||||
|
'user_managed_passwords_disallow' => 'Jangan izinkan pengelolaan kata sandi oleh pengguna',
|
||||||
|
'user_managed_passwords_allow' => 'Izinkan pengguna mengelola kata sandi mereka sendiri',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Additional Footer Text ',
|
'footer_text' => 'Additional Footer Text ',
|
||||||
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>. Line breaks, headers, images, etc may result in unpredictable results.',
|
||||||
'general_settings' => 'General Settings',
|
'general_settings' => 'General Settings',
|
||||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
|
||||||
'general_settings_help' => 'Default EULA and more',
|
'general_settings_help' => 'Default EULA and more',
|
||||||
'generate_backup' => 'Búa til öryggisafrit',
|
'generate_backup' => 'Búa til öryggisafrit',
|
||||||
'google_workspaces' => 'Google Workspaces',
|
'google_workspaces' => 'Google Workspaces',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP útgáfa',
|
'php' => 'PHP útgáfa',
|
||||||
'php_info' => 'PHP info',
|
'php_info' => 'PHP info',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, system, info',
|
|
||||||
'php_overview_help' => 'PHP System info',
|
'php_overview_help' => 'PHP System info',
|
||||||
'php_gd_info' => 'You must install php-gd to display QR codes, see install instructions.',
|
'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.',
|
'php_gd_warning' => 'PHP Image Processing and GD plugin is NOT installed.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Update Settings',
|
'update' => 'Update Settings',
|
||||||
'value' => 'Núvirði',
|
'value' => 'Núvirði',
|
||||||
'brand' => 'Branding',
|
'brand' => 'Branding',
|
||||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
|
||||||
'brand_help' => 'Logo, Site Name',
|
'brand_help' => 'Logo, Site Name',
|
||||||
'web_brand' => 'Web Branding Type',
|
'web_brand' => 'Web Branding Type',
|
||||||
'about_settings_title' => 'About Settings',
|
'about_settings_title' => 'About Settings',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filter by setting keyword',
|
'filter_by_keyword' => 'Filter by setting keyword',
|
||||||
'security' => 'Security',
|
'security' => 'Security',
|
||||||
'security_title' => 'Update Security Settings',
|
'security_title' => 'Update Security Settings',
|
||||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
|
||||||
'security_help' => 'Two-factor, Password Restrictions',
|
'security_help' => 'Two-factor, Password Restrictions',
|
||||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
|
||||||
'groups_help' => 'Account permission groups',
|
'groups_help' => 'Account permission groups',
|
||||||
'localization' => 'Localization',
|
'localization' => 'Localization',
|
||||||
'localization_title' => 'Update Localization Settings',
|
'localization_title' => 'Update Localization Settings',
|
||||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
|
||||||
'localization_help' => 'Language, date display',
|
'localization_help' => 'Language, date display',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||||
'asset_tags_help' => 'Incrementing and prefixes',
|
'asset_tags_help' => 'Incrementing and prefixes',
|
||||||
'labels' => 'Labels',
|
'labels' => 'Labels',
|
||||||
'labels_title' => 'Update Label Settings',
|
'labels_title' => 'Update Label Settings',
|
||||||
'labels_help' => 'Label sizes & settings',
|
'labels_help' => 'Barcodes & label settings',
|
||||||
'purge_keywords' => 'permanently delete',
|
|
||||||
'purge_help' => 'Purge Deleted Records',
|
'purge_help' => 'Purge Deleted Records',
|
||||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => '2D Barcode Type',
|
'label2_2d_type' => '2D Barcode Type',
|
||||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||||
'label2_2d_target' => '2D Barcode Target',
|
'label2_2d_target' => '2D Barcode Target',
|
||||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
'label2_2d_target_help' => 'The data that will be contained in the 2D barcode',
|
||||||
'label2_fields' => 'Field Definitions',
|
'label2_fields' => 'Field Definitions',
|
||||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||||
|
'asset_id' => 'Asset ID',
|
||||||
|
'data' => 'Data',
|
||||||
'default' => 'Default',
|
'default' => 'Default',
|
||||||
'none' => 'None',
|
'none' => 'None',
|
||||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
'due_checkin_days_help' => 'How many days before the expected checkin of an asset should it be listed in the "Due for checkin" page?',
|
||||||
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
'no_groups' => 'No groups have been created yet. Visit <code>Admin Settings > Permission Groups</code> to add one.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||||
|
'general_settings' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||||
|
'groups' => 'permissions, permission groups, authorization',
|
||||||
|
'labels' => 'labels, barcodes, barcode, sheets, print, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||||
|
'php_overview' => 'phpinfo, system, info',
|
||||||
|
'purge' => 'permanently delete',
|
||||||
|
'security' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||||
'error_misc' => 'Eitthvað fór úrskeiðis. :( ',
|
'error_misc' => 'Eitthvað fór úrskeiðis. :( ',
|
||||||
|
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -216,6 +216,12 @@ return [
|
||||||
'no_results' => 'Engar niðurstöður.',
|
'no_results' => 'Engar niðurstöður.',
|
||||||
'no' => 'Nei',
|
'no' => 'Nei',
|
||||||
'notes' => 'Athugasemdir',
|
'notes' => 'Athugasemdir',
|
||||||
|
'note_added' => 'Note Added',
|
||||||
|
'add_note' => 'Add Note',
|
||||||
|
'note_edited' => 'Note Edited',
|
||||||
|
'edit_note' => 'Edit Note',
|
||||||
|
'note_deleted' => 'Note Deleted',
|
||||||
|
'delete_note' => 'Delete Note',
|
||||||
'order_number' => 'Reikningsnúmer',
|
'order_number' => 'Reikningsnúmer',
|
||||||
'only_deleted' => 'Aðeins eyddar eignir',
|
'only_deleted' => 'Aðeins eyddar eignir',
|
||||||
'page_menu' => 'Sýni _MENU_ atriði',
|
'page_menu' => 'Sýni _MENU_ atriði',
|
||||||
|
@ -567,5 +573,8 @@ return [
|
||||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||||
'accessories_assigned' => 'Assigned Accessories',
|
'accessories_assigned' => 'Assigned Accessories',
|
||||||
|
'user_managed_passwords' => 'Password Management',
|
||||||
|
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||||
|
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -70,7 +70,6 @@ return [
|
||||||
'footer_text' => 'Ulteriori testo di piè di pagina ',
|
'footer_text' => 'Ulteriori testo di piè di pagina ',
|
||||||
'footer_text_help' => 'Questo testo verrà visualizzato nel piè di pagina a destra. I collegamenti sono consentiti usando <a href="https://help.github.com/articles/github-flavored-markdown/">Markdown in stile Github</a>. Interruzioni di linea, intestazioni, immagini, ecc. possono dare risultati imprevedibili.',
|
'footer_text_help' => 'Questo testo verrà visualizzato nel piè di pagina a destra. I collegamenti sono consentiti usando <a href="https://help.github.com/articles/github-flavored-markdown/">Markdown in stile Github</a>. Interruzioni di linea, intestazioni, immagini, ecc. possono dare risultati imprevedibili.',
|
||||||
'general_settings' => 'Impostazioni Generali',
|
'general_settings' => 'Impostazioni Generali',
|
||||||
'general_settings_keywords' => 'supporto aziendale, firma, accettazione, formato email, formato username, immagini, per pagina, miniature, eula, gravatar, tos, cruscotto, privacy',
|
|
||||||
'general_settings_help' => 'EULA predefinita e altro',
|
'general_settings_help' => 'EULA predefinita e altro',
|
||||||
'generate_backup' => 'Crea Backup',
|
'generate_backup' => 'Crea Backup',
|
||||||
'google_workspaces' => 'Google Workspace',
|
'google_workspaces' => 'Google Workspace',
|
||||||
|
@ -154,7 +153,6 @@ return [
|
||||||
'php' => 'PHP Version',
|
'php' => 'PHP Version',
|
||||||
'php_info' => 'Info PHP',
|
'php_info' => 'Info PHP',
|
||||||
'php_overview' => 'PHP',
|
'php_overview' => 'PHP',
|
||||||
'php_overview_keywords' => 'phpinfo, sistema, informazioni',
|
|
||||||
'php_overview_help' => 'Informazioni di sistema PHP',
|
'php_overview_help' => 'Informazioni di sistema PHP',
|
||||||
'php_gd_info' => 'È necessario installare php-gd per visualizzare i codici QR, consultare le istruzioni di installazione.',
|
'php_gd_info' => 'È necessario installare php-gd per visualizzare i codici QR, consultare le istruzioni di installazione.',
|
||||||
'php_gd_warning' => 'Il plugin PHP Image Processing and GD non è installato.',
|
'php_gd_warning' => 'Il plugin PHP Image Processing and GD non è installato.',
|
||||||
|
@ -231,7 +229,6 @@ return [
|
||||||
'update' => 'Aggiorna impostazioni',
|
'update' => 'Aggiorna impostazioni',
|
||||||
'value' => 'Valore',
|
'value' => 'Valore',
|
||||||
'brand' => 'Personalizzazione',
|
'brand' => 'Personalizzazione',
|
||||||
'brand_keywords' => 'piè di pagina, logo, stampa, tema, skin, intestazione, colori, colore, css',
|
|
||||||
'brand_help' => 'Logo, Nome Sito',
|
'brand_help' => 'Logo, Nome Sito',
|
||||||
'web_brand' => 'Tipologia di Web Branding',
|
'web_brand' => 'Tipologia di Web Branding',
|
||||||
'about_settings_title' => 'Impostazioni',
|
'about_settings_title' => 'Impostazioni',
|
||||||
|
@ -319,21 +316,17 @@ return [
|
||||||
'filter_by_keyword' => 'Filtra per parola chiave impostazioni',
|
'filter_by_keyword' => 'Filtra per parola chiave impostazioni',
|
||||||
'security' => 'Sicurezza',
|
'security' => 'Sicurezza',
|
||||||
'security_title' => 'Aggiorna Impostazioni Di Sicurezza',
|
'security_title' => 'Aggiorna Impostazioni Di Sicurezza',
|
||||||
'security_keywords' => 'password, passwords, requisiti, due fattori, two-factor, password comuni, login remoto, logout, autenticazione',
|
|
||||||
'security_help' => 'Due Fattori, Restrizioni Password',
|
'security_help' => 'Due Fattori, Restrizioni Password',
|
||||||
'groups_keywords' => 'permessi, gruppi di autorizzazioni, autorizzazione',
|
|
||||||
'groups_help' => 'Gruppi di autorizzazioni account',
|
'groups_help' => 'Gruppi di autorizzazioni account',
|
||||||
'localization' => 'Lingua',
|
'localization' => 'Lingua',
|
||||||
'localization_title' => 'Aggiorna Impostazioni Lingua',
|
'localization_title' => 'Aggiorna Impostazioni Lingua',
|
||||||
'localization_keywords' => 'localizzazione, valuta, locale, locali fuso orario, orario, internazionale, internazionalizzazione, lingua, lingue, traduzione',
|
|
||||||
'localization_help' => 'Lingua, formato data',
|
'localization_help' => 'Lingua, formato data',
|
||||||
'notifications' => 'Notifiche',
|
'notifications' => 'Notifiche',
|
||||||
'notifications_help' => 'Impostazioni Avvisi E Email Controlli',
|
'notifications_help' => 'Impostazioni Avvisi E Email Controlli',
|
||||||
'asset_tags_help' => 'Incrementi e prefissi',
|
'asset_tags_help' => 'Incrementi e prefissi',
|
||||||
'labels' => 'Etichette',
|
'labels' => 'Etichette',
|
||||||
'labels_title' => 'Aggiorna Impostazioni Etichette',
|
'labels_title' => 'Aggiorna Impostazioni Etichette',
|
||||||
'labels_help' => 'Dimensioni etichette & impostazioni',
|
'labels_help' => 'Codici a barre & impostazioni etichette',
|
||||||
'purge_keywords' => 'elimina definitivamente',
|
|
||||||
'purge_help' => 'Elimina Record Cancellati',
|
'purge_help' => 'Elimina Record Cancellati',
|
||||||
'ldap_extension_warning' => 'L\'estensione LDAP non è installata o abilitata su questo server. Puoi ancora salvare le impostazioni, ma è necessario abilitare l\'estensione LDAP per PHP prima che il login o la sincronizzazione LDAP funzioni.',
|
'ldap_extension_warning' => 'L\'estensione LDAP non è installata o abilitata su questo server. Puoi ancora salvare le impostazioni, ma è necessario abilitare l\'estensione LDAP per PHP prima che il login o la sincronizzazione LDAP funzioni.',
|
||||||
'ldap_ad' => 'LDAP/AD',
|
'ldap_ad' => 'LDAP/AD',
|
||||||
|
@ -362,12 +355,14 @@ return [
|
||||||
'label2_2d_type' => 'Tipo Barcode 2D',
|
'label2_2d_type' => 'Tipo Barcode 2D',
|
||||||
'label2_2d_type_help' => 'Formato barcode 2D',
|
'label2_2d_type_help' => 'Formato barcode 2D',
|
||||||
'label2_2d_target' => 'Target Barcode 2D',
|
'label2_2d_target' => 'Target Barcode 2D',
|
||||||
'label2_2d_target_help' => 'L\'URL a cui il codice a barre 2D punterà quando scansionato',
|
'label2_2d_target_help' => 'I dati che saranno contenuti nel codice a barre 2D',
|
||||||
'label2_fields' => 'Definizioni Campi',
|
'label2_fields' => 'Definizioni Campi',
|
||||||
'label2_fields_help' => 'I campi possono essere aggiunti, rimossi e riordinati nella colonna di sinistra. Per ogni campo, possono essere aggionte, rimosse e riordinate più opzioni per Label e DataSource nella colonna di destra.',
|
'label2_fields_help' => 'I campi possono essere aggiunti, rimossi e riordinati nella colonna di sinistra. Per ogni campo, possono essere aggionte, rimosse e riordinate più opzioni per Label e DataSource nella colonna di destra.',
|
||||||
'help_asterisk_bold' => 'Il testo inserito <code>**così**</code> verrà visualizzato in grassetto',
|
'help_asterisk_bold' => 'Il testo inserito <code>**così**</code> verrà visualizzato in grassetto',
|
||||||
'help_blank_to_use' => 'Lascia vuoto per usare il valore in <code>:setting_name</code>',
|
'help_blank_to_use' => 'Lascia vuoto per usare il valore in <code>:setting_name</code>',
|
||||||
'help_default_will_use' => '<br>Il valore dei codici a barre deve essere conforme alla rispettiva specifica per poter essere generato. Si prega di leggere <a href="https://snipe-it.readme.io/docs/barcodes">la documentazione <i class="fa fa-external-link"></i></a> per maggiori dettagli. ',
|
'help_default_will_use' => '<code>:default</code> userà il valore di <code>:setting_name</code>. <br>Nota che il valore dei codici a barre deve essere conforme alla rispettiva specifica per essere generati correttamente. Per maggiori dettagli consultare <a href="https://snipe-it.readme.io/docs/barcodes">la documentazione <i class="fa fa-external-link"></i></a>. ',
|
||||||
|
'asset_id' => 'ID Bene',
|
||||||
|
'data' => 'Dati',
|
||||||
'default' => 'Predefinito',
|
'default' => 'Predefinito',
|
||||||
'none' => 'Niente',
|
'none' => 'Niente',
|
||||||
'google_callback_help' => 'Inserisci qeusto URL come URL di callback nelle impostazioni della tua app Google OAuth nella <strong><a href="https://console.cloud.google.com/" target="_blank">Google Cloud Console<i class="fa fa-external-link" aria-hidden="true"></i></a></strong> della tua organizzazione.',
|
'google_callback_help' => 'Inserisci qeusto URL come URL di callback nelle impostazioni della tua app Google OAuth nella <strong><a href="https://console.cloud.google.com/" target="_blank">Google Cloud Console<i class="fa fa-external-link" aria-hidden="true"></i></a></strong> della tua organizzazione.',
|
||||||
|
@ -389,4 +384,17 @@ return [
|
||||||
'due_checkin_days_help' => 'Quanti giorni prima della restituzione prevista di un Bene dovrebbe essere elencato nella pagina della "Restituzioni Previste"?',
|
'due_checkin_days_help' => 'Quanti giorni prima della restituzione prevista di un Bene dovrebbe essere elencato nella pagina della "Restituzioni Previste"?',
|
||||||
'no_groups' => 'Ancora non è stato creato alcun gruppo. Per aggiungerne uno vai a <code>Impostazioni Admin > Gruppi</code>.',
|
'no_groups' => 'Ancora non è stato creato alcun gruppo. Per aggiungerne uno vai a <code>Impostazioni Admin > Gruppi</code>.',
|
||||||
|
|
||||||
|
|
||||||
|
/* Keywords for settings overview help */
|
||||||
|
'keywords' => [
|
||||||
|
'brand' => 'piè di pagina, logo, stampa, tema, skin, intestazione, colori, colore, css',
|
||||||
|
'general_settings' => 'supporto aziendale, firma, accettazione, formato email, formato username, immagini, per pagina, miniature, eula, gravatar, tos, cruscotto, privacy',
|
||||||
|
'groups' => 'permessi, gruppi di autorizzazioni, autorizzazione',
|
||||||
|
'labels' => 'etichette, codici a barre, codice a barre, fogli, stampa, upc, qr, 1d, 2d',
|
||||||
|
'localization' => 'localizzazione, valuta, locale, locali fuso orario, orario, internazionale, internazionalizzazione, lingua, lingue, traduzione',
|
||||||
|
'php_overview' => 'phpinfo, sistema, informazioni',
|
||||||
|
'purge' => 'elimina definitivamente',
|
||||||
|
'security' => 'password, passwords, requisiti, due fattori, two-factor, password comuni, login remoto, logout, autenticazione',
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,5 +45,6 @@ return [
|
||||||
'error' => 'Qualcosa è andato storto. :app ha risposto con: :error_message',
|
'error' => 'Qualcosa è andato storto. :app ha risposto con: :error_message',
|
||||||
'error_redirect' => 'ERROR: 301/302 :endpoint restituisce un reindirizzamento. Per motivi di sicurezza, non seguiamo reindirizzamenti. Si prega di utilizzare l\'endpoint attuale.',
|
'error_redirect' => 'ERROR: 301/302 :endpoint restituisce un reindirizzamento. Per motivi di sicurezza, non seguiamo reindirizzamenti. Si prega di utilizzare l\'endpoint attuale.',
|
||||||
'error_misc' => 'Qualcosa è andato storto. :( ',
|
'error_misc' => 'Qualcosa è andato storto. :( ',
|
||||||
|
'webhook_fail' => ' notifica webhook fallita: Controlla che l\'URL sia ancora valido.',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue