Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translate some Chinese cases #1026

Merged
merged 1 commit into from
May 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Fluent.Ribbon/Localization/Languages/Chinese.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ public class Chinese : RibbonLocalizationBase
public override string BackstageButtonKeyTip { get; } = FallbackLocalization.BackstageButtonKeyTip /* F */;
public override string BackstageButtonText { get; } = "文件";
public override string CustomizeStatusBar { get; } = "自定义状态栏";
public override string DisplayOptionsButtonScreenTipText { get; } = FallbackLocalization.DisplayOptionsButtonScreenTipText /* Configure Ribbon display options. */;
public override string DisplayOptionsButtonScreenTipTitle { get; } = FallbackLocalization.DisplayOptionsButtonScreenTipTitle /* Ribbon Display Options */;
public override string ExpandRibbon { get; } = FallbackLocalization.ExpandRibbon /* Expand the Ribbon */;
public override string MinimizeRibbon { get; } = FallbackLocalization.MinimizeRibbon /* Minimize the Ribbon */;
public override string DisplayOptionsButtonScreenTipText { get; } = "配置功能区显示选项。";
public override string DisplayOptionsButtonScreenTipTitle { get; } = "功能区显示选项";
public override string ExpandRibbon { get; } = "展开并固定功能区";
public override string MinimizeRibbon { get; } = "折叠功能区";
public override string MoreColors { get; } = "更多的颜色...";
public override string NoColor { get; } = "没有颜色";
public override string QuickAccessToolBarDropDownButtonTooltip { get; } = "自定义快速访问具栏";
Expand All @@ -30,10 +30,10 @@ public class Chinese : RibbonLocalizationBase
public override string RibbonContextMenuRemoveItem { get; } = "在快速访问工具栏中移除";
public override string RibbonContextMenuShowAbove { get; } = "在功能区上方显示快速访问工具栏";
public override string RibbonContextMenuShowBelow { get; } = "在功能区下方显示快速访问工具栏";
public override string RibbonLayout { get; } = FallbackLocalization.RibbonLayout /* Ribbon Layout */;
public override string RibbonLayout { get; } = "功能区布局";
public override string ScreenTipDisableReasonHeader { get; } = "此命令当前已被禁用。";
public override string ScreenTipF1LabelHeader { get; } = FallbackLocalization.ScreenTipF1LabelHeader /* Press F1 for help */;
public override string ShowRibbon { get; } = FallbackLocalization.ShowRibbon /* Show Ribbon */;
public override string ScreenTipF1LabelHeader { get; } = "使用 F1 按键寻求帮助";
public override string ShowRibbon { get; } = "功能区显示";
public override string UseClassicRibbon { get; } = "使用经典功能区(_U)";
public override string UseSimplifiedRibbon { get; } = "使用简化功能区(_U)";
}
Expand Down