Files
directus/src/lang/da-DK/index.json
2020-02-05 17:18:34 -05:00

548 lines
24 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"about_directus": "About Directus",
"activity": "Activity",
"activity_log": "Activity Log",
"activity_outside_directus": "Item created outside of Directus",
"add_field_filter": "Add a field filter",
"add_new": "Add New",
"add_note": "Add a helpful note for users...",
"additional_info": "Additional Info",
"admin_email": "Admin Email",
"admin_password": "Admin Password",
"admin_settings": "Admin Settings",
"advanced_options": "Advanced Options",
"all": "All",
"allowed_status_options": "Allowed Status Options",
"all_set": "All set!",
"api_installed": "API Successfully Installed",
"api_url": "API URL",
"asc": "asc",
"auto_generate": "Auto-Generate",
"auto_generated": "Automatically generated...",
"back": "Back",
"batch": "Batch",
"batch_delete": "Batch Delete",
"batch_delete_confirm": "No items have been selected | Are you sure you want to delete this item? This action can not be undone. | Are you sure you want to delete these {count} items? This action can not be undone.",
"batch_edit": "Batch Editing Items: {collection}",
"batch_edit_field": "Batch Edit Field",
"between": "Between",
"bookmark_global": "Global: Save for all users",
"bookmark_personal": "Personal: Save for me",
"bookmark_role": "Role: Save for '{role}'",
"bookmarks": "Bookmarks",
"both": "Both",
"cancel": "Cancel",
"cant_disable_primary": "You can't disable primary key on an existing field. Remove this field instead.",
"cant_sort_by_this_field": "You can't sort by this field",
"change_project": "Change Project",
"choose_one": "Choose One",
"choose_project": "Choose Project",
"create_project": "Create Project",
"clear": "Clear",
"clear_value": "Clear value",
"click_to_toggle_all_none": "Click to toggle entire column on/off",
"collection": "Collection | Collections",
"collection_count": "No Collections | One Collection | {count} Collections",
"collection_contains_items": "{collection} contains {count} items",
"collection_invalid_name": "Invalid collection name",
"collection_names_cannot_be_changed": "Collection names cannot be edited at this time.",
"collection_removed": "Collection Removed",
"collection_updated": "Collection Updated",
"collections_and_fields": "Collection & Fields",
"collections": {
"directus_activity": "Activity",
"directus_files": "Files",
"directus_users": "Users"
},
"fields": {
"directus_activity": {
"action": "Action",
"collection": "Collection",
"item": "Item Primary Key",
"action_by": "Action By",
"action_on": "Action On",
"edited_on": "Edited On",
"comment_deleted_on": "Comment Deleted On",
"ip": "IP Address",
"user_agent": "User Agent",
"comment": "Comment"
},
"directus_files": {
"title": "Title",
"tags": "Tags",
"location": "Location",
"description": "Description",
"filename_download": "Filename Download",
"filename_disk": "Filename Disk",
"private_hash": "Private Hash",
"checksum": "Checksum",
"uploaded_on": "Uploaded On",
"uploaded_by": "Uploaded By",
"width": "Width",
"height": "Height",
"duration": "Duration",
"filesize": "Filesize",
"metadata": "Metadata"
},
"directus_users": {
"status": "Status",
"first_name": "First Name",
"last_name": "Last Name",
"email": "Email",
"email_notifications": "Email Notifications",
"password": "Password",
"role": "Role",
"company": "Company",
"title": "Title",
"timezone": "Timezone",
"locale": "Locale",
"avatar": "Avatar",
"theme": "Theme",
"2fa_secret": "Two-Factor Authentication"
}
},
"modules": {},
"comfortable": "Comfortable",
"coming_soon": "Coming Soon",
"comment": "Comment",
"comments": "Comments",
"compact": "Compact",
"config_error": "Missing Config",
"config_error_copy": "Make sure you've created the application's configuration file",
"confirm": "Confirm",
"connection": "Connection",
"contains": "Contains",
"continue": "Continue",
"continue_as": "<b>{name}</b> is already authenticated for this project. If you recognize this account, please press continue.",
"cozy": "Cozy",
"create": "Create",
"create_collection": "Create Collection",
"create_field": "Create Field",
"create_role": "Create Role",
"created_by": "Created By",
"owner": "Owner",
"created_on": "Created On",
"create_new_project": "Create New Project",
"create_new_project_copy": "Make sure you have your database information handy, then enter your API's Super-Admin password to continue.",
"creating_item": "Creating Item",
"creating_item_page_title": "Creating Item: {collection}",
"creating_role": "Creating Role",
"currently_selected": "Currently selected: {thing}",
"database_connection": "Database Connection",
"database_connection_copy": "Next, we need to know how to connect to the database where this project will be managed.",
"datatype": "Datatype",
"datatypes": {
"mysql": {
"BIGINT": "An integer. When signed (allows negative) length is -9e18 to 9e18, otherwise the max is 18e18.",
"BOOLEAN": "True or false. Is saved as either 1 or 0 respectively.",
"CHAR": "A fixed-length non-binary string right-padded with spaces. Length can be 0 to 255 characters.",
"DATE": "A date. Allows `1000-01-01` to `9999-12-31`.",
"DATETIME": "A date and time. Allows `1000-01-01 00:00:00` to `9999-12-31 23:59:59`.",
"DECIMAL": "An accurate number (eg: for currency), with 1 to 65 digits length (L) and 0 to 30 digits decimal (D). Length format: `L,D`",
"DOUBLE": "An approximate binary number, 8 bytes with a floating decimal point.",
"FLOAT": "An approximate binary number, 4 bytes with a floating decimal point.",
"INT": "An integer. When signed (allows negative) length is -2,147,483,648 to 2,147,483,647, otherwise the max is 4,294,967,295.",
"LONGTEXT": "A string with a max length of 4,294,967,295 characters.",
"MEDIUMINT": "An integer. When signed (allows negative) length is -8,388,608 to 8,388,607, otherwise the max is 16,777,215.",
"MEDIUMTEXT": "A string with a max length of 16,777,215 characters.",
"SMALLINT": "An integer. When signed (allows negative) length is -32,768 to 32,767, otherwise the max is 65,535.",
"TEXT": "A string with a max length of 65,535 characters.",
"TIME": "A time. Allows `-838:59:59` to `838:59:59`.",
"TIMESTAMP": "A date and time. Allows `1970-01-01 00:00:01` UTC to `2038-01-19 03:14:07` UTC.",
"TINYINT": "An integer. When signed (allows negative) length is -128 to 127, otherwise the max is 255.",
"TINYTEXT": "A string with a max length of 255 characters.",
"VARCHAR": "A variable-length non-binary string. Length can be 0 to 65,535 characters (MySQL 5.0.3+).",
"YEAR": "A year. Allows `1901` to `2155` or `0000`"
}
},
"date_and_time": "Date & Time",
"db_column_name": "Database column name...",
"db_datatype": "{db} Datatype",
"db_name": "Database Name",
"db_password": "Database User Password",
"db_type": "Database Type",
"db_update_failed": "The database couldn't be updated.",
"db_updated": "Database successfully updated",
"db_user": "Database User",
"default": "Default",
"default_value": "Default Value",
"delete": "Delete",
"delete_are_you_sure": "Are you sure you want to delete this item? This action can not be undone.",
"delete_bookmark": "Delete Bookmark",
"delete_bookmark_body": "Are you sure you want to delete this bookmark? This action cannot be undone.",
"delete_collection_are_you_sure": "Are you sure you want to delete this collection? This action can not be undone.",
"delete_confirmation": "Delete Confirmation",
"delete_field_are_you_sure": "Are you sure you want to delete the field \"{field}\"? This action can not be undone.",
"delete_role_are_you_sure": "Are you sure to delete the role \"{name}\"? This action cannot be undone.",
"desc": "desc",
"description": "Description",
"deselect": "Deselect",
"dialog_beginning": "Beginning of dialog window.",
"discard_changes": "Discard Changes",
"display_name": "Display Name",
"directus_version": "Directus Version",
"done": "Done",
"dont_manage": "Don't Manage",
"dont_manage_copy": "Privileges, preferences, and settings for this collection will be permanently removed from the system! Are you sure?",
"dont_show": "Don't Show",
"drop_files": "Can't Drop Files | Drop file here... | Drop files here...",
"duplicate": "Duplicate",
"duplicating_field": "Duplicating Field",
"editing": "Editing Item: {collection}",
"editing_item": "Editing Item",
"editing_items": "Batch Editing {count} Items",
"editing_my_profile": "Editing My Profile",
"editing_single": "Editing {collection}",
"email": "Email",
"email_address": "Email Address",
"embed": "Embed",
"embed_placeholder": "YouTube, Vimeo, or other link",
"empty_collection": "Empty Collection",
"empty_collection_body": "There are no items in this collection yet",
"enable_manual_sorting": "Enable Manual Sorting",
"enter_collection_name": "Enter collection name...",
"enter_otp": "Please enter the one-time-password (OTP) from your authenticator app.",
"enter_role_name": "Enter role name...",
"enter_value": "Enter Value",
"environment": "Environment",
"equal_to": "Equal to",
"error_unknown": "Unknown error. Try again later.",
"errors": {
"11": "Can Not Reach Database",
"100": "Incorrect Email/Password",
"101": "Logged-out from Inactivity",
"102": "Logged-out from Inactivity",
"103": "User Suspended",
"106": "Incorrect Email/Password",
"107": "User Not Found",
"111": "Enter One-Time Password",
"112": "Wrong One-Time Password",
"114": "Incorrect Email/Password",
"115": "SSO is not allowed when 2FA is enabled",
"-1": "Couldn't Reach API"
},
"esc_cancel": "Escape will cancel and close the window.",
"event_count": "No Events | One Event | {count} Events",
"existing": "Existing",
"extension_error": "There was a problem loading the {ext} extension.",
"extensions_missing": "No Extensions Found",
"extensions_missing_copy": "Make sure you have the system extensions installed.",
"fetching_data": "Fetching Data",
"field": "Field | Fields",
"field_already_exists": "Field Already Exists: {field}",
"field_created": "Field Created",
"field_removed": "Field Removed",
"field_setup_interface": "What type of field are you creating?",
"field_setup_schema": "How should it store content in the database?",
"field_setup_relation": "How is the relationship's data stored?",
"field_setup_options": "All set! Just review these interface options...",
"field_type": "Field Type",
"field_updated": "Field Updated",
"field_width": "Field Width",
"field_width_half": "Half Width (Wraps)",
"field_width_left": "Half Width (Left Only)",
"field_width_right": "Half Width (Right Only)",
"field_width_full": "Full Width",
"field_width_fill": "Fill the Page",
"field_width_note": "The width of this field within the form layout. Half-widths wrap based on other fields and their sort order.",
"fields_are_saved_instantly": "Changes to fields are saved instantly",
"fieldtypes": {
"alias": "Fields that do not save data or do not have corresponding database columns",
"array": "Standard array format in API response",
"date": "Date, eg: 2018-09-19",
"datetime": "A date and time in ISO format, eg: 2018-09-19T14:00:43.381Z",
"datetime_created": "System field to track the datetime an item was created, used by revisions",
"datetime_updated": "System field to track the datetime an item was updated, used by revisions",
"decimal": "Number that includes a decimal",
"file": "Foreign key to directus_files.id",
"group": "Groups fields together visually, children save group into directus_fields.group",
"integer": "Whole number",
"json": "Standard JSON format in API response",
"lang": "Specific to translation interfaces, this stores the language key",
"m2o": "Many-to-One Relationship",
"managed": "Managed",
"o2m": "One-to-Many Relationship",
"sort": "System field used in drag-and-drop item reordering",
"status": "System field used for publishing workflows",
"string": "Any text, numbers, spaces, or symbols; limited by its number of characters",
"time": "Time, eg: 14:09:22",
"translation": "Specific to translation interfaces, this o2m stores multi-lingual content",
"owner": "System field to track the user who created an item, used by revisions",
"user_updated": "System field to track the user who updated an item, used by revisions",
"uuid": "A Universally Unique Identifier"
},
"file": "File",
"file_library": "File Library",
"file_type_not_accepted": "{filename} can't be uploaded. It is not a valid file type for this field.",
"file_upload": "Upload File(s)",
"file_download": "Download",
"forgot_password": "Forgot Password",
"greater_than": "Greater than",
"greater_than_equal": "Greater than or equal to",
"help_and_docs": "Help & Docs",
"hidden": "Hidden",
"hidden_browse": "Hidden on Browse",
"hidden_detail": "Hidden on Detail",
"host": "Host",
"icon": "Icon",
"in_list": "One of these",
"info": "Info",
"initial_schema": "Choose an Initial Schema",
"initial_schema_copy": "Choose from existing database architectures or start fresh. You can always extend and tweak this later.",
"install": "Install",
"install_copy": "This project has not been setup yet. If you are an administrator you can create it now by clicking on the button below.",
"install_busy_copy": "Thank you. One moment while we create your database, import your schema, and add a new config file for this API.",
"install_all_set_copy": "The project has successfully been created. You can now sign in to the App with the admin credentials you entered.",
"install_all_set_super_admin_password": "Make sure to copy the generated Super-Admin password below. You won't be able to see it again!",
"php_extensions": "PHP Extensions",
"missing_value": "Missing: {value}",
"write_access": "Write Access",
"value_not_writeable": "{value} not writeable",
"intelligent_defaults": "Advanced options lets you configure how data will be stored in the database and tweak additional app settings.",
"interface": "Interface | Interfaces",
"interface_count": "No Interfaces | One Interface | {count} Interfaces",
"interface_has_no_options": "This interface doesn't have any options",
"interface_settings": "Every interface can be perfectly tailored to your needs. Below are the available options for this interface, but only some are required.",
"is_empty": "Is empty",
"is_not_null": "Is not NULL",
"is_null": "Is NULL",
"item_count": "No Items | One Item | {count} Items",
"item_count_filter": "No Results | One Result | {count} Results",
"item_deleted": "Item Deleted",
"item_saved": "Item Saved | {count} Items Saved",
"junction_collection": "Junction Collection",
"keep_editing": "Keep Editing",
"latency": "Latency",
"learn_more": "Learn More",
"leave_comment": "Leave a comment...",
"length": "Length",
"length_disabled_placeholder": "Length is determined by the datatype",
"less_than": "Less than",
"less_than_equal": "Less than or equal to",
"limited": "Limited",
"loading": "Loading...",
"load_more": "Load more",
"loading_more": "Loading More Items",
"login": "Log in",
"m2m": "Many-to-Many (M2M)",
"m2o": "Many-to-One (M2O)",
"manage": "Manage",
"manage_started": "Started Managing Collection",
"manage_stopped": "Stopped Managing Collection",
"max_one_primary_key": "You can only have 1 primary key field per collection",
"max_size": "Max Size: {size}",
"mixed": "Mixed",
"modified_by": "Modified By",
"modified_on": "Modified On",
"more_options": "More options",
"months": {
"january": "January",
"february": "February",
"march": "March",
"april": "April",
"may": "May",
"june": "June",
"july": "July",
"august": "August",
"september": "September",
"october": "October",
"november": "November",
"december": "December"
},
"my_activity": "My Activity",
"my_profile": "My Profile: {name}",
"name": "Name",
"name_bookmark": "What would you like to name this bookmark?",
"navigate_changes": "Are you sure you want to leave this page? The changes you made will be lost if you navigate away from this page.",
"new": "New",
"new_field": "New Field",
"new_file": "New File",
"new_item": "New Item",
"next": "Next",
"no_collections": "No Collections Setup",
"no_collections_body": "It seems like there aren't any collections setup yet",
"no_fields": "No Fields Setup",
"no_fields_body": "It seems like this collection doesn't have any fields setup yet",
"no_files": "No Files",
"no_files_body": "It seems like there haven't been any files uploaded yet",
"no_interface_error": "Field {field} doesn't have an interface setup",
"no_items_selected": "No items selected",
"no_related_entries": "Has no related entries",
"no_results": "No Results",
"no_results_body": "The current filters do not match any collection items",
"none": "None",
"not_authenticated": "Not Authenticated",
"not_between": "Not between",
"not_contains": "Doesn't contain",
"not_empty": "Is not empty",
"not_equal_to": "Not equal to",
"not_in_list": "Not one of these",
"note": "Note",
"note_hidden": "[Learn More](https://docs.directus.io/guides/collections.html#hidden)",
"note_icon": "The icon shown in the App's navigation sidebar",
"note_managed": "[Learn More](https://docs.directus.io/guides/collections.html#managing-collections)",
"note_note": "An internal description...",
"note_single": "[Learn More](https://docs.directus.io/guides/collections.html#single)",
"notifications": "Notifications",
"no_public_projects": "This API doesn't have any public projects. Please contact your administrator.",
"numeric": "Numeric",
"o2m": "One-to-Many (O2M)",
"ok": "OK",
"one_moment": "One Moment...",
"open_on_gh": "Open on GitHub",
"operator": "Operator",
"optional": "Optional",
"options": "Options",
"other": "Other",
"otp": "One-Time Password",
"page_not_found": "Page Not Found",
"page_not_found_body": "The page you are looking for doesn't seem to exist.",
"password": "Password",
"password_reset_sending": "Sending email...",
"password_reset_sent": "If a valid user with this email address exists in Directus, we've sent you a secure link to reset your password.",
"password_reset_successful": "Password successfully reset.",
"permission_states": {
"always": "Always",
"create": "Create",
"full": "All",
"mine": "Mine Only",
"none": "None",
"on_create": "On Creation",
"on_update": "On Update",
"read": "Readonly",
"role": "Role Only",
"update": "Update"
},
"permissions": "Permissions",
"permissions_admin": "Admins have access to all managed data within the system by default.",
"permissions_no_collections": "This project does not have any collections yet.",
"popular": "Popular",
"port": "Port",
"powered_by_directus": "Powered by Directus",
"preview_and_revert": "Preview and Revert",
"primary_key": "Primary Key",
"project": "Project",
"project_info": "Project Information",
"project_info_copy": "Below are a few questions about your project, including the credentials of your first administrator.",
"project_key": "Project Key",
"project_name": "Project Name",
"project_not_configured": "Project Not Configured",
"read": "Read",
"readable_fields": "Readable Fields",
"readable_fields_copy": "Select the fields that the user can view",
"readonly": "Readonly",
"regex": "RegEx",
"related_collection": "Related Collection",
"related_entries": "Has related entries",
"relational": "Relational",
"relationship": "Relationship",
"relationship_not_setup": "The relationship hasn't been configured correctly.",
"remove": "Remove",
"remove_related": "Remove Related Item",
"report_issue": "Report Issue",
"request_feature": "Request Feature",
"required": "Required",
"reset": "Reset",
"reset_password": "Reset Password",
"reset_preferences": "Reset all listing preferences",
"reset_to_default": "Reset to default",
"revert": "Revert",
"revert_copy": "Do you want to revert this item to how it was on {date}?",
"role_count": "No Roles | One Role | {count} Roles",
"role_settings": "Role Settings",
"roles": "User Roles",
"save": "Save",
"save_and_add": "Save and Add New",
"save_and_stay": "Save and Stay",
"save_as_bookmark": "Save as Bookmark",
"save_as_copy": "Save as Copy",
"scan_in_authenticator": "Scan this code in your authenticator app",
"schema": "Schema",
"search": "Search",
"search_for_item": "Search for an item...",
"search_interface": "Search for an interface...",
"select_existing": "Select Existing",
"select_field": "Select a Field",
"select_fields": "Select Fields",
"select_from_device": "Select from device",
"select_interface": "Select an interface",
"select_interface_below": "Select an interface below",
"select_statuses": "Select Statuses",
"select_statuses_copy": "Select the statuses the user can use",
"server_details": "Server Details",
"server_error": "Server Error",
"server_error_copy": "Something is wrong with this projects server or database.",
"server_trouble": "Server Trouble",
"server_trouble_copy": "Try again later or contact your system administrator help.",
"settings": "Settings",
"settings_collections_fields": "Collections & Fields",
"settings_extensions": "Extensions",
"settings_global": "Global Settings",
"settings_permissions": "Roles & Permissions",
"settings_project": "Project Settings",
"settings_saved": "Settings Saved",
"settings_webhooks": "Webhooks",
"setup_2fa": "Setup 2FA",
"show_directus_collections": "Show Directus System Collections",
"sign_in": "Sign In",
"sign_out": "Sign Out",
"sign_out_confirm": "Are you sure you want to sign out?",
"sign_out_confirm_edits": "Are you sure you want to sign out? All unsaved changes will be lost.",
"signing_in": "Signing In",
"single": "Single",
"something_went_wrong": "Something went wrong.",
"something_went_wrong_body": "Trouble processing request. Try again after refreshing the page.",
"sort": "Sort",
"sort_by": "Sort By",
"sort_direction": "Sort Direction",
"spacing": "Spacing",
"status": "Status",
"statuses": "Statuses",
"submit": "Submit",
"text": "Text",
"translation": "Translation",
"translated_field_name": "Translated field name...",
"not_translated_in_language": "Not Translated in {language}",
"this_item_is_not_available": "This item is not available.",
"this_collection": "This Collection",
"to": "To",
"turn_all_on": "Turn all on",
"turn_all_off": "Turn all off",
"undo_changes": "Undo changes",
"unique": "Unique",
"unsaved_changes": "Unsaved Changes",
"unsaved_changes_copy": "Are you sure you want to leave this page?",
"update": "Update",
"update_confirm": "Are you sure you want to update {count} items?",
"update_field": "Update Field",
"upload_exceeds_max_size": "{filename} can't be uploaded. Your server is not configured to handle uploads of this size.",
"user_directory": "User Directory",
"user_edit_warning": "{first_name} {last_name} is editing this item too. Please coordinate with them so you don't lose your changes.",
"validation": "Validation",
"value": "Value",
"values": "Values",
"version": "Version",
"version_and_updates": "Version and Updates",
"view_type": "View As...",
"visible_all_users": "Visible for all users",
"webhook_count": "No Webhooks | 1 Webhook | {count} Webhooks",
"weeks": {
"monday": "Monday",
"tuesday": "Tuesday",
"wednesday": "Wednesday",
"thursday": "Thursday",
"friday": "Friday",
"saturday": "Saturday",
"sunday": "Sunday"
},
"welcome": "Welcome",
"welcome_to_directus": "Welcome to Directus",
"welcome_to_directus_copy": "Please make sure you have your database information handy to set up your first project.",
"why": "Why?",
"wrapping_up": "Wrapping Up",
"wrong_super_admin_password": "The super admin password you provided is incorrect.",
"writable_fields": "Writable Fields",
"writable_fields_copy": "Select the fields that the user can edit",
"yes": "Yes"
}