* Default AI content language to Ukrainian * Keep English as the default content language * refactor: update content language handling in workspace creation - Changed the default content language in CreateWorkspace to inherit the app's locale instead of defaulting to English. - Updated related tests to reflect this change, ensuring that the content language aligns with the application's current locale settings. - Cleaned up unnecessary code in the BrandTab component for better readability. * Add Ukrainian as a full platform UI locale. Wire uk into languages config with complete lang/uk translations and restore ContentLanguage↔UI parity checks. Co-authored-by: Cursor <cursoragent@cursor.com> * Wire Ukrainian into dayjs and locale coverage tests. Import the uk dayjs locale with Monday week-start and cover uk/uk-UA in brand autofill and SetLocale assertions. Co-authored-by: Cursor <cursoragent@cursor.com> * Harden Ukrainian UI and AI content-language coverage. Cover generator/reviewer/humanizer/image prompts, workspace pickers, persona labels, UI locale switch, and README for uk as a first-class platform language. Co-authored-by: Cursor <cursoragent@cursor.com> * Add Ukrainian Pinterest form strings after main merge. Restore lang/uk posts.php key parity for the new pin title and destination link fields. Co-authored-by: Cursor <cursoragent@cursor.com> * List every supported UI language in the README. Replace the abbreviated multi-language blurb with the full locale set from config. Co-authored-by: Cursor <cursoragent@cursor.com> --------- Co-authored-by: Paulo Castellano <paulo@castellanos.llc> Co-authored-by: Cursor <cursoragent@cursor.com>
55 lines
2.7 KiB
PHP
55 lines
2.7 KiB
PHP
<?php
|
||
|
||
return [
|
||
'no_accounts' => 'Немає підключених акаунтів з аналітикою.',
|
||
'no_accounts_match' => 'Жоден акаунт не відповідає.',
|
||
'search_account' => 'Пошук акаунта…',
|
||
'select_account' => 'Виберіть акаунт, щоб переглянути аналітику.',
|
||
'no_data' => 'Дані аналітики недоступні.',
|
||
|
||
'metrics' => [
|
||
'avg_view_duration' => 'Сер. тривалість перегляду (с)',
|
||
'avg_view_percentage' => 'Сер. відсоток перегляду',
|
||
'bookmarks' => 'Закладки',
|
||
'clicks' => 'Кліки',
|
||
'comments' => 'Коментарі',
|
||
'custom_reaction' => 'Власна',
|
||
'engagement' => 'Залучення',
|
||
'favourites' => 'Обране',
|
||
'followers' => 'Підписники',
|
||
'following' => 'Підписки',
|
||
'impressions' => 'Покази',
|
||
'interactions' => 'Взаємодії',
|
||
'likes' => 'Вподобання',
|
||
'members' => 'Учасники',
|
||
'minutes_watched' => 'Хвилин переглянуто',
|
||
'organic_followers' => 'Органічні підписники',
|
||
'outbound_clicks' => 'Зовнішні кліки',
|
||
'page_followers' => 'Підписники сторінки',
|
||
'page_reach' => 'Охоплення сторінки',
|
||
'page_views' => 'Перегляди сторінки',
|
||
'paid_followers' => 'Платні підписники',
|
||
'pin_click_rate' => 'CTR піна',
|
||
'pin_clicks' => 'Кліки по піну',
|
||
'posts_engagement' => 'Залучення постів',
|
||
'posts_reach' => 'Охоплення постів',
|
||
'quotes' => 'Цитати',
|
||
'reach' => 'Охоплення',
|
||
'reblogs' => 'Репости',
|
||
'recent_comments' => 'Нещодавні коментарі',
|
||
'recent_likes' => 'Нещодавні вподобання',
|
||
'recent_shares' => 'Нещодавні поширення',
|
||
'replies' => 'Відповіді',
|
||
'reposts' => 'Репости',
|
||
'retweets' => 'Ретвіти',
|
||
'saves' => 'Збереження',
|
||
'shares' => 'Поширення',
|
||
'subscribers' => 'Підписники',
|
||
'subscribers_gained' => 'Отримано підписників',
|
||
'subscribers_lost' => 'Втрачено підписників',
|
||
'total_likes' => 'Усього вподобань',
|
||
'video_views' => 'Перегляди відео',
|
||
'videos' => 'Відео',
|
||
'views' => 'Перегляди',
|
||
],
|
||
];
|