mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-08 09:26:42 +00:00
111 lines
3.4 KiB
PHP
111 lines
3.4 KiB
PHP
<?php
|
||
/**
|
||
* Common elements found throughout many areas of BookStack.
|
||
*/
|
||
return [
|
||
|
||
// Buttons
|
||
'cancel' => 'Canslo',
|
||
'close' => 'Cau',
|
||
'confirm' => 'Cadarnhau',
|
||
'back' => 'Yn ôl',
|
||
'save' => 'Cadw',
|
||
'continue' => 'Parhau',
|
||
'select' => 'Dewis',
|
||
'toggle_all' => 'Toggle All',
|
||
'more' => 'Mwy',
|
||
|
||
// Form Labels
|
||
'name' => 'Enw',
|
||
'description' => 'Disgrifiad',
|
||
'role' => 'Role',
|
||
'cover_image' => 'Cover image',
|
||
'cover_image_description' => 'This image should be approximately 440x250px although it will be flexibly scaled & cropped to fit the user interface in different scenarios as required, so actual dimensions for display will differ.',
|
||
|
||
// Actions
|
||
'actions' => 'Gweithredoedd',
|
||
'view' => 'Gweld',
|
||
'view_all' => 'Gweld popeth',
|
||
'new' => 'Newydd',
|
||
'create' => 'Creu',
|
||
'update' => 'Diweddaru',
|
||
'edit' => 'Golygu',
|
||
'sort' => 'Trefnu',
|
||
'move' => 'Symud',
|
||
'copy' => 'Copïo',
|
||
'reply' => 'Ateb',
|
||
'delete' => 'Dileu',
|
||
'delete_confirm' => 'Cadarnhau\'r dilead',
|
||
'search' => 'Chwilio',
|
||
'search_clear' => 'Clirio\'r chwiliad',
|
||
'reset' => 'Ailosod',
|
||
'remove' => 'Diddymu',
|
||
'add' => 'Ychwanegu',
|
||
'configure' => 'Ffurfweddu',
|
||
'manage' => 'Rheoli',
|
||
'fullscreen' => 'Fullscreen',
|
||
'favourite' => 'Favourite',
|
||
'unfavourite' => 'Unfavourite',
|
||
'next' => 'Nesa',
|
||
'previous' => 'Cynt',
|
||
'filter_active' => 'Hidl weithredol:',
|
||
'filter_clear' => 'Clirio\'r hidl',
|
||
'download' => 'Llwytho i lawr',
|
||
'open_in_tab' => 'Agor mewn Tab',
|
||
'open' => 'Agor',
|
||
|
||
// Sort Options
|
||
'sort_options' => 'Trefnu\'r opsiynau',
|
||
'sort_direction_toggle' => 'Sort Direction Toggle',
|
||
'sort_ascending' => 'Trefnu\'n esgynnol',
|
||
'sort_descending' => 'Trefnu\'n ddisgynnol',
|
||
'sort_name' => 'Enw',
|
||
'sort_default' => 'Default',
|
||
'sort_created_at' => 'Created Date',
|
||
'sort_updated_at' => 'Updated Date',
|
||
|
||
// Misc
|
||
'deleted_user' => 'Deleted User',
|
||
'no_activity' => 'No activity to show',
|
||
'no_items' => 'Dim eitemau ar gael',
|
||
'back_to_top' => 'Yn ôl i\'r brig',
|
||
'skip_to_main_content' => 'Skip to main content',
|
||
'toggle_details' => 'Toggle Details',
|
||
'toggle_thumbnails' => 'Toggle Thumbnails',
|
||
'details' => 'Details',
|
||
'grid_view' => 'Grid View',
|
||
'list_view' => 'List View',
|
||
'default' => 'Default',
|
||
'breadcrumb' => 'Breadcrumb',
|
||
'status' => 'Status',
|
||
'status_active' => 'Gweithredol',
|
||
'status_inactive' => 'Anweithredol',
|
||
'never' => 'Byth',
|
||
'none' => 'Dim un',
|
||
|
||
// Header
|
||
'homepage' => 'Homepage',
|
||
'header_menu_expand' => 'Expand Header Menu',
|
||
'profile_menu' => 'Profile Menu',
|
||
'view_profile' => 'View Profile',
|
||
'edit_profile' => 'Edit Profile',
|
||
'dark_mode' => 'Dark Mode',
|
||
'light_mode' => 'Light Mode',
|
||
'global_search' => 'Global Search',
|
||
|
||
// Layout tabs
|
||
'tab_info' => 'Gwybodaeth',
|
||
'tab_info_label' => 'Tab: Show Secondary Information',
|
||
'tab_content' => 'Cynnwys',
|
||
'tab_content_label' => 'Tab: Show Primary Content',
|
||
|
||
// Email Content
|
||
'email_action_help' => 'If you’re having trouble clicking the ":actionText" button, copy and paste the URL below into your web browser:',
|
||
'email_rights' => 'All rights reserved',
|
||
|
||
// Footer Link Options
|
||
// Not directly used but available for convenience to users.
|
||
'privacy_policy' => 'Privacy Policy',
|
||
'terms_of_service' => 'Terms of Service',
|
||
];
|