Files
snipe-it/resources/lang/no/admin/settings/general.php
T
snipe 441ae69f5c Integrations/develop into master (#7352)
* Fixes #6204 - added email alerts and web/API access to assets due for audits (#6992)

* Added upcoming audit report

TODO: Fid diff/threshold math

* Added route to list overdue / upcoming assets via API

* Controller/API methods for due/overdue audits

We could probably skip this and just handle it via view in the routes…

* Added query scopes for due and overdue audits

* Added audit due console command to kernel

* Added ability to pass audit specs to main API asset search method

* Added audit presenter

* Added bootstrap-tables presenter formatter to display an audit button

* Added gated sidenav items to left nav

* Added audit due/overdue blades

* Cleanup on audit due/overdue console command

* Added language strings for audit views

* Fixed :threshold placeholder

* Removed unused setting variable

* Fixed next audit date math

* Added scope for both overdue and upcoming

* Derp. Wrong version

* Bumped version

(I will release this version officially tomorrow)

* Leave the activated state for users alone in normal LDAP synchronisation. (#6988)

* Fixed #7003 - crash when warranty months or purchase date is null

* Fixed #6956 - viewKeys policy inconsistent  (#7009)

* Fixed #6956 - Added additional gates show showing/hiding license keys

* Modified gate to allow user to see licenses if they can create or edit the license as well

* Added API middleware to API routes to enable throttling

TODO: Figure out how to make this costumizable without touching the code

* Import locations from CSV via command line (#7021)

* Added import locations command

* Small fixes to location importer

* Added country, LDAP OU

* Cleaned up comments, added more clarification to what the script does

* Added ability to update groups via API

Fixes [ch9139]

* Bumped version

* Fixed #6883 - remove escaping of fields on LDAP import

* Fixed #6880 - correctly encrypt encrypted fields via the API

* Fixes #5054: LDAP users deactivated for none-ad (#7032)

When using none-AD ldap, users are automatically deactivated every LDAP
sync.  This commit changes the behaviour so that if the active flag isn't set,
the users are enabled.

Fixed #5054, at least for 4.X

* Updated packages

  - Updating erusev/parsedown (v1.7.2 => 1.7.3): Downloading (100%)
  - Updating squizlabs/php_codesniffer (3.4.1 => 3.4.2): Downloading (100%)
  - Updating symfony/polyfill-mbstring (v1.10.0 => v1.11.0): Downloading (100%)
  - Updating symfony/var-dumper (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating league/flysystem (1.0.50 => 1.0.51): Downloading (100%)
  - Updating symfony/translation (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating nesbot/carbon (1.36.2 => 1.37.1): Downloading (100%)
  - Updating symfony/debug (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/console (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/finder (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/polyfill-ctype (v1.10.0 => v1.11.0): Downloading (100%)
  - Updating symfony/polyfill-php70 (v1.10.0 => v1.11.0): Downloading (100%)
  - Updating symfony/http-foundation (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/event-dispatcher (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/http-kernel (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/process (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/routing (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/polyfill-util (v1.10.0 => v1.11.0): Downloading (100%)
  - Updating symfony/polyfill-php56 (v1.10.0 => v1.11.0): Downloading (100%)
  - Updating symfony/psr-http-message-bridge (v1.1.1 => v1.1.2): Downloading (failed)
Downloading (100%)
  - Updating rollbar/rollbar (v1.7.5 => v1.8.1): Downloading (100%)
  - Updating symfony/yaml (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/browser-kit (v3.4.23 => v3.4.27): Downloading (100%)

* Fixed #7044 - API update deleted custom fields if they are not re-presented

* Fixed XSS vulnerability when creating a new categories, etc via modal on create

Same fix as before, because of the weird select2 post-parsing ajax behavior

* Updated email strings

* Fixed #7046 - added user website url back into UI

* Updated language strings

* Bumped version

* Updated packages

* New backups config for spatie

* Removed debugbar service provider (autodiscovery)

* Use laravel v5.5 withCount manual aliases

* Added spatie language files

* Removed old laravel backups config

This config file was renamed in a newer version of spatie laravel-backup

* Set the serialization

* Added the command loader to console kernel

* Renamed fire() to handle()

* Updated withCount to use manual naming

* Updated backup path in backup admin

* Updated travis with new php versions

* Bumped laravel version in readme

* Fixed custom field edit screen

* Fixed baseUrl is undefined error

I literally cannot figure out how this ever worked before.

* Fix for included files in backup

* Bumped version

* Switch has() to filled()

* Change ->has() to ->filled()

* Removed cosole log

* Bumped packages

* Use getReader instead of fetchAssoc for CSV parser

https://csv.thephpleague.com/9.0/upgrading/

* Handle JSON validation errors like 5.4

* Handle JSON validation errors like 5.4

* Handle JSON validation errors like 5.4

* Trying to fix ajax asset validation

This I think gets us closer, but still not handling the validation on the asset properly.

When I do a print_r of the validation in the other items, its looking for an error bag that looks something like this:

```
Illuminate\Support\MessageBag Object
(
    [messages:protected] => Array
        (
            [name] => Array
                (
                    [0] => The name field is required.
                )

            [seats] => Array
                (
                    [0] => The seats field is required.
                )

            [category_id] => Array
                (
                    [0] => The category id field is required.
                )

        )

    [format:protected] => :message
)
```

Currently the Assets ajax returns:

```
[2019-05-24 06:52:06] develop.ERROR: array (
  'messages' =>
  array (
    'model_id' =>
    array (
      0 => 'The model id field is required.',
    ),
    'status_id' =>
    array (
      0 => 'The status id field is required.',
    ),
    'asset_tag' =>
    array (
      0 => 'The asset tag field is required.',
    ),
  ),
)
```

So not sure why it’s not working.

* Fixed missing asset validation

* Check that a model exists before trying to fiddle with fieldsets

* Tidied up license check

* Removed extra escaping on checkin

* Updated importer to work with newer CSV Reader::getRecords() method

* Fixed field mapping

* Small fix for reordering fields

Fixes Illuminate\Database\QueryException: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'order' cannot be null (SQL: insert into `custom_field_custom_fieldset` (`custom_field_id`, `custom_fieldset_id`, `order`, `required`) values (12, 7, , 0)) [ch1151]

This needs revisiting for a more solid fix, especially for data that was already entered bad.

* Fixed bug where sorting by company name in Users API did not work

Fixes [ch9200]

* Removed custom fields from AssignedSearch to prevent confusing data in selectlist

Fixes [ch9193]

* Removed alert-danger from tests

* Fixed missed consumables_count withCount() statement

* Fixed Undefined variable user in $backto if checked out to a non-user

Fixes [ch9194]

* Check for valid model before attempting to access fieldsets

Fixes [ch1249]

* Only build the log upload destination path if there is a matching record

Fixes [ch1232]

* Fixed free_seats_count variable name

(I forgot that Laravel switched camel case to snake case for their old 5.4 withCount variables)

* Only gtry to delete the file if a record is found in the log

* Only try to get fieldset if model is valid

* Fixed more camel-casing -> snake-casing

* Only display the file if the log record can be found

* Fixed casing in sync command

* Updated README

* Derp - typo

* Added link to Atlassian plugin

* More Atlassian clarifications

* Show accessory image on view page

* Increased image size to 800px, added lightboxes

* Fixed #7083 - Removed user_exists constraint on department save

If the user has been deleted, this prevented the department from being successfully saved on edit

* Updated branch in version file

* Dockerfile update to bring us up to php v7.1 for Laravel 5.5 (#7084)

* bump up to php7.1

& change deprecated MAINTAINER to a LABEL so it is visible with `docker inspect`

* AND modapache ><

* 2 updates required to get software-properties+ppa

* Bumped version

* Bumped release again :(

* Missed one

* Fixed #7098 - updated backup config for deleteFile() method

* Fixed #7092 -  handle weird port forwarding/port numbers for baseUrl

* Bumped version

* Fixed #7099 - set email to null by default for backup notifications

* Removed old comments

* Fixed #7100 - Check if $user isset on checkin

* Increased throttle to 120 requests per minute

* Added Filipino, corrected order for Spanish variations

* Update language strings

* Bumped hash

* Changed has to filled to fix bulk asset editing

* Bumped point version

* Small fixes for phpleague CSB reader v9

* Improved error checking in locations importer

* Fixed #7145 - rename groups table to permissions_group for mysql 8 reserved word compatibility

* Reduce minimum group name length to 2 (from 3)

eg: IT

* Back in time fix FOR #7145 for new installs on MySQL 8+

* Fixed permission insert

//TODO

Handle this via model

* Possible fix for reporting/admin migration back in time

* Fixed #7164 - change table name to permission_groups

* Fixed LDAP password blanking on save

* fixing previous commit's actual wiping of password (#7183)

replaced Input::fille('ldap_pword') with _filled_.   Should be good to go.  

https://github.com/snipe/snipe-it/issues/7179

https://github.com/snipe/snipe-it/issues/7169

* Bumped version

* Downgrading rollbar for Laravel 5.5

* Spelling Correction (#7206)

Fixed Spelling for the word reqrite, to be rewrite.

* Fix #6910: Add logic to manipulate the eloquent query. (#7006)

* Added company_id to consumables_users table

* Added logic to manage when a pivot table doesn't have the column company_id trough a join with users

* Remove a migration that tries to fix this problem, but is not longer necessary

* Addresses #7238 - add PWA code to layout

Needs additional UX testing

* Better log message for bad LDAP connection

* Fixed #7186 - has vs filled in User’s API blanking out groups if no group_ids are passed

* Comment clarification on #7186

* Check for valid seat on hardware view

* Added space between footer and custom message

* Cap warranty months to three characters

Filles rollbar 209

* Cap warranty months to 3 on the frontend blade

* Fixed countable() strings on user destroy

* Check that the user has assets and that the aset model is valid

* Bumped hash

* Caps asset warranty to 20 years

* Command to fix custom field unicode conversion differences between PHP versions (#7263)

* Fixes #7252 form request changes (#7272)

* Fixes for #7252 - custom fields not validating / no validaton messages in API w/form requests

* Removed debug info

* More fixes for #7252

This is mostly working as intended, if not yet the way Laravel wants us to do it.

Right now, the API returns correctly, and the form UI will return highlighted errors, with the input filled in ~sometimes~. I’m not sure why it’s only sometimes yet, but this is potentially progress.

* Removed experimental method

* Check for digits_between:0,240 for warranty

* Removed debug code

* Apply fix from PR #7273 to master

* Bumped hash

* Fixed #7250 - permission issue for API fieldsets and fields endpoints

This applies the change from #7294 to master

* Add @mskrip as a contributor

* Fixed #7270 - Checking-in Assets via API Removes the Item's Asset Name

* CORS for api (#7292)

* Added CORS support to API

* Changed order so CORS will still work if throttle hit

* Added APP_CORS_ALLOWED_ORIGINS env option

* Fixed typo

* Clarified header comments

* More clarification

* DIsable CORS allowed origins by default to replicate existing behavior

* Change variable name to be clearer

* Bumped version

* Added condition to deal with fieldname 'rtd_location' which can be tried to be queried in some places and doesn't exist in database (#7317)

* Added comments to the ByFilter query scope for clarity

* Added accessories checkout/checkin API endpoint

* Fixed CVE-2019-10742

https://nvd.nist.gov/vuln/detail/CVE-2019-10742

* Update README.md (#7334)

Add reference to CSV importer.

* Group related variables in .env

* History importer fixes

* Fixes to history importer
2019-08-14 21:48:14 -07:00

189 lines
15 KiB
PHP

<?php
return array(
'ad' => 'Active Directory',
'ad_domain' => 'Active Directory domene',
'ad_domain_help' => 'Dette er noen ganger det samme som e-post domene, men ikke alltid.',
'admin_cc_email' => 'CC e-post',
'admin_cc_email_help' => 'Hvis du vil sende en kopi av innsjekk-/utsjekkeposter som sendes til brukere til en ekstra epostadresse, skriv den inn her. La ellers feltet stå tomt.',
'is_ad' => 'Dette er en Active Directory server',
'alert_email' => 'Send varslinger til',
'alerts_enabled' => 'Varslinger aktivert',
'alert_interval' => 'Terskel for utløpende varslinger (dager)',
'alert_inv_threshold' => 'Terskel for eiendelsvarslinger',
'asset_ids' => 'Eiendels-IDer',
'audit_interval' => 'Audit intervall',
'audit_interval_help' => 'Hvis du regelmessig må fysisk overvåke dine eiendeler, angi intervallet i måneder.',
'audit_warning_days' => 'Audit terskelverdi for advarsel',
'audit_warning_days_help' => 'Hvor mange dager i forveien bør vi advare deg når eiendeler forfaller for overvåking?',
'auto_increment_assets' => 'Generer automatisk økende eiendels-IDer',
'auto_increment_prefix' => 'Prefiks (valgfritt)',
'auto_incrementing_help' => 'Aktiver først automatisk øking av eiendels-IDer for å velge dette alternativet',
'backups' => 'Sikkerhetskopier',
'barcode_settings' => 'Strekkodeinnstillinger',
'confirm_purge' => 'Bekreft rensking',
'confirm_purge_help' => 'Skriv "DELETE" i boksen under for å fjerne dine slettende data. Dette kan ikke reverseres.',
'custom_css' => 'Egendefinert CSS',
'custom_css_help' => 'Legg til egendefinert CSS. Ikke ta med taggene &lt;style&gt;&lt;/style&gt;.',
'custom_forgot_pass_url' => 'Egendefinert passord tilbakestillings-URL',
'custom_forgot_pass_url_help' => 'Erstatter den innebygde glemt passord-URLen i innloggingsbildet. Nyttig for å sende brukere til intern eller leid LDAP passordgjenopprettingsfunksjonalitet. Vil deaktivere den lokale glemt passord-funksjonaliteten.',
'dashboard_message' => 'Dashboardmelding',
'dashboard_message_help' => 'Denne teksten vises på dashbordet for alle som har tillatelse til å vise oversikten.',
'default_currency' => 'Standardvaluta',
'default_eula_text' => 'Standard EULA',
'default_language' => 'Standardspråk',
'default_eula_help_text' => 'Du kan også knytte tilpassede EULAer til bestemte eiendelskategorier.',
'display_asset_name' => 'Vis eiendelsnavn',
'display_checkout_date' => 'Vis utsjekksdato',
'display_eol' => 'Vis levetid i tabellvisning',
'display_qr' => 'Vis Qr-kode',
'display_alt_barcode' => 'Vis 1D strekkode',
'barcode_type' => '2D strekkodetype',
'alt_barcode_type' => '1D strekkodetype',
'eula_settings' => 'EULA-innstillinger',
'eula_markdown' => 'Denne EULAen tillater <a href="https://help.github.com/articles/github-flavored-markdown/">Github Flavored markdown</a>.',
'footer_text' => 'Ekstra bunnteksttekst ',
'footer_text_help' => 'Denne teksten vil fremstå i høyre del av bunnteksten. Lenker er tillatt ved å bruke <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>.
Linjeskift, topptekst, bilder, osv. kan føre til uventede resultater.',
'general_settings' => 'Generelle innstillinger',
'generate_backup' => 'Generer Sikkerhetskopi',
'header_color' => 'Overskriftsfarge',
'info' => 'Disse innstillingene lar deg tilpasse enkelte aspekter av installasjonen din.',
'laravel' => 'Laravel-versjon',
'ldap_enabled' => 'LDAP aktivert',
'ldap_integration' => 'LDAP Integrering',
'ldap_settings' => 'LDAP Instillinger',
'ldap_login_test_help' => 'Skriv inn et gyldig LDAP brukernavn og passord fra samme base DN som du anga ovenfor for å teste at LDAP-innlogging er riktig konfigurert. DU MÅ LAGRE DINE OPPDATERTE LDAP-INNSTILLINGER FØRST.',
'ldap_login_sync_help' => 'Tester at LDAP kan synkronisere. Feil i LDAP autentiseringsspørringen din kan før til at brukere ikke kan logge inn. DU MÅ LAGRE DINE OPPDATERTE LDAP-INNSTILLINGER FØRST.',
'ldap_server' => 'LDAP Server',
'ldap_server_help' => 'Dette bør starte med ldap:// (for ukryptert eller TLS) eller ldaps:// (for SSL)',
'ldap_server_cert' => 'Validering av LDAP SSL sertifikat',
'ldap_server_cert_ignore' => 'Godta ugyldig SSL sertifikat',
'ldap_server_cert_help' => 'Kryss av denne boksen hvis du bruker et selv-signert SSL sertifikat og vil akkseptere et ugyldig sertifikat.',
'ldap_tls' => 'Bruk TLS',
'ldap_tls_help' => 'Kryss av denne hvis du kjører STARTTLS på LDAP-serveren. ',
'ldap_uname' => 'LDAP Bundet brukernavn',
'ldap_pword' => 'LDAP Bind passord',
'ldap_basedn' => 'Base Bind DN',
'ldap_filter' => 'LDAP Filter',
'ldap_pw_sync' => 'LDAP-passord Sync',
'ldap_pw_sync_help' => 'Ta bort kryss på denne boksen hvis du ikke vil at LDAP passord skal holdes synkronisert med lokale passord. Ved å skru av dette er det mulig at brukerne ikke vil klare å logge på om de ikke får tak i LDAP serveren.',
'ldap_username_field' => 'Brukernavn Felt',
'ldap_lname_field' => 'Etternavn',
'ldap_fname_field' => 'LDAP Fornavn',
'ldap_auth_filter_query' => 'LDAP autentisering spørring',
'ldap_version' => 'LDAP Versjon',
'ldap_active_flag' => 'LDAP aktive flag',
'ldap_emp_num' => 'LDAP ansattnummer',
'ldap_email' => 'LDAP E-post',
'license' => 'Programvarelisens',
'load_remote_text' => 'Eksterne Skript',
'load_remote_help_text' => 'Denne Snipe-IT-installasjonen kan laste skript fra Internett.',
'login_note' => 'Logg inn melding',
'login_note_help' => 'Eventuelt inkludere et par setninger på logg inn skjermen, for eksempel for å hjelpe mennesker som har funnet en mistet eller stjålet enhet. Dette feltet godtar <a href="https://help.github.com/articles/github-flavored-markdown/"> Github flavored markdown</a>',
'login_remote_user_text' => 'Fjernbruker pålogging valg',
'login_remote_user_enabled_text' => 'Aktiver innlogging med Remote User Header',
'login_remote_user_enabled_help' => 'Aktiverer autentisering via REMOTE_USER headeren som beskrevet i "Common Gateway Interface (rfc3875)"',
'login_common_disabled_text' => 'Deaktiver andre godkjenningsmekanismer',
'login_common_disabled_help' => 'Deaktiverer andre autentiseringsmekanismer. Aktiver dette valget kun hvis du er sikker på at din REMOTE_USER innlogging allerede fungerer',
'login_remote_user_custom_logout_url_text' => 'Tilpasset utloggingsadresse',
'login_remote_user_custom_logout_url_help' => 'Hvis en URL angis her blir brukerne videresendt til denne URLen etter utlogging fra Snipe-IT. Dette er nyttig for korrekt lukking av autentiseringssesjoner hos din autentiseringsleverandør.',
'logo' => 'Logo',
'logo_print_assets' => 'Bruk i Print',
'logo_print_assets_help' => 'Bruk branding på utskrivbare eiendelslister ',
'full_multiple_companies_support_help_text' => 'Vis kun eiendeler til bedriften brukere (inkl administratorer) er knyttet til.',
'full_multiple_companies_support_text' => 'Full støtte for flere bedrifter',
'show_in_model_list' => 'Vis i Model nedtrekksmeny',
'optional' => 'valgfri',
'per_page' => 'Resultater pr side',
'php' => 'PHP-versjon',
'php_gd_info' => 'Du må installere php-gd for å vise QR-koder. Se installasjonsinstruksjoner.',
'php_gd_warning' => 'PHP bildebehandling og GD-plugin er IKKE installert.',
'pwd_secure_complexity' => 'Passordkompleksitet',
'pwd_secure_complexity_help' => 'Velg hvilken passord kompleksitet du ønsker å håndheve.',
'pwd_secure_min' => 'Passord minimum antall tegn',
'pwd_secure_min_help' => 'Minimum tillatte verdien er 5',
'pwd_secure_uncommon' => 'Forhindre vanlige passord',
'pwd_secure_uncommon_help' => 'Dette vil forhindre brukere fra å bruke vanlige passord fra de vanligste 10 000 passord som er rapportert.',
'qr_help' => 'Aktiver QR-koder først for å velge denne',
'qr_text' => 'Tekst QR-kode',
'setting' => 'Innstilling',
'settings' => 'Innstillinger',
'show_alerts_in_menu' => 'Vis varsler i toppmenyen',
'show_archived_in_list' => 'Arkiverte eiendeler',
'show_archived_in_list_text' => 'Vis arkiverte eiendeler i "alle eiendeler" utlisting',
'show_images_in_email' => 'Vis bilder i e-post',
'show_images_in_email_help' => 'Uncheck this box if your Snipe-IT installation is behind a VPN or closed network and users outside the network will not be able to load images served from this installation in their emails.',
'site_name' => 'Nettstedsnavn',
'slack_botname' => 'Slack botnavn',
'slack_channel' => 'Slack-kanal',
'slack_endpoint' => 'Slack endepunkt',
'slack_integration' => 'Slack-innstillinger',
'slack_integration_help' => 'Slack-integrasjon er valgfritt, men endepunkt og kanal er påkrevd hvis du vil bruke det. For å konfigurere Slack-integrasjon må du først <a href=":slack_link" target="_new">opprette en innkommende webhook</a> på din Slack-konto.',
'slack_integration_help_button' => 'Du vil se en testknapp etter at du lagrer Slack-informasjonen.',
'slack_test_help' => 'Test om Slack-integrasjonen din er riktig konfigurert. DU MÅ LAGRE DINE OPPDATERTE SLACK-INNSTILLINGER FØRST.',
'snipe_version' => 'Snipe-IT-versjon',
'support_footer' => 'Støtte Footer Lenker ',
'support_footer_help' => 'Angi hvem som kan se lenker til Snipe-IT supportinformasjon og brukermanual',
'version_footer' => 'Versjon i Footer ',
'version_footer_help' => 'Angi hvem som kan se Snipe-IT versjon og build-nummer.',
'system' => 'Systeminformasjon',
'update' => 'Oppdater innstillinger',
'value' => 'Verdi',
'brand' => 'Merkevare',
'about_settings_title' => 'Om Innstillinger',
'about_settings_text' => 'Disse innstillingene lar deg tilpasse enkelte aspekter av installasjonen din.',
'labels_per_page' => 'Etiketter per side',
'label_dimensions' => 'Etikettstørrelsen (inches)',
'next_auto_tag_base' => 'Neste automatiske økning',
'page_padding' => 'Side marger (inches)',
'privacy_policy_link' => 'Link til personvernregler',
'privacy_policy' => 'Personvernerklæring',
'privacy_policy_link_help' => 'Angi en URL i dette feltet for å inkludere en lenke til personvern-policy i applikasjonsbunntekst og i alle eposter som dette systemet sender ut. Støtter GDPR. ',
'purge' => 'Tømme slettede poster',
'labels_display_bgutter' => 'Etikett bunnmarg',
'labels_display_sgutter' => 'Etikett sidemarg',
'labels_fontsize' => 'Label skriftstørrelse',
'labels_pagewidth' => 'Etikett arkbredde',
'labels_pageheight' => 'Etikett arkhøyde',
'label_gutters' => 'Etikett tegnavstand (tommer)',
'page_dimensions' => 'Sidedimensjon (tommer)',
'label_fields' => 'Etikett synlige felter',
'inches' => 'tommer',
'width_w' => 'b',
'height_h' => 'h',
'show_url_in_emails' => 'Link til Snipe-IT i e-post',
'show_url_in_emails_help_text' => 'Fjern markeringen i denne boksen hvis du ikke vil koble tilbake til Snipe-IT-installasjonen i e-postboksene dine. Nyttig hvis de fleste av brukerne aldri logger inn.',
'text_pt' => 'pt',
'thumbnail_max_h' => 'Maks miniatyrbilde høyde',
'thumbnail_max_h_help' => 'Maksimal høyde i piksler som miniatyrbilder kan vise i visningen liste. Min 25, maks 500.',
'two_factor' => 'To-faktor autentisering',
'two_factor_secret' => 'To-faktor kode',
'two_factor_enrollment' => 'To-faktor registrering',
'two_factor_enabled_text' => 'Aktiver to-faktor autentisering',
'two_factor_reset' => 'Tilbakestill to-faktor hemmelighet',
'two_factor_reset_help' => 'Tving brukeren til å legge til enheten på nytt i Google Authenticator. Dette er nyttig hvis brukerens enhet er mistet eller stjålet. ',
'two_factor_reset_success' => 'To-faktor enhet resatt',
'two_factor_reset_error' => 'Reset av to-faktor enhet feilet',
'two_factor_enabled_warning' => 'Aktivering av to-faktor autentisering hvis ikke allerede aktivert vil øyeblikkelig tvinge deg til å autentisere med enhet som er aktivert i Google Authenticator. Du vil ha mulighet til å aktivere enheten din hvis ingen er aktivert fra før.',
'two_factor_enabled_help' => 'Dette vil slå på to-faktor autentisering med Google Authenticator.',
'two_factor_optional' => 'Selektiv (brukere kan aktivere eller deaktivere hvis tillatt)',
'two_factor_required' => 'Påkrevd for alle brukere',
'two_factor_disabled' => 'Deaktivert',
'two_factor_enter_code' => 'Skriv inn to-faktor kode',
'two_factor_config_complete' => 'Send kode',
'two_factor_enabled_edit_not_allowed' => 'Systemansvarlig tillater ikke at du redigerer denne innstillingen.',
'two_factor_enrollment_text' => "To-faktor autentisering er påkrevd, men enheten din har ikke blitt aktivert for dette enda. Åpne Google Authenticator-appen og scan inn QR-koden nedenfor for å aktivere. Når du har aktivert enheten din, skriv inn koden nedenfor",
'require_accept_signature' => 'Kreve signatur',
'require_accept_signature_help_text' => 'Aktivering av denne funksjonen ville forlange brukernes å fysisk logge ut for å akseptere en eiendel.',
'left' => 'venstre',
'right' => 'høyre',
'top' => 'topp',
'bottom' => 'bunn',
'vertical' => 'vertikal',
'horizontal' => 'horisontal',
'unique_serial' => 'Unike serienumre',
'unique_serial_help_text' => 'Håndhever at eiendelsserienumre er unike',
'zerofill_count' => 'Lengden på ID-merker, inkludert zerofill',
);