Skip to content

Commit e477612

Browse files
authored
Fix terms in zh-TW (#336)
those following are wrong translated to usage of zh-CN, the correct are: "server" => "伺服器" "with operating systems" => "具有作業系統" "interact" => "互動" "coroutines" => "共常式" "enum" => "列舉" "trait" => "特徵" "OOM" => "記憶體不足" "interface" => "介面" "SIMD" => "單指令流多資料流" "code" => "程式碼" "concurrency" => "並行" "library" => "函式庫" "support" => "支援" "debug" => "除錯" "visualizations" => "視覺化" "string" => "字串" "literals" => "字面值" "registry" => "註冊表" "produce" => "生產"、"製造" "channel" => "頻道"、"管道" "software" => "軟體" "non-manager" => "非管理職" "adopting" => "採用" "memory footprint" => "記憶體使用量" (memory usage) "project" => "專案"
1 parent a8d1820 commit e477612

File tree

1 file changed

+36
-36
lines changed
  • surveys/2024-annual-survey/translations

1 file changed

+36
-36
lines changed

surveys/2024-annual-survey/translations/zh-tw.md

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -110,17 +110,17 @@ Type: select all that apply
110110

111111
Type: select all that apply
112112

113-
- Linux(桌面或服務器
113+
- Linux(桌面或伺服器
114114
- Windows 10/11
115115
- Windows 8 或更早版本
116116
- macOS
117117
- iOS
118118
- 安卓(Android)
119-
- 嵌入式平台(帶作業系統
119+
- 嵌入式平台(具有作業系統
120120
- 嵌入式平台(裸機)
121121
- WebAssembly(瀏覽器環境)
122122
- WebAssembly(非瀏覽器環境)
123-
- 明確平台獨立(如不與作業系統交互的套件
123+
- 明確平台獨立(如不與作業系統互動的套件
124124
- 其他
125125

126126
### 您通常使用什麽編輯器或 IDE 配置來編寫 Rust 代碼?
@@ -296,29 +296,29 @@ Type: matrix
296296
Rows:
297297

298298
- 特化 (Specialization)
299-
- 生成器/協程 (Generators/coroutines)
299+
- 生成器/共常式 (Generators/coroutines)
300300
- 非同步閉包 (Async closures)
301-
- 非同步生成器/協程 (Async generators/coroutines)
301+
- 非同步生成器/共常式 (Async generators/coroutines)
302302
- if/while let鏈 (If/while let chains)
303-
- try 表達式塊 (Try blocks)
303+
- try 表達式區塊 (Try blocks)
304304
- 永無(never)類型 (Never type)
305-
- 特質別名 (Trait aliases)
305+
- 特徵別名 (Trait aliases)
306306
- 類型別名中的 impl Trait (Type Alias Impl Trait (TAIT) )
307307
- 預設關聯類型 (Associated type defaults)
308308
- 泛型編譯時求值表達式 (Generic const expressions)
309-
- 編譯時可用的特質方法 (Const trait methods)
309+
- 編譯時可用的特徵方法 (Const trait methods)
310310
- 編譯時反射機制 (Compile-time reflection)
311311
- 可變泛型 (Variadic generics)
312312
- 任意方法接受類型 (Arbitrary Self Types)
313-
- 枚舉成員類型 (Enum Variant Types)
314-
- 分配器特質、更優的記憶體溢出處理 (Allocator trait and better OOM handling)
315-
- 穩定應用程式二進制接口
316-
- 可移植SIMD(單指令、多數據流
313+
- 列舉成員類型 (Enum Variant Types)
314+
- 分配器特徵、更優的記憶體不足處理 (Allocator trait and better OOM handling)
315+
- 穩定應用程式二進制介面
316+
- 可移植SIMD(單指令流多資料流
317317

318318
Columns:
319319

320320
- 如果穩定版本中本功能可用,則會解決想用 Rust 適用我的用例時遇到的障礙
321-
- 如果穩定版本中本功能可用,則會改進我的代碼
321+
- 如果穩定版本中本功能可用,則會改進我的程式碼
322322
- 我不需要這個功能
323323
- 我不了解這個功能
324324

@@ -337,20 +337,20 @@ Rows:
337337
- 需要手動實現Iterator (Having to implement Iterator manually)
338338
- 編譯時函式 (const fn) 的限制 (Not being able to do enough in const fn)
339339
- 實現動態庫插件 (Implementing dynamic library plugins)
340-
- 和其他語言(例如C和C++)的交互、協作(Interoperating with other languages (e.g. C or C++) )
341-
- 非同步程式碼中的結構化並發 (Achieving structured concurrency with async code)
340+
- 和其他語言(例如C和C++)的互動、協作(Interoperating with other languages (e.g. C or C++) )
341+
- 非同步程式碼中的結構化並行 (Achieving structured concurrency with async code)
342342
- 編寫不限於特定非同步執行引擎的非同步程式碼 (Writing executor-agnostic async code)
343343
- 編寫正確的不安全程式碼 (Writing correct unsafe code)
344344
- 借用檢查器的限制、不允許部分語義上正確的程式碼 (Borrow checker not allowing valid code)
345345
- 運行慢
346346
- 編譯慢
347347
- 編譯產物占用儲存空間大 (Large binary size of compiled artifacts)
348-
- Rust 語言文件與標準庫文件
348+
- Rust 語言文件與標準函式庫文件
349349
- 編輯器自身錯誤(即內部錯誤Internal Compiler Errors或者程式碼生成錯誤)(Encountering compiler bugs (e.g. ICEs a.k.a. internal compiler errors or miscompilations))
350350
- 難懂的或者令人困惑的編譯錯誤訊息
351-
- IDE支持不到位(例如缺乏某些錯誤訊息的顯示、分析慢等)
352-
- 調試體驗支持不到位(例如缺乏數值可視化或者非同步堆疊軌跡
353-
- 語言或標準庫文件不充分
351+
- IDE支援不佳(例如缺乏某些錯誤訊息的顯示、分析慢等)
352+
- 除錯體驗支援不佳(例如缺乏數值視覺化或者非同步堆疊軌跡
353+
- 語言或標準函式庫文件不充分
354354

355355
Columns:
356356

@@ -370,15 +370,15 @@ Rows:
370370

371371
- 特質中的非同步函數 (async fn in traits, 1.75)
372372
- 特質中返回位置的impl Trait (Return position impl Trait in traits,1.75)
373-
- C字符串字面量 (C-string literals, 1.77)
374-
- 非同步函數中的遞歸 (Recursion in async fn, 1.77)
373+
- C字串字面值 (C-string literals, 1.77)
374+
- 非同步函數中的遞迴 (Recursion in async fn, 1.77)
375375
- offset_of! 巨集 (offset_of! macro, 1.77)
376376
- #[diagnostic] 屬性 (#[diagnostic] attribute, 1.78)
377377
- 內聯編譯時運算表達式 (Inline const expressions, 1.79)
378378
- 關聯類型位置中的約束 (Bounds in associated type position, 1.79)
379379
- LazyCell 和 LazyLock (LazyCell and LazyLock, 1.80)
380-
- 範圍匹配中支持排他範圍 (Exclusive ranges in patterns, 1.80)
381-
- 核心庫中的 Error 特質 (Error trait in core, 1.81)
380+
- 範圍匹配中支援排除範圍 (Exclusive ranges in patterns, 1.80)
381+
- 核心函式庫中的 Error 特徵 (Error trait in core, 1.81)
382382
- #[expect(lint)] 和 lint 原因 (#[expect(lint)] and lint reasons, 1.81)
383383
- use<..> 準確捕捉語法 (Precise capturing syntax, 1.82)
384384
- &raw 指針 (&raw pointers, 1.82)
@@ -405,7 +405,7 @@ Type: select all that apply
405405
Type: select all that apply
406406

407407
- 我使用 crates.io
408-
- 我使用自定義/本地/公司注冊庫(registry)
408+
- 我使用自定義/本地/公司註冊表(registry)
409409
- 我使用 crates.io 的鏡像
410410
- 我不知道
411411

@@ -415,9 +415,9 @@ Type: matrix
415415

416416
Rows:
417417

418-
- 制作關於 Rust 的訊息內容(如部落格、直播、制作 YouTube 影片、在會議/聚會上展示等
418+
- 製作關於 Rust 的訊息內容(如部落格、直播、製作 YouTube 影片、在會議/聚會上展示等
419419
- 接收有關 Rust 的訊息內容(如部落格、直播、YouTube 影片等)
420-
- 閱讀 Rust 官方溝通渠道(如 This Week in Rust、Rust 官方部落格、Rust 推特帳號等)
420+
- 閱讀 Rust 官方溝通管道(如 This Week in Rust、Rust 官方部落格、Rust 推特帳號等)
421421
- 參與社交媒體或網站(Hacker News、r/rust、Twitter、LinkedIn等)上關於Rust的討論
422422
- 參加 Rust 聚會或會議(虛擬或面對面)
423423
- 撰寫、評論、參與討論或編輯公開的 RFC
@@ -441,7 +441,7 @@ Rows:
441441

442442
- Rust 官方社群論壇或聊天室(users.rust-lang.org、internals.rust-lang.org、官方 Rust Discord 或 Rust Zulip)
443443
- Rust 非官方社群論壇或聊天室(如reddit.com/r/rust、Hacker News 或 Rust Community Discord 等等)
444-
- 專注於 Rust 軟件開發特定領域(例如遊戲開發、音訊等)的社群
444+
- 專注於 Rust 軟體開發特定領域(例如遊戲開發、音訊等)的社群
445445
- Rust 會議
446446
- Rust 聚會或當地社群活動
447447
- 在 rust-lang GitHub 組織<strong>之內</strong>的倉庫中進行討論(問題、PR等)
@@ -469,7 +469,7 @@ Type: select one
469469

470470
Type: select one
471471

472-
- 是,作為程式碼的貢獻者(非管理崗位
472+
- 是,作為程式碼的貢獻者(非管理職
473473
- 我主要管理其他編寫、設計軟體的人
474474
-
475475

@@ -497,7 +497,7 @@ Type: select one
497497
Type: select all that apply
498498

499499
- 使用 Rust 幫助我們實現了目標
500-
- 采用 Rust 是一項挑戰
500+
- 採用 Rust 是一項挑戰
501501
- 總的來說,採用 Rust 降低了我們團隊的速度
502502
- 使用 Rust 值得採用 Rust 所需要的成本
503503
- 我們在未來很可能會繼續使用 Rust
@@ -506,14 +506,14 @@ Type: select all that apply
506506

507507
Type: select all that apply
508508

509-
- 性能(即速度、記憶體用量等)特征
509+
- 性能(即速度、記憶體使用量等)特色
510510
- 我們需要精確控制軟體的運行行為
511511
- Rust 的安全性和可靠性對我們來說非常重要
512512
- Rust 允許我們構建相對正確和無缺陷的軟體
513513
- 我們發現使用 Rust 寫程式是令人愉快或有趣的
514514
- 我們已經知道 Rust,所以它是我們的預設選擇
515515
- 我們認為用它進行原型實現很方便
516-
- 我們必須與現有的 Rust 程式碼進行交互
516+
- 我們必須與現有的 Rust 程式碼互動
517517

518518
### 您在使用 Rust 時遇到了哪些挑戰?
519519

@@ -535,15 +535,15 @@ Type: select all that apply
535535
- 資料科學
536536
- 資料庫實現
537537
- 桌面應用程式前端
538-
- 桌面或移動的庫或服務
538+
- 桌面或移動的函式庫或服務
539539
- 分散式系統
540-
- 嵌入式系統(帶作業系統
540+
- 嵌入式系統(具有作業系統
541541
- 嵌入式系統(裸機)
542542
- 高性能計算
543543
- 物聯網
544544
- 機器學習
545545
- 手機應用前端
546-
- 程式語言和相關工具(包括編譯器、IDE、標準庫等
546+
- 程式語言和相關工具(包括編譯器、IDE、標準函式庫等
547547
- 機器人
548548
- 科學和/或數值計算
549549
- 服務端或後端應用
@@ -614,8 +614,8 @@ Type: select all that apply
614614
- 被替代品取代
615615
- 變得過於複雜
616616
- 工具和文件未能提供足夠的無障礙支援(如自然語言的障礙或不相容螢幕閱讀器)
617-
- Rust 基金會沒有適當支持 Rust 項目(例如在財務、基礎設施、法律方面)
618-
- 項目的治理無法與社區的大小、需求規模相匹配
617+
- Rust 基金會沒有適當支持 Rust 專案(例如在財務、基礎設施、法律方面)
618+
- 專案的治理無法與社區的大小、需求規模相符
619619
- 語言的開發者和維護者未能得到適當的支持
620620
- 我不擔憂
621621
- 其他

0 commit comments

Comments
 (0)