The code powering m.abunchtell.com https://m.abunchtell.com
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

114 lines
5.6 KiB

  1. import zh from 'react-intl/locale-data/zh';
  2. const localeData = zh.reduce(function (acc, localeData) {
  3. if (localeData.locale === "zh-Hant-HK") {
  4. // rename the locale "zh-Hant-HK" as "zh-HK"
  5. // (match the code usually used in Accepted-Language header)
  6. acc.push(Object.assign({},
  7. localeData,
  8. {
  9. "locale": "zh-HK",
  10. "parentLocale": "zh-Hant-HK",
  11. }
  12. ));
  13. }
  14. return acc;
  15. }, []);
  16. export { localeData as localeData };
  17. const zh_hk = {
  18. "account.block": "封鎖 @{name}",
  19. "account.edit_profile": "修改個人資料",
  20. "account.follow": "關注",
  21. "account.followers": "關注的人",
  22. "account.follows_you": "關注你",
  23. "account.follows": "正在關注",
  24. "account.mention": "提及 @{name}",
  25. "account.posts": "文章",
  26. "account.requested": "等候審批",
  27. "account.unblock": "解除對 @{name} 的封鎖",
  28. "account.unfollow": "取消關注",
  29. "column_back_button.label": "先前顯示",
  30. "column.community": "本站時間軸",
  31. "column.home": "家",
  32. "column.notifications": "通知",
  33. "column.public": "跨站公共時間軸",
  34. "compose_form.placeholder": "你在想甚麼?",
  35. "compose_form.privacy_disclaimer": "你的私人文章,將被遞送至你所提及的 {domains} 用戶。你是否信任 {domainsCount, plural, one {這個網站} other {這些網站}}?請留意,文章私隱設定只適用於各 Mastodon 服務站,如果 {domains} {domainsCount, plural, one {不是 Mastodon 服務站} other {之中有些不是 Mastodon 服務站}},對方將無法收到這篇文章的私隱設定,然後可能被轉推給不能預知的用戶閱讀。",
  36. "compose_form.private": "標示為「只有關注你的人能看」",
  37. "compose_form.publish": "發文",
  38. "compose_form.sensitive": "將媒體檔案標示為「敏感內容」",
  39. "compose_form.spoiler": "將部份文字藏於警告訊息之後",
  40. "compose_form.unlisted": "請勿在公共時間軸顯示",
  41. "empty_column.community": "本站時間軸暫時未有內容,快貼文來搶頭香啊!",
  42. "empty_column.hashtag": "這個標籤暫時未有內容。",
  43. "empty_column.home": "你還沒有關注任何用戶。快看看{public},向其他用戶搭訕吧。",
  44. "empty_column.home.public_timeline": "公共時間軸",
  45. "empty_column.notifications": "You don't have any notifications yet. Interact with others to start the conversation.",
  46. "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other instances to fill it up.",
  47. "getting_started.about_addressing": "只要你知道一位用戶的用戶名稱和域名,你可以用「@用戶名稱@域名」的格式在搜尋欄尋找該用戶。",
  48. "getting_started.about_shortcuts": "只要該用戶是在你現在的服務站開立,你可以直接輸入用戶𠱷搜尋。同樣的規則適用於在文章提及別的用戶。",
  49. "getting_started.apps": "手機或桌面應用程式",
  50. "getting_started.heading": "開始使用",
  51. "getting_started.open_source_notice": "Mastodon 是一個開放源碼的軟件。你可以在官方 GitHub ({github}) 貢獻或者回報問題。你亦可透過{apps}閱讀 Mastodon 上的消息。",
  52. "home.column_settings.basic": "基本",
  53. "home.column_settings.show_reblogs": "顯示被轉推的文章",
  54. "home.column_settings.show_replies": "顯示回應文章",
  55. "home.column_settings.advanced": "進階",
  56. "lightbox.close": "關閉",
  57. "loading_indicator.label": "載入中...",
  58. "missing_indicator.label": "找不到內容",
  59. "navigation_bar.community_timeline": "本站時間軸",
  60. "navigation_bar.edit_profile": "修改個人資料",
  61. "navigation_bar.logout": "登出",
  62. "navigation_bar.preferences": "個人設定",
  63. "navigation_bar.public_timeline": "跨站公共時間軸",
  64. "notification.favourite": "{name} 喜歡你的文章",
  65. "notification.follow": "{name} 開始開始你",
  66. "notification.mention": "{name} 提及你",
  67. "notification.reblog": "{name} 轉推你的文章",
  68. "notifications.column_settings.alert": "顯示桌面通知",
  69. "notifications.column_settings.favourite": "喜歡你的文章:",
  70. "notifications.column_settings.follow": "關注你:",
  71. "notifications.column_settings.mention": "提及你:",
  72. "notifications.column_settings.reblog": "轉推你的文章:",
  73. "notifications.column_settings.show": "在通知欄顯示",
  74. "notifications.column_settings.sound": "播放音效",
  75. "reply_indicator.cancel": "取消",
  76. "report.target": "Reporting",
  77. "search.account": "用戶",
  78. "search.hashtag": "標籤",
  79. "search.placeholder": "搜尋",
  80. "search_results.total": "{count} 項結果",
  81. "search.status_by": "按用戶名稱搜尋文章",
  82. "status.delete": "刪除",
  83. "status.favourite": "喜歡",
  84. "status.load_more": "載入更多",
  85. "status.media_hidden": "隱藏媒體內容",
  86. "status.mention": "提及 @{name}",
  87. "status.open": "展開文章",
  88. "status.reblog": "轉推",
  89. "status.reblogged_by": "{name} 轉推",
  90. "status.reply": "回應",
  91. "status.report": "舉報 @{name}",
  92. "status.sensitive_toggle": "點擊顯示",
  93. "status.sensitive_warning": "敏感內容",
  94. "status.show_less": "減少顯示",
  95. "status.show_more": "顯示更多",
  96. "tabs_bar.compose": "撰寫",
  97. "tabs_bar.home": "家",
  98. "tabs_bar.local_timeline": "本站",
  99. "tabs_bar.mentions": "提及",
  100. "tabs_bar.notifications": "通知",
  101. "tabs_bar.public": "跨站公共時間軸",
  102. "tabs_bar.federated_timeline": "跨站",
  103. "upload_area.title": "將檔案拖放至此上載",
  104. "upload_button.label": "上載媒體檔案",
  105. "upload_progress.label": "上載中……",
  106. "upload_form.undo": "還原",
  107. "video_player.toggle_sound": "開關音效",
  108. };
  109. export default zh_hk;