From e3fc6cf4091932472bf44b3dfba0d48f4fc7d856 Mon Sep 17 00:00:00 2001 From: Chanthoeun Kim Date: Tue, 25 Aug 2026 01:57:00 +0930 Subject: [PATCH] Update Khmer (km) translations (#20375) * feat: add missing Khmer translations for the view record page and chart widget. * chore: update the missing Khmer language translations for multi-factor authentication and form components * chore: update Khmer language translations for validation and email verification controller * fix: fallback to default GITHUB_TOKEN if GH_ACCESS_TOKEN is not defined in workflow checkout * feat: add and update Khmer language translations for various components and packages --- .../forms/resources/lang/km/components.php | 74 +++++++++++++++++++ .../resources/lang/km/components.php | 5 ++ .../resources/lang/km/database.php | 2 + .../resources/lang/km/notification.php | 13 ++++ packages/panels/resources/lang/km/layout.php | 15 ++++ .../resources/lang/km/query-builder.php | 6 ++ .../schemas/resources/lang/km/components.php | 40 ++++++++++ .../resources/lang/km/components/badge.php | 13 ++++ .../lang/km/components/breadcrumbs.php | 7 ++ .../km/components/input/one-time-code.php | 7 ++ .../lang/km/components/loading-section.php | 7 ++ .../resources/lang/km/components/section.php | 17 +++++ .../resources/lang/km/components/tabs.php | 7 ++ packages/tables/resources/lang/km/table.php | 24 ++++++ packages/widgets/resources/lang/km/chart.php | 8 ++ 15 files changed, 245 insertions(+) create mode 100644 packages/notifications/resources/lang/km/notification.php create mode 100644 packages/support/resources/lang/km/components/badge.php create mode 100644 packages/support/resources/lang/km/components/breadcrumbs.php create mode 100644 packages/support/resources/lang/km/components/input/one-time-code.php create mode 100644 packages/support/resources/lang/km/components/loading-section.php create mode 100644 packages/support/resources/lang/km/components/section.php create mode 100644 packages/support/resources/lang/km/components/tabs.php diff --git a/packages/forms/resources/lang/km/components.php b/packages/forms/resources/lang/km/components.php index 7885c0df10..7fd0a31e1b 100644 --- a/packages/forms/resources/lang/km/components.php +++ b/packages/forms/resources/lang/km/components.php @@ -118,10 +118,54 @@ return [ ], + 'color_picker' => [ + + 'panel_label' => 'ឧបករណ៍ជ្រើសរើសពណ៌', + + ], + + 'date_time_picker' => [ + + 'month_select' => [ + 'label' => 'ខែ', + ], + + 'year_input' => [ + 'label' => 'ឆ្នាំ', + ], + + 'hour_input' => [ + 'label' => 'ម៉ោង', + ], + + 'minute_input' => [ + 'label' => 'នាទី', + ], + + 'second_input' => [ + 'label' => 'វិនាទី', + ], + + ], + 'file_upload' => [ + 'actions' => [ + + 'download' => [ + 'label' => 'ទាញយក', + ], + + 'open' => [ + 'label' => 'បើកក្នុងផ្ទាំងថ្មី', + ], + + ], + 'editor' => [ + 'label' => 'កម្មវិធីកែសម្រួលរូបភាព', + 'actions' => [ 'cancel' => [ @@ -264,6 +308,18 @@ return [ ], + 'columns' => [ + + 'actions' => [ + 'label' => 'សកម្មភាព', + ], + + 'reorder' => [ + 'label' => 'តម្រៀបឡើងវិញ', + ], + + ], + 'fields' => [ 'key' => [ @@ -326,6 +382,18 @@ return [ 'repeater' => [ + 'columns' => [ + + 'actions' => [ + 'label' => 'សកម្មភាព', + ], + + 'reorder' => [ + 'label' => 'តម្រៀបឡើងវិញ', + ], + + ], + 'actions' => [ 'add' => [ @@ -579,6 +647,10 @@ return [ 'searching_message' => 'កំពុងស្វែងរក...', ], + 'toolbar' => [ + 'label' => 'របារឧបករណ៍កម្មវិធីនិពន្ធ', + ], + 'tools' => [ 'align_center' => 'តម្រឹមចំកណ្តាល', 'align_end' => 'តម្រឹមខាងចុង', @@ -713,6 +785,8 @@ return [ 'label' => 'លុប', ], ], + 'tag_added' => 'បានបន្ថែម៖ :tag', + 'tag_removed' => 'បានយកចេញ៖ :tag', ], 'text_input' => [ diff --git a/packages/infolists/resources/lang/km/components.php b/packages/infolists/resources/lang/km/components.php index bd732d66e6..ac8c6563d9 100644 --- a/packages/infolists/resources/lang/km/components.php +++ b/packages/infolists/resources/lang/km/components.php @@ -15,6 +15,11 @@ return [ ], + 'icon' => [ + 'true' => 'បាទ', + 'false' => 'ទេ', + ], + 'key_value' => [ 'columns' => [ diff --git a/packages/notifications/resources/lang/km/database.php b/packages/notifications/resources/lang/km/database.php index 3d8621e43d..da2a17884d 100644 --- a/packages/notifications/resources/lang/km/database.php +++ b/packages/notifications/resources/lang/km/database.php @@ -6,6 +6,8 @@ return [ 'heading' => 'ដំណឹង', + 'unread_label' => 'ការជូនដំណឹងមិនទាន់អាន', + 'actions' => [ 'clear' => [ diff --git a/packages/notifications/resources/lang/km/notification.php b/packages/notifications/resources/lang/km/notification.php new file mode 100644 index 0000000000..d283d53ee8 --- /dev/null +++ b/packages/notifications/resources/lang/km/notification.php @@ -0,0 +1,13 @@ + [ + + 'close' => [ + 'label' => 'បិទការជូនដំណឹង', + ], + + ], + +]; diff --git a/packages/panels/resources/lang/km/layout.php b/packages/panels/resources/lang/km/layout.php index dfced78782..62a947ba3e 100644 --- a/packages/panels/resources/lang/km/layout.php +++ b/packages/panels/resources/lang/km/layout.php @@ -4,6 +4,10 @@ return [ 'direction' => 'ltr', + 'skip_to_content' => [ + 'label' => 'រំលងទៅកាន់មាតិកា', + ], + 'actions' => [ 'billing' => [ @@ -16,6 +20,7 @@ return [ 'open_database_notifications' => [ 'label' => 'បើកការជូនដំណឹង', + 'label_with_unread_count' => '{1} ការជូនដំណឹង, :count មិនទាន់អាន|[2,*] ការជូនដំណឹង, :count មិនទាន់អាន', ], 'open_user_menu' => [ @@ -36,6 +41,8 @@ return [ 'theme_switcher' => [ + 'label' => 'រចនាបទ', + 'dark' => [ 'label' => 'បើកដំណើរការរចនាបទងងឹត', ], @@ -52,6 +59,14 @@ return [ ], + 'navigation' => [ + 'label' => 'ការរុករករបារចំហៀង', + ], + + 'topbar' => [ + 'label' => 'របារខាងលើ', + ], + 'avatar' => [ 'alt' => 'រូបតំណាង នៃ :name', ], diff --git a/packages/query-builder/resources/lang/km/query-builder.php b/packages/query-builder/resources/lang/km/query-builder.php index 89cae0af64..184c075923 100644 --- a/packages/query-builder/resources/lang/km/query-builder.php +++ b/packages/query-builder/resources/lang/km/query-builder.php @@ -14,6 +14,10 @@ return [ 'label' => 'ក្រុម', + 'group' => [ + 'label' => 'ក្រុម', + ], + 'block' => [ 'label' => 'ការផ្តាច់ខ្លួន (ឬ)', 'or' => 'ឬ', @@ -35,6 +39,8 @@ return [ 'no_rules' => '(មិន​មាន​ច្បាប់)', + 'max_rules_reached_tooltip' => 'អ្នកបានឈានដល់ចំនួនច្បាប់អតិបរមា :count ហើយ។', + 'item_separators' => [ 'and' => 'និង', 'or' => 'ឬ', diff --git a/packages/schemas/resources/lang/km/components.php b/packages/schemas/resources/lang/km/components.php index a4ccad4c16..5005259943 100644 --- a/packages/schemas/resources/lang/km/components.php +++ b/packages/schemas/resources/lang/km/components.php @@ -2,6 +2,33 @@ return [ + 'callout' => [ + + 'statuses' => [ + 'danger' => 'កំហុស៖', + 'info' => 'ចំណាំ៖', + 'success' => 'ជោគជ័យ៖', + 'warning' => 'ការព្រមាន៖', + ], + + ], + + 'section' => [ + + 'actions' => [ + + 'collapse' => [ + 'label' => 'បង្រួមផ្នែក', + ], + + 'expand' => [ + 'label' => 'ពង្រីកផ្នែក', + ], + + ], + + ], + 'wizard' => [ 'actions' => [ @@ -16,6 +43,19 @@ return [ ], + 'header' => [ + + 'step' => [ + + 'statuses' => [ + 'completed' => 'បានបញ្ចប់', + 'upcoming' => 'មិនទាន់បានបញ្ចប់', + ], + + ], + + ], + ], ]; diff --git a/packages/support/resources/lang/km/components/badge.php b/packages/support/resources/lang/km/components/badge.php new file mode 100644 index 0000000000..a4be04563f --- /dev/null +++ b/packages/support/resources/lang/km/components/badge.php @@ -0,0 +1,13 @@ + [ + + 'delete' => [ + 'label' => 'យកចេញ', + ], + + ], + +]; diff --git a/packages/support/resources/lang/km/components/breadcrumbs.php b/packages/support/resources/lang/km/components/breadcrumbs.php new file mode 100644 index 0000000000..daa22d2fee --- /dev/null +++ b/packages/support/resources/lang/km/components/breadcrumbs.php @@ -0,0 +1,7 @@ + 'Breadcrumb', + +]; diff --git a/packages/support/resources/lang/km/components/input/one-time-code.php b/packages/support/resources/lang/km/components/input/one-time-code.php new file mode 100644 index 0000000000..72e9480795 --- /dev/null +++ b/packages/support/resources/lang/km/components/input/one-time-code.php @@ -0,0 +1,7 @@ + 'តួអក្សរទី :position នៃ :count', + +]; diff --git a/packages/support/resources/lang/km/components/loading-section.php b/packages/support/resources/lang/km/components/loading-section.php new file mode 100644 index 0000000000..099a3c30e4 --- /dev/null +++ b/packages/support/resources/lang/km/components/loading-section.php @@ -0,0 +1,7 @@ + 'កំពុងផ្ទុក...', + +]; diff --git a/packages/support/resources/lang/km/components/section.php b/packages/support/resources/lang/km/components/section.php new file mode 100644 index 0000000000..38a6b5d6cb --- /dev/null +++ b/packages/support/resources/lang/km/components/section.php @@ -0,0 +1,17 @@ + [ + + 'collapse' => [ + 'label' => 'បង្រួមផ្នែក', + ], + + 'expand' => [ + 'label' => 'ពង្រីកផ្នែក', + ], + + ], + +]; diff --git a/packages/support/resources/lang/km/components/tabs.php b/packages/support/resources/lang/km/components/tabs.php new file mode 100644 index 0000000000..70b93c7f02 --- /dev/null +++ b/packages/support/resources/lang/km/components/tabs.php @@ -0,0 +1,7 @@ + 'ផ្ទាំង', + +]; diff --git a/packages/tables/resources/lang/km/table.php b/packages/tables/resources/lang/km/table.php index b5edc01f16..1e8a34c9e3 100644 --- a/packages/tables/resources/lang/km/table.php +++ b/packages/tables/resources/lang/km/table.php @@ -10,6 +10,9 @@ return [ 'apply' => [ 'label' => 'អនុវត្ត', ], + 'reorder' => [ + 'label' => 'តម្រៀបជួរឈរឡើងវិញ', + ], 'reset' => [ 'label' => 'កំណត់ឡើងវិញ', ], @@ -23,6 +26,15 @@ return [ 'label' => 'សកម្មភាព|សកម្មភាព', ], + 'icon' => [ + + 'boolean' => [ + 'true' => 'បាទ', + 'false' => 'ទេ', + ], + + ], + 'text' => [ 'actions' => [ @@ -105,6 +117,10 @@ return [ 'label' => 'តម្រៀបកំណត់ត្រាឡើងវិញ', ], + 'reorder_record' => [ + 'label' => 'តម្រៀបធាតុ :key ឡើងវិញ', + ], + 'filter' => [ 'label' => 'តម្រង', ], @@ -121,6 +137,10 @@ return [ 'label' => 'បិទ/បើកជួរឈរ', ], + 'toggle_record_content' => [ + 'label' => 'ពង្រីក/បង្រួមធាតុ :key', + ], + ], 'empty' => [ @@ -206,8 +226,12 @@ return [ ], + 'loading' => 'កំពុងផ្ទុក...', + 'reorder_indicator' => 'អូស និងទម្លាក់កំណត់ត្រាតាមលំដាប់លំដោយ.', + 'result_count' => '{0} គ្មានលទ្ធផល|{1} លទ្ធផល :count|[2,*] លទ្ធផល :count', + 'selection_indicator' => [ 'selected_count' => 'បានជ្រើសរើស 1 កំណត់ត្រា|:count រាប់កំណត់ត្រា បានជ្រើសរើស', diff --git a/packages/widgets/resources/lang/km/chart.php b/packages/widgets/resources/lang/km/chart.php index 62b9eddaaa..adf854d761 100644 --- a/packages/widgets/resources/lang/km/chart.php +++ b/packages/widgets/resources/lang/km/chart.php @@ -10,6 +10,10 @@ return [ ], + 'filter' => [ + 'label' => 'ត្រងទិន្នន័យគំនូសតាង', + ], + 'filters' => [ 'actions' => [ @@ -26,4 +30,8 @@ return [ ], + 'empty' => [ + 'heading' => 'គ្មានទិន្នន័យត្រូវបង្ហាញទេ', + ], + ];