feat: init avalonia demo.

This commit is contained in:
NaBian 2024-07-14 22:23:46 +08:00
parent adb6355884
commit 63bf5c6aa7
95 changed files with 20896 additions and 2634 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
.vs
.config
.idea
*.user
[Bb]in/
[Oo]bj/

208
src/Avalonia/.editorconfig Normal file
View File

@ -0,0 +1,208 @@
# To learn more about .editorconfig see https://aka.ms/editorconfigdocs
# top-most EditorConfig file
root = true
# Default settings:
# A newline ending every file
# Use 4 spaces as indentation
[*]
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[*.json]
indent_size = 2
[*.{cs,xaml}]
charset = utf-8
end_of_line = crlf
# C# files
[*.cs]
# New line preferences
csharp_new_line_before_open_brace = all
csharp_new_line_before_else = true
csharp_new_line_before_catch = true
csharp_new_line_before_finally = true
csharp_new_line_before_members_in_object_initializers = true
csharp_new_line_before_members_in_anonymous_types = true
csharp_new_line_between_query_expression_clauses = true
# Indentation preferences
csharp_indent_block_contents = true
csharp_indent_braces = false
csharp_indent_case_contents = true
csharp_indent_case_contents_when_block = true
csharp_indent_switch_labels = true
csharp_indent_labels = one_less_than_current
# Parentheses preferences
dotnet_style_parentheses_in_arithmetic_binary_operators = never_if_unnecessary : silent
dotnet_style_parentheses_in_relational_binary_operators = never_if_unnecessary : silent
dotnet_style_parentheses_in_other_binary_operators = never_if_unnecessary : silent
dotnet_style_parentheses_in_other_operators = never_if_unnecessary : silent
# Modifier preferences
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async : suggestion
dotnet_style_require_accessibility_modifiers = for_non_interface_members : warning
# avoid this. unless absolutely necessary
dotnet_style_qualification_for_field = false : suggestion
dotnet_style_qualification_for_property = false : suggestion
dotnet_style_qualification_for_method = false : suggestion
dotnet_style_qualification_for_event = false : suggestion
# Types: use keywords instead of BCL types, and permit var only when the type is clear
csharp_style_var_for_built_in_types = false : suggestion
csharp_style_var_when_type_is_apparent = false : none
csharp_style_var_elsewhere = false : none
dotnet_style_predefined_type_for_locals_parameters_members = true : suggestion
dotnet_style_predefined_type_for_member_access = true : suggestion
# Naming Conventions
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
dotnet_naming_style.camel_case_underscore_style.required_prefix = _
dotnet_naming_style.interfaces_style.capitalization = pascal_case
dotnet_naming_style.interfaces_style.required_prefix = I
# name all constant fields using PascalCase
dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields
dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
dotnet_naming_symbols.constant_fields.applicable_kinds = field
dotnet_naming_symbols.constant_fields.required_modifiers = const
# static fields using PascalCase
dotnet_naming_rule.static_fields_should_have_prefix.severity = suggestion
dotnet_naming_rule.static_fields_should_have_prefix.symbols = static_fields
dotnet_naming_rule.static_fields_should_have_prefix.style = pascal_case_style
dotnet_naming_symbols.static_fields.applicable_kinds = field
dotnet_naming_symbols.static_fields.required_modifiers = static
dotnet_naming_symbols.static_fields.applicable_accessibilities = private, internal, private_protected
# internal and private fields should be _camelCase
dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion
dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
dotnet_naming_symbols.private_internal_fields.applicable_kinds = field
dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
# interfaces must have an I prefix
dotnet_naming_rule.interfaces_must_be_interfaces_style.severity = suggestion
dotnet_naming_rule.interfaces_must_be_interfaces_style.symbols = interfaces
dotnet_naming_rule.interfaces_must_be_interfaces_style.style = interfaces_style
dotnet_naming_symbols.interfaces.applicable_kinds = interface
dotnet_naming_symbols.interfaces.applicable_accessibilities = *
# Code style defaults
csharp_using_directive_placement = outside_namespace : suggestion
dotnet_sort_system_directives_first = true
csharp_prefer_braces = true : suggestion
csharp_preserve_single_line_blocks = true : none
csharp_preserve_single_line_statements = false : none
csharp_prefer_static_local_function = true : suggestion
csharp_prefer_simple_using_statement = false : none
csharp_style_prefer_switch_expression = true : suggestion
# Code quality
dotnet_style_readonly_field = true : suggestion
dotnet_code_quality_unused_parameters = non_public : suggestion
# Expression-level preferences
dotnet_style_object_initializer = true : suggestion
dotnet_style_collection_initializer = true : suggestion
dotnet_style_explicit_tuple_names = true : suggestion
dotnet_style_coalesce_expression = true : suggestion
dotnet_style_null_propagation = true : suggestion
dotnet_style_prefer_is_null_check_over_reference_equality_method = true : suggestion
dotnet_style_prefer_inferred_tuple_names = true : suggestion
dotnet_style_prefer_inferred_anonymous_type_member_names = true : suggestion
dotnet_style_prefer_auto_properties = true : suggestion
dotnet_style_prefer_conditional_expression_over_assignment = true : refactoring
dotnet_style_prefer_conditional_expression_over_return = true : refactoring
csharp_prefer_simple_default_expression = true : suggestion
csharp_style_deconstructed_variable_declaration = true : suggestion
# Expression-bodied members
csharp_style_expression_bodied_methods = true : refactoring
csharp_style_expression_bodied_constructors = true : refactoring
csharp_style_expression_bodied_operators = true : refactoring
csharp_style_expression_bodied_properties = true : refactoring
csharp_style_expression_bodied_indexers = true : refactoring
csharp_style_expression_bodied_accessors = true : refactoring
csharp_style_expression_bodied_lambdas = true : refactoring
csharp_style_expression_bodied_local_functions = true : refactoring
# Pattern matching
csharp_style_pattern_matching_over_is_with_cast_check = true : suggestion
csharp_style_pattern_matching_over_as_with_null_check = true : suggestion
csharp_style_inlined_variable_declaration = true : suggestion
# Null checking preferences
csharp_style_throw_expression = true : suggestion
csharp_style_conditional_delegate_call = true : suggestion
# Other features
csharp_style_prefer_index_operator = false : none
csharp_style_prefer_range_operator = false : none
csharp_style_pattern_local_over_anonymous_function = false : none
# Space preferences
csharp_space_after_cast = false
csharp_space_after_colon_in_inheritance_clause = true
csharp_space_after_comma = true
csharp_space_after_dot = false
csharp_space_after_keywords_in_control_flow_statements = true
csharp_space_after_semicolon_in_for_statement = true
csharp_space_around_binary_operators = before_and_after
csharp_space_around_declaration_statements = do_not_ignore
csharp_space_before_colon_in_inheritance_clause = true
csharp_space_before_comma = false
csharp_space_before_dot = false
csharp_space_before_open_square_brackets = false
csharp_space_before_semicolon_in_for_statement = false
csharp_space_between_empty_square_brackets = false
csharp_space_between_method_call_empty_parameter_list_parentheses = false
csharp_space_between_method_call_name_and_opening_parenthesis = false
csharp_space_between_method_call_parameter_list_parentheses = false
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
csharp_space_between_method_declaration_name_and_open_parenthesis = false
csharp_space_between_method_declaration_parameter_list_parentheses = false
csharp_space_between_parentheses = false
csharp_space_between_square_brackets = false
# Analyzers
dotnet_code_quality.ca1802.api_surface = private, internal
# C++ Files
[*.{cpp,h,in}]
curly_bracket_next_line = true
indent_brace_style = Allman
# Xml project files
[*.{csproj,vcxproj,vcxproj.filters,proj,nativeproj,locproj}]
indent_size = 2
# Xml build files
[*.builds]
indent_size = 2
# Xml files
[*.{xml,stylecop,resx,ruleset}]
indent_size = 2
# Xml config files
[*.{props,targets,config,nuspec}]
indent_size = 2
# Shell scripts
[*.sh]
end_of_line = lf
[*.{cmd, bat}]
end_of_line = crlf

View File

@ -3,9 +3,7 @@
x:Class="HandyControlDemo.App"
RequestedThemeVariant="Default">
<Application.Styles>
<StyleInclude Source="avares://HandyControl/Themes/Theme.axaml"/>
<StyleInclude Source="avares://HandyControlDemo/Resources/Themes/Theme.axaml"/>
<!--<FluentTheme />-->
<!--<hc:Theme/>-->
<StyleInclude Source="avares://HandyControl/Themes/Theme.axaml" />
<StyleInclude Source="avares://HandyControlDemo/Resources/Themes/Theme.axaml" />
</Application.Styles>
</Application>

View File

@ -6,7 +6,6 @@ using Avalonia.Markup.Xaml;
namespace HandyControlDemo;
// ReSharper disable once PartialTypeWithSinglePart
public partial class App : Application
{
public override void Initialize()

View File

@ -0,0 +1,128 @@
[
{
"title": "Styles",
"selectedIndex": 0,
"group": false,
"demoItemList": [
[ "Brush", "BrushDemoCtl", "Brush.Brush", "", "" ],
[ "Button", "ButtonDemoCtl", "Brush.ButtonClick", "", "" ],
[ "RepeatButton", "RepeatButtonDemoCtl", "Brush.RepeatButton", "", "" ],
[ "ToggleButton", "ToggleButtonDemoCtl", "Brush.Toggle", "", "" ],
[ "RadioButton", "RadioButtonDemoCtl", "Brush.RadioButton", "", "" ],
[ "CheckBox", "CheckBoxDemoCtl", "Brush.CheckBoxChecked", "", "" ],
[ "ScrollViewer", "NativeScrollViewerDemoCtl", "Brush.ScrollBox", "", "" ],
[ "Slider", "SliderDemoCtl", "Brush.Slider", "", "" ],
[ "TextBlock", "TextBlockDemoCtl", "Brush.TextBlock", "", "" ],
[ "TextBox", "NativeTextBoxDemoCtl", "Brush.TextBox", "", "" ],
[ "ComboBox", "NativeComboBoxDemoCtl", "Brush.ComboBox", "", "" ],
[ "PasswordBox", "NativePasswordBoxDemoCtl", "Brush.PasswordBox", "", "" ],
[ "Expander", "ExpanderDemoCtl", "Brush.Expander", "", "" ],
[ "ProgressBar", "NativeProgressBarDemoCtl", "Brush.ProgressBar", "", "" ],
[ "Calendar", "CalendarDemoCtl", "Brush.Calendar", "", "" ],
[ "DatePicker", "NativeDatePickerDemoCtl", "Brush.DateTimePicker", "", "" ],
[ "TabControl", "NativeTabControlDemoCtl", "Brush.TabPage", "", "" ],
[ "DataGrid", "DataGridDemoCtl", "Brush.DataGrid", "", "" ],
[ "TreeView", "TreeViewDemoCtl", "Brush.TreeView", "", "" ],
[ "ListBox", "ListBoxDemoCtl", "Brush.ListBox", "", "" ],
[ "ListView", "ListViewDemoCtl", "Brush.ListView", "", "" ],
[ "GroupBox", "GroupBoxDemoCtl", "Brush.GroupBox", "", "" ],
[ "Menu", "MenuDemoCtl", "Brush.ContextMenu", "", "" ],
[ "RichTextBox", "RichTextBoxDemoCtl", "Brush.RichTextBox", "", "" ],
[ "FlowDocument", "FlowDocumentDemoCtl", "Brush.WPFFlowDocument", "", "" ],
[ "ToolBar", "ToolBarDemoCtl", "Brush.ToolBar", "", "" ],
[ "Border", "BorderDemoCtl", "Brush.BorderElement", "", "" ],
[ "Label", "LabelDemoCtl", "Brush.Label", "", "" ],
[ "Frame", "FrameDemoCtl", "Brush.FrameBorder", "", "" ],
[ "Window", "NativeWindowDemoCtl", "Brush.WindowsForm", "", "" ],
[ "Geometry", "GeometryDemoCtl", "Brush.Path", "", "" ]
]
},
{
"title": "Controls",
"selectedIndex": 0,
"group": true,
"demoItemList": [
[ "FloatingBlock", "FloatingBlockDemoCtl", "Brush.LikeFilled", "", "Interacting" ],
[ "PropertyGrid", "PropertyGridDemoCtl", "Brush.PropertyGridEditorPart", "", "DataEntry" ],
[ "ImageSelector", "ImageSelectorDemoCtl", "Brush.Image", "", "DataEntry" ],
[ "ImageBlock", "ImageBlockDemoCtl", "Brush.ImageStack", "", "DataDisplay" ],
[ "Magnifier", "MagnifierDemoCtl", "Brush.Search", "", "Interacting" ],
[ "Gravatar", "GravatarDemoCtl", "Brush.User", "", "DataDisplay" ],
[ "Badge", "BadgeDemoCtl", "Brush.CheckDot", "", "DataDisplay" ],
[ "SplitButton", "SplitButtonDemoCtl", "Brush.SplitButton", "", "Button" ],
[ "ButtonGroup", "ButtonGroupDemoCtl", "Brush.ButtonGroup", "", "Button" ],
[ "ProgressButton", "ProgressButtonDemoCtl", "Brush.ProgressBarStatusBar8", "", "Button" ],
[ "Poptip", "PoptipDemoCtl", "Brush.ToolTip", "", "DataDisplay" ],
[ "NumericUpDown", "NumericUpDownDemoCtl", "Brush.NumericListBox", "", "DataEntry" ],
[ "TextBox", "TextBoxDemoCtl", "Brush.TextBox", "", "DataEntry" ],
[ "ComboBox", "ComboBoxDemoCtl", "Brush.ComboBox", "", "DataEntry" ],
[ "CheckComboBox", "CheckComboBoxDemoCtl", "Brush.CheckBoxList", "", "DataEntry" ],
[ "AutoCompleteTextBox", "AutoCompleteTextBoxDemoCtl", "Brush.AutoComplete", "1", "DataEntry" ],
[ "PasswordBox", "PasswordBoxDemoCtl", "Brush.PasswordBox", "", "DataEntry" ],
[ "PinBox", "PinBoxDemoCtl", "Brush.Ellipsis", "", "DataEntry" ],
[ "DatePicker", "DatePickerDemoCtl", "Brush.DateTimePicker", "", "DataEntry" ],
[ "Clock", "ClockDemoCtl", "Brush.Time", "", "DataEntry" ],
[ "TimePicker", "TimePickerDemoCtl", "Brush.TimePicker", "", "DataEntry" ],
[ "CalendarWithClock", "CalendarWithClockDemoCtl", "Brush.Calendar", "", "DataEntry" ],
[ "DateTimePicker", "DateTimePickerDemoCtl", "Brush.DateTimePicker", "", "DataEntry" ],
[ "Transfer", "TransferDemoCtl", "Brush.SyncArrow", "", "DataEntry" ],
[ "FlipClock", "FlipClockDemoCtl", "Brush.FlipVertical", "", "DataDisplay" ],
[ "Rate", "RateDemoCtl", "Brush.HeartFilled", "", "DataEntry" ],
[ "Shield", "ShieldDemoCtl", "Brush.SplitKeyValuePair", "", "DataDisplay" ],
[ "SearchBar", "SearchBarDemoCtl", "Brush.Search", "", "DataEntry" ],
[ "Tag", "TagDemoCtl", "Brush.Tag", "", "DataDisplay" ],
[ "GifImage", "GifImageDemoCtl", "Brush.Animation", "", "DataDisplay" ],
[ "OutlineText", "OutlineTextDemoCtl", "Brush.TextBlock", "", "DataDisplay" ],
[ "RunningBlock", "RunningBlockDemoCtl", "Brush.Dynamic", "", "DataDisplay" ],
[ "Card", "CardDemoCtl", "Brush.ContactCard", "", "DataDisplay" ],
[ "ElementGroup", "ElementGroupDemoCtl", "Brush.ButtonGroup", "1", "Layout" ],
[ "Divider", "DividerDemoCtl", "Brush.DottedSplitter", "", "Layout" ],
[ "CirclePanel", "CirclePanelDemoCtl", "Brush.ColorWheel", "", "Layout" ],
[ "Grid", "GridDemoCtl", "Brush.GridPane", "", "Layout" ],
[ "FlexPanel", "FlexPanelDemoCtl", "Brush.FlowLayoutPanel", "1", "Layout" ],
[ "UniformSpacingPanel", "UniformSpacingPanelDemoCtl", "Brush.IncreaseHorizontalSpacing", "1", "Layout" ],
[ "RelativePanel", "RelativePanelDemoCtl", "Brush.TransformRelative", "", "Layout" ],
[ "WaterfallPanel", "WaterfallPanelDemoCtl", "Brush.Panel", "", "Layout" ],
[ "HoneycombPanel", "HoneycombPanelDemoCtl", "Brush.PolygonHexagon", "", "Layout" ],
[ "TransitioningContentControl", "TransitioningContentControlDemoCtl", "Brush.TransitioningContentControl", "", "Interacting" ],
[ "Drawer", "DrawerDemoCtl", "Brush.TransactedReceiveScope", "", "Feedback" ],
[ "CoverView", "CoverViewDemoCtl", "Brush.DetailDataView", "", "DataDisplay" ],
[ "CoverFlow", "CoverFlowDemoCtl", "Brush.LinearCarousel", "", "DataDisplay" ],
[ "ProgressBar", "ProgressBarDemoCtl", "Brush.ProgressBar", "", "Feedback" ],
[ "StepBar", "StepBarDemoCtl", "Brush.Flow", "", "Navigation" ],
[ "Growl", "GrowlDemoCtl", "Brush.Message", "", "Feedback" ],
[ "Loading", "LoadingDemoCtl", "Brush.Loading", "", "Feedback" ],
[ "ColorPicker", "ColorPickerDemoCtl", "Brush.ColorPalette", "", "DataEntry" ],
[ "Carousel", "CarouselDemoCtl", "Brush.Carousel", "", "DataDisplay" ],
[ "CompareSlider", "CompareSliderDemoCtl", "Brush.SplitterControl", "", "Interacting" ],
[ "PreviewSlider", "PreviewSliderDemoCtl", "Brush.HoverMenu", "", "DataEntry" ],
[ "RangeSlider", "RangeSliderDemoCtl", "Brush.Indexer", "", "DataEntry" ],
[ "TimeBar", "TimeBarDemoCtl", "Brush.Timeline", "", "DataEntry" ],
[ "Pagination", "PaginationDemoCtl", "Brush.Paginator", "", "Navigation" ],
[ "TabControl", "TabControlDemoCtl", "Brush.TabPage", "", "DataDisplay" ],
[ "SideMenu", "SideMenuDemoCtl", "Brush.MainMenuControl", "", "Navigation" ],
[ "Notification", "NotificationDemoCtl", "Brush.Procedure", "", "Feedback" ],
[ "Dialog", "DialogDemoCtl", "Brush.Dialog", "", "Feedback" ],
[ "Screenshot", "ScreenshotDemoCtl", "Brush.WindowScreenshot", "", "" ],
[ "GotoTop", "GotoTopDemoCtl", "Brush.GoToTop", "", "" ],
[ "ChatBubble", "ChatBubbleDemoCtl", "Brush.FeedbackBubble", "", "" ],
[ "Watermark", "WatermarkDemoCtl", "Brush.GridLight", "1", "" ],
[ "NotifyIcon", "NotifyIconDemoCtl", "Brush.NotificationHub", "", "" ],
[ "ImageBrowser", "ImageBrowserDemoCtl", "Brush.ImageBrowser", "", "" ],
[ "AnimationPath", "AnimationPathDemoCtl", "Brush.Path", "", "" ],
[ "ScrollViewer", "ScrollViewerDemoCtl", "Brush.ScrollBox", "", "" ],
[ "Sprite", "SpriteDemoCtl", "Brush.HandyControl", "", "" ],
[ "Window", "WindowDemoCtl", "Brush.WindowsForm", "", "" ]
]
},
{
"title": "Tools",
"selectedIndex": 0,
"group": false,
"demoItemList": [
[ "HatchBrushGenerator", "HatchBrushGeneratorDemoCtl", "Brush.DataGenerator", "", "" ],
[ "Morphing_Animation", "GeometryAnimationDemoCtl", "Brush.Animation", "", "" ],
[ "Effects", "EffectsDemoCtl", "Brush.Effects", "", "" ]
]
}
]

View File

@ -0,0 +1,12 @@

namespace HandyControlDemo.Data;
public enum DemoType
{
Type1 = 1,
Type2,
Type3,
Type4,
Type5,
Type6
}

View File

@ -0,0 +1,58 @@
namespace HandyControlDemo.Data;
public class MessageToken
{
public static readonly string LoadShowContent = nameof(LoadShowContent);
public static readonly string FullSwitch = nameof(FullSwitch);
public static readonly string ContributorsView = nameof(ContributorsView);
public static readonly string ClearLeftSelected = nameof(ClearLeftSelected);
public static readonly string SendChatMessage = nameof(SendChatMessage);
public static readonly string GrowlDemoPanel = nameof(GrowlDemoPanel);
public static readonly string DialogDemoWindow = nameof(DialogDemoWindow);
public static readonly string MainWindow = nameof(MainWindow);
public static readonly string PracticalDemo = nameof(PracticalDemo);
public static readonly string SwitchDemo = nameof(SwitchDemo);
public static readonly string ProjectsView = nameof(ProjectsView);
public static readonly string BlogsView = nameof(BlogsView);
public static readonly string WebsitesView = nameof(WebsitesView);
public static readonly string NotifyIconDemo = nameof(NotifyIconDemo);
public static readonly string NotifyIconContextDemo = nameof(NotifyIconContextDemo);
public static readonly string CommonWindow = nameof(CommonWindow);
public static readonly string BlurWindow = nameof(BlurWindow);
public static readonly string CustomNonClientAreaWindow = nameof(CustomNonClientAreaWindow);
public static readonly string NoNonClientAreaDragableWindow = nameof(NoNonClientAreaDragableWindow);
public static readonly string QQGroupView = nameof(QQGroupView);
public static readonly string GlowWindow = nameof(GlowWindow);
public static readonly string NativeCommonWindow = nameof(NativeCommonWindow);
public static readonly string NavigationWindow = nameof(NavigationWindow);
public static readonly string TouchDragMoveWindow = nameof(TouchDragMoveWindow);
public static readonly string DialogContainer = nameof(DialogContainer);
public static readonly string LangUpdated = nameof(LangUpdated);
public static readonly string SkinUpdated = nameof(SkinUpdated);
}

View File

@ -0,0 +1,21 @@
using System.Collections.Generic;
namespace HandyControlDemo.Data;
public class DemoDataModel
{
public int Index { get; set; }
public string Name { get; set; } = string.Empty;
public bool IsSelected { get; set; }
public string Remark { get; set; } = string.Empty;
public DemoType Type { get; set; }
public string ImgPath { get; set; } = string.Empty;
public List<DemoDataModel> DataList { get; set; } = [];
}

View File

@ -0,0 +1,29 @@
using System.Collections.Generic;
using CommunityToolkit.Mvvm.ComponentModel;
namespace HandyControlDemo.Data;
public class DemoInfoModel : ObservableObject
{
public string Key { get; set; } = string.Empty;
private string _title = string.Empty;
public string Title
{
get => _title;
set => SetProperty(ref _title, value);
}
private int _selectedIndex;
public int SelectedIndex
{
get => _selectedIndex;
set => SetProperty(ref _selectedIndex, value);
}
public bool IsGroupEnabled { get; set; }
public IList<DemoItemModel> DemoItemList { get; set; } = [];
}

View File

@ -0,0 +1,31 @@
using CommunityToolkit.Mvvm.ComponentModel;
namespace HandyControlDemo.Data;
public class DemoItemModel : ObservableObject
{
private bool _isVisible = true;
private string _queriesText = string.Empty;
public string Name { get; set; } = string.Empty;
public string GroupName { get; set; } = string.Empty;
public string TargetCtlName { get; set; } = string.Empty;
public object? ImageBrush { get; set; }
public bool IsNew { get; set; }
public string QueriesText
{
get => _queriesText;
set => SetProperty(ref _queriesText, value);
}
public bool IsVisible
{
get => _isVisible;
set => SetProperty(ref _isVisible, value);
}
}

View File

@ -0,0 +1,374 @@
namespace HandyControl.Data;
public class ResourceToken
{
#region Basic
#region Geometry
public const string CalendarGeometry = nameof(CalendarGeometry);
public const string DeleteGeometry = nameof(DeleteGeometry);
public const string DeleteFillCircleGeometry = nameof(DeleteFillCircleGeometry);
public const string CloseGeometry = nameof(CloseGeometry);
public const string UpGeometry = nameof(UpGeometry);
public const string DownGeometry = nameof(DownGeometry);
public const string ClockGeometry = nameof(ClockGeometry);
public const string LeftGeometry = nameof(LeftGeometry);
public const string RightGeometry = nameof(RightGeometry);
public const string RotateLeftGeometry = nameof(RotateLeftGeometry);
public const string EnlargeGeometry = nameof(EnlargeGeometry);
public const string ReduceGeometry = nameof(ReduceGeometry);
public const string DownloadGeometry = nameof(DownloadGeometry);
public const string SaveGeometry = nameof(SaveGeometry);
public const string WindowsGeometry = nameof(WindowsGeometry);
public const string FullScreenGeometry = nameof(FullScreenGeometry);
public const string FullScreenReturnGeometry = nameof(FullScreenReturnGeometry);
public const string SearchGeometry = nameof(SearchGeometry);
public const string UpDownGeometry = nameof(UpDownGeometry);
public const string WindowMinGeometry = nameof(WindowMinGeometry);
public const string CheckedGeometry = nameof(CheckedGeometry);
public const string EyeOpenGeometry = nameof(EyeOpenGeometry);
public const string EyeCloseGeometry = nameof(EyeCloseGeometry);
public const string WindowRestoreGeometry = nameof(WindowRestoreGeometry);
public const string WindowMaxGeometry = nameof(WindowMaxGeometry);
public const string AudioGeometry = nameof(AudioGeometry);
public const string BubbleTailGeometry = nameof(BubbleTailGeometry);
public const string StarGeometry = nameof(StarGeometry);
public const string AddGeometry = nameof(AddGeometry);
public const string SubGeometry = nameof(SubGeometry);
public const string AllGeometry = nameof(AllGeometry);
public const string DragGeometry = nameof(DragGeometry);
public const string DropperGeometry = nameof(DropperGeometry);
public const string SuccessGeometry = nameof(SuccessGeometry);
public const string InfoGeometry = nameof(InfoGeometry);
public const string ErrorGeometry = nameof(ErrorGeometry);
public const string WarningGeometry = nameof(WarningGeometry);
public const string AskGeometry = nameof(AskGeometry);
public const string FatalGeometry = nameof(FatalGeometry);
#endregion
#region Brush
public const string PrimaryBrush = nameof(PrimaryBrush);
public const string DarkPrimaryBrush = nameof(DarkPrimaryBrush);
public const string SuccessBrush = nameof(SuccessBrush);
public const string DarkSuccessBrush = nameof(DarkSuccessBrush);
public const string InfoBrush = nameof(InfoBrush);
public const string DarkInfoBrush = nameof(DarkInfoBrush);
public const string DangerBrush = nameof(DangerBrush);
public const string DarkDangerBrush = nameof(DarkDangerBrush);
public const string WarningBrush = nameof(WarningBrush);
public const string DarkWarningBrush = nameof(DarkWarningBrush);
public const string AccentBrush = nameof(AccentBrush);
public const string DarkAccentBrush = nameof(DarkAccentBrush);
public const string PrimaryTextBrush = nameof(PrimaryTextBrush);
public const string SecondaryTextBrush = nameof(SecondaryTextBrush);
public const string ThirdlyTextBrush = nameof(ThirdlyTextBrush);
public const string ReverseTextBrush = nameof(ReverseTextBrush);
public const string TextIconBrush = nameof(TextIconBrush);
public const string BorderBrush = nameof(BorderBrush);
public const string SecondaryBorderBrush = nameof(SecondaryBorderBrush);
public const string BackgroundBrush = nameof(BackgroundBrush);
public const string RegionBrush = nameof(RegionBrush);
public const string SecondaryRegionBrush = nameof(SecondaryRegionBrush);
public const string ThirdlyRegionBrush = nameof(ThirdlyRegionBrush);
public const string TitleBrush = nameof(TitleBrush);
public const string DefaultBrush = nameof(DefaultBrush);
public const string DarkDefaultBrush = nameof(DarkDefaultBrush);
public const string DarkMaskBrush = nameof(DarkMaskBrush);
public const string DarkOpacityBrush = nameof(DarkOpacityBrush);
#endregion
#region Converter
public const string Boolean2BooleanReConverter = nameof(Boolean2BooleanReConverter);
public const string Boolean2VisibilityReConverter = nameof(Boolean2VisibilityReConverter);
public const string BooleanArr2VisibilityConverter = nameof(BooleanArr2VisibilityConverter);
public const string Long2FileSizeConverter = nameof(Long2FileSizeConverter);
public const string String2VisibilityConverter = nameof(String2VisibilityConverter);
public const string String2VisibilityReConverter = nameof(String2VisibilityReConverter);
public const string Boolean2VisibilityConverter = nameof(Boolean2VisibilityConverter);
public const string TreeViewItemMarginConverter = nameof(TreeViewItemMarginConverter);
public const string Color2HexStringConverter = nameof(Color2HexStringConverter);
public const string Object2BooleanConverter = nameof(Object2BooleanConverter);
public const string Boolean2StringConverter = nameof(Boolean2StringConverter);
public const string Int2StringConverter = nameof(Int2StringConverter);
public const string BorderClipConverter = nameof(BorderClipConverter);
public const string BorderCircularClipConverter = nameof(BorderCircularClipConverter);
public const string BorderCircularConverter = nameof(BorderCircularConverter);
public const string Object2VisibilityConverter = nameof(Object2VisibilityConverter);
public const string Number2PercentageConverter = nameof(Number2PercentageConverter);
public const string RectangleCircularConverter = nameof(RectangleCircularConverter);
public const string ThicknessSplitConverter = nameof(ThicknessSplitConverter);
public const string CornerRadiusSplitConverter = nameof(CornerRadiusSplitConverter);
public const string MenuScrollingVisibilityConverter = nameof(MenuScrollingVisibilityConverter);
public const string Double2GridLengthConverter = nameof(Double2GridLengthConverter);
public const string DoubleMinConverter = nameof(DoubleMinConverter);
#endregion
#region Effect
public const string EffectShadowColor = nameof(EffectShadowColor);
public const string EffectShadow1 = nameof(EffectShadow1);
public const string EffectShadow2 = nameof(EffectShadow2);
public const string EffectShadow3 = nameof(EffectShadow3);
public const string EffectShadow4 = nameof(EffectShadow4);
public const string EffectShadow5 = nameof(EffectShadow5);
#endregion
#region Color
public const string PrimaryColor = nameof(PrimaryColor);
public const string DarkPrimaryColor = nameof(DarkPrimaryColor);
public const string DangerColor = nameof(DangerColor);
public const string DarkDangerColor = nameof(DarkDangerColor);
public const string WarningColor = nameof(WarningColor);
public const string DarkWarningColor = nameof(DarkWarningColor);
public const string InfoColor = nameof(InfoColor);
public const string DarkInfoColor = nameof(DarkInfoColor);
public const string SuccessColor = nameof(SuccessColor);
public const string DarkSuccessColor = nameof(DarkSuccessColor);
public const string PrimaryTextColor = nameof(PrimaryTextColor);
public const string SecondaryTextColor = nameof(SecondaryTextColor);
public const string ThirdlyTextColor = nameof(ThirdlyTextColor);
public const string ReverseTextColor = nameof(ReverseTextColor);
public const string TextIconColor = nameof(TextIconColor);
public const string BorderColor = nameof(BorderColor);
public const string SecondaryBorderColor = nameof(SecondaryBorderColor);
public const string BackgroundColor = nameof(BackgroundColor);
public const string RegionColor = nameof(RegionColor);
public const string SecondaryRegionColor = nameof(SecondaryRegionColor);
public const string ThirdlyRegionColor = nameof(ThirdlyRegionColor);
public const string TitleColor = nameof(TitleColor);
public const string SecondaryTitleColor = nameof(SecondaryTitleColor);
public const string DefaultColor = nameof(DefaultColor);
public const string DarkDefaultColor = nameof(DarkDefaultColor);
public const string AccentColor = nameof(AccentColor);
public const string DarkAccentColor = nameof(DarkAccentColor);
public const string DarkMaskColor = nameof(DarkMaskColor);
public const string DarkOpacityColor = nameof(DarkOpacityColor);
#endregion
#region Behavior
public const string BehaviorXY200 = nameof(BehaviorXY200);
public const string BehaviorX200 = nameof(BehaviorX200);
public const string BehaviorY200 = nameof(BehaviorY200);
public const string BehaviorXY400 = nameof(BehaviorXY400);
public const string BehaviorX400 = nameof(BehaviorX400);
public const string BehaviorY400 = nameof(BehaviorY400);
#endregion
#endregion
#region Internal
internal const string BlurGradientValue = nameof(BlurGradientValue);
internal const string ButtonCustom = nameof(ButtonCustom);
internal const string PaginationButtonStyle = nameof(PaginationButtonStyle);
internal const string WindowWin10 = nameof(WindowWin10);
internal const string WindowBlur = nameof(WindowBlur);
internal const string WindowGlow = nameof(WindowGlow);
internal const string Window4ScreenshotStyle = nameof(Window4ScreenshotStyle);
internal const string AddTagButtonStyle = nameof(AddTagButtonStyle);
internal const string RadioGroupItemDefault = nameof(RadioGroupItemDefault);
internal const string RadioGroupItemSingle = nameof(RadioGroupItemSingle);
internal const string RadioGroupItemHorizontalFirst = nameof(RadioGroupItemHorizontalFirst);
internal const string RadioGroupItemHorizontalLast = nameof(RadioGroupItemHorizontalLast);
internal const string RadioGroupItemVerticalFirst = nameof(RadioGroupItemVerticalFirst);
internal const string RadioGroupItemVerticalLast = nameof(RadioGroupItemVerticalLast);
internal const string ButtonGroupItemDefault = nameof(ButtonGroupItemDefault);
internal const string ButtonGroupItemSingle = nameof(ButtonGroupItemSingle);
internal const string ButtonGroupItemHorizontalFirst = nameof(ButtonGroupItemHorizontalFirst);
internal const string ButtonGroupItemHorizontalLast = nameof(ButtonGroupItemHorizontalLast);
internal const string ButtonGroupItemVerticalFirst = nameof(ButtonGroupItemVerticalFirst);
internal const string ButtonGroupItemVerticalLast = nameof(ButtonGroupItemVerticalLast);
internal const string ToggleButtonGroupItemDefault = nameof(ToggleButtonGroupItemDefault);
internal const string ToggleButtonGroupItemSingle = nameof(ToggleButtonGroupItemSingle);
internal const string ToggleButtonGroupItemHorizontalFirst = nameof(ToggleButtonGroupItemHorizontalFirst);
internal const string ToggleButtonGroupItemHorizontalLast = nameof(ToggleButtonGroupItemHorizontalLast);
internal const string ToggleButtonGroupItemVerticalFirst = nameof(ToggleButtonGroupItemVerticalFirst);
internal const string ToggleButtonGroupItemVerticalLast = nameof(ToggleButtonGroupItemVerticalLast);
internal const string TabItemCapsuleDefault = nameof(TabItemCapsuleDefault);
internal const string TabItemCapsuleSingle = nameof(TabItemCapsuleSingle);
internal const string TabItemCapsuleHorizontalFirst = nameof(TabItemCapsuleHorizontalFirst);
internal const string TabItemCapsuleHorizontalLast = nameof(TabItemCapsuleHorizontalLast);
internal const string TabItemCapsuleVerticalFirst = nameof(TabItemCapsuleVerticalFirst);
internal const string TabItemCapsuleVerticalLast = nameof(TabItemCapsuleVerticalLast);
internal const string ComboBoxItemCapsuleDefault = nameof(ComboBoxItemCapsuleDefault);
internal const string ComboBoxItemCapsuleSingle = nameof(ComboBoxItemCapsuleSingle);
internal const string ComboBoxItemCapsuleHorizontalFirst = nameof(ComboBoxItemCapsuleHorizontalFirst);
internal const string ComboBoxItemCapsuleHorizontalLast = nameof(ComboBoxItemCapsuleHorizontalLast);
internal const string ComboBoxItemCapsuleVerticalFirst = nameof(ComboBoxItemCapsuleVerticalFirst);
internal const string ComboBoxItemCapsuleVerticalLast = nameof(ComboBoxItemCapsuleVerticalLast);
#endregion
}

View File

@ -5,12 +5,14 @@
One for Windows with net7.0-windows TFM, one for MacOS with net7.0-macos and one with net7.0 TFM for Linux.-->
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AssemblyName>HandyControlDemo</AssemblyName>
<RootNamespace>HandyControlDemo</RootNamespace>
</PropertyGroup>
<ItemGroup>
<None Remove="Data\DemoInfo.json" />
<None Remove="Resources\Img\cloud.png" />
<None Remove="Resources\Img\icon.ico" />
</ItemGroup>
@ -20,6 +22,9 @@
<ItemGroup>
<PackageReference Include="Avalonia.Desktop" Version="$(AvaloniaVersion)" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
@ -30,12 +35,47 @@
<AvaloniaResource Include="Resources\Img\cloud.png" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Data\DemoInfo.json" />
</ItemGroup>
<ItemGroup>
<Compile Update="App.axaml.cs">
<DependentUpon>App.axaml</DependentUpon>
</Compile>
<Compile Update="Properties\Langs\Lang.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Lang.resx</DependentUpon>
</Compile>
<Compile Update="Views\Main\LeftMainContent.axaml.cs">
<DependentUpon>LeftMainContent.axaml</DependentUpon>
</Compile>
<Compile Update="Views\Main\MainContent.axaml.cs">
<DependentUpon>MainContent.axaml</DependentUpon>
</Compile>
<Compile Update="Views\Styles\ButtonDemoCtrl.axaml.cs">
<DependentUpon>ButtonDemoCtrl.axaml</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Update="Lang.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Lang.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Langs\Lang.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Lang.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Remove="Resources\Themes\Basic\Geometries.xaml" />
<AvaloniaXaml Include="Resources\Themes\Basic\Geometries.xaml" />
</ItemGroup>
</Project>

View File

@ -1,15 +1,14 @@
<Window xmlns="https://github.com/avaloniaui"
<Window x:Class="HandyControlDemo.MainWindow"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:views="clr-namespace:HandyControlDemo.Views"
mc:Ignorable="d"
d:DesignWidth="800"
d:DesignHeight="450"
Title="HandyControlDemo"
Background="{DynamicResource SecondaryRegionBrush}"
Icon="/Resources/Img/icon.ico"
x:Class="HandyControlDemo.MainWindow"
WindowStartupLocation="CenterScreen"
Title="HandyControlDemo">
<views:MainWindowContent/>
d:DesignHeight="800"
d:DesignWidth="1400"
Icon="/Resources/Img/icon.ico">
<ContentControl Name="ControlMain" />
</Window>

View File

@ -1,11 +1,19 @@
using Avalonia.Controls;
using Avalonia.Interactivity;
using HandyControlDemo.UserControl;
using HandyControlDemo.ViewModel;
namespace HandyControlDemo;
public partial class MainWindow : Window
{
public MainWindow()
public MainWindow() => InitializeComponent();
protected override void OnLoaded(RoutedEventArgs e)
{
InitializeComponent();
base.OnLoaded(e);
DataContext = ViewModelLocator.Instance.Main;
ControlMain.Content = new MainWindowContent();
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="About" xml:space="preserve">
<value>Sobre</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>Afegir un element</value>
</data>
<data name="AnimationPath" xml:space="preserve">
<value>AnimationPath</value>
</data>
<data name="AppClosingTip" xml:space="preserve">
<value>L'aplicació es minimitzarà a la barra d'icones en lloc de tancar-la</value>
</data>
<data name="Ask" xml:space="preserve">
<value>Preguntar</value>
</data>
<data name="Badge" xml:space="preserve">
<value>Badge</value>
</data>
<data name="BasicInfo" xml:space="preserve">
<value>Empleneu la informació bàsica</value>
</data>
<data name="BasicLayout" xml:space="preserve">
<value>Disseny bàsic</value>
</data>
<data name="Blink" xml:space="preserve">
<value>Parpellejant</value>
</data>
<data name="Blog" xml:space="preserve">
<value>Blog</value>
</data>
<data name="Border" xml:space="preserve">
<value>Border</value>
</data>
<data name="Brush" xml:space="preserve">
<value>Brush</value>
</data>
<data name="Button" xml:space="preserve">
<value>Button</value>
</data>
<data name="ButtonCustom" xml:space="preserve">
<value>Botó personalitzat</value>
</data>
<data name="ButtonGroup" xml:space="preserve">
<value>ButtonGroup</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>Calendari</value>
</data>
<data name="CalendarWithClock" xml:space="preserve">
<value>CalendarWithClock</value>
</data>
<data name="Card" xml:space="preserve">
<value>CalendarWithClock</value>
</data>
<data name="Carousel" xml:space="preserve">
<value>Carousel</value>
</data>
<data name="Second" xml:space="preserve">
<value>Seg</value>
</data>
<data name="Selected" xml:space="preserve">
<value>Seleccionat</value>
</data>
<data name="Shield" xml:space="preserve">
<value>Shield</value>
</data>
<data name="Tag" xml:space="preserve">
<value>Tag</value>
</data>
<data name="Text" xml:space="preserve">
<value>Text</value>
</data>
<data name="TextBlock" xml:space="preserve">
<value>Text</value>
</data>
<data name="TextBox" xml:space="preserve">
<value>TextBox</value>
</data>
<data name="TextDialog" xml:space="preserve">
<value>TextDialog</value>
</data>
<data name="TimeBar" xml:space="preserve">
<value>TimeBar</value>
</data>
<data name="TimePicker" xml:space="preserve">
<value>TimePicker</value>
</data>
<data name="Tools" xml:space="preserve">
<value>Eines</value>
</data>
<data name="ToolBar" xml:space="preserve">
<value>ToolBar</value>
</data>
<data name="Transfer" xml:space="preserve">
<value>Transferir</value>
</data>
<data name="TreeView" xml:space="preserve">
<value>TreeView</value>
</data>
<data name="Vsix" xml:space="preserve">
<value>Vsix</value>
</data>
<data name="WaterfallPanel" xml:space="preserve">
<value>WaterfallPanel</value>
</data>
<data name="RadioButton" xml:space="preserve">
<value>RadioButton</value>
</data>
<data name="RangeSlider" xml:space="preserve">
<value>RangeSlider</value>
</data>
<data name="Rate" xml:space="preserve">
<value>Rate</value>
</data>
<data name="Register" xml:space="preserve">
<value>Registrar</value>
</data>
<data name="RelativePanel" xml:space="preserve">
<value>RelativePanel</value>
</data>
<data name="SearchBar" xml:space="preserve">
<value>SearchBar</value>
</data>
<data name="ScrollViewer" xml:space="preserve">
<value>ScrollViewer</value>
</data>
<data name="Screenshot" xml:space="preserve">
<value>Screenshot</value>
</data>
<data name="RunningBlock" xml:space="preserve">
<value>RunningBlock</value>
</data>
<data name="RichTextBox" xml:space="preserve">
<value>RichTextBox</value>
</data>
<data name="RepeatButton" xml:space="preserve">
<value>RepeatButton</value>
</data>
<data name="RemoveItem" xml:space="preserve">
<value>Esborrar un element</value>
</data>
<data name="QQGroup" xml:space="preserve">
<value>QQ Group</value>
</data>
<data name="Project" xml:space="preserve">
<value>Projecte</value>
</data>
<data name="PropertyGrid" xml:space="preserve">
<value>PropertyGrid</value>
</data>
<data name="ProgressButton" xml:space="preserve">
<value>ProgressButton</value>
</data>
<data name="ProgressBar" xml:space="preserve">
<value>ProgressBar</value>
</data>
<data name="PreviewSlider" xml:space="preserve">
<value>PreviewSlider</value>
</data>
<data name="Poptip" xml:space="preserve">
<value>Poptip</value>
</data>
<data name="PinBox" xml:space="preserve">
<value>PinBox</value>
</data>
<data name="PasswordBox" xml:space="preserve">
<value>PasswordBox</value>
</data>
<data name="Pagination" xml:space="preserve">
<value>Pagination</value>
</data>
<data name="OutlineText" xml:space="preserve">
<value>OutlineText</value>
</data>
<data name="Ok" xml:space="preserve">
<value>Acceptar</value>
</data>
<data name="Off" xml:space="preserve">
<value>Off</value>
</data>
<data name="On" xml:space="preserve">
<value>On</value>
</data>
<data name="NumericUpDown" xml:space="preserve">
<value>NumericUpDown</value>
</data>
<data name="NotifyIcon" xml:space="preserve">
<value>NotifyIcon</value>
</data>
<data name="Next" xml:space="preserve">
<value>Següent</value>
</data>
<data name="NewWindow" xml:space="preserve">
<value>Nova finestra</value>
</data>
<data name="Name" xml:space="preserve">
<value>Nom</value>
</data>
<data name="MessageBox" xml:space="preserve">
<value>MessageBox</value>
</data>
<data name="Menu" xml:space="preserve">
<value>Menu</value>
</data>
<data name="Magnifier" xml:space="preserve">
<value>Magnifier</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Carregant</value>
</data>
<data name="ListView" xml:space="preserve">
<value>ListView</value>
</data>
<data name="ListBox" xml:space="preserve">
<value>ListBox</value>
</data>
<data name="Label" xml:space="preserve">
<value>Label</value>
</data>
<data name="Info" xml:space="preserve">
<value>Informació</value>
</data>
<data name="Index" xml:space="preserve">
<value>Índex</value>
</data>
<data name="ImageSelector" xml:space="preserve">
<value>ImageSelector</value>
</data>
<data name="ImageBrowser" xml:space="preserve">
<value>ImageBrowser</value>
</data>
<data name="ImageBlock" xml:space="preserve">
<value>ImageBlock</value>
</data>
<data name="HoneycombPanel" xml:space="preserve">
<value>HoneycombPanel</value>
</data>
<data name="HatchBrushGenerator" xml:space="preserve">
<value>HatchBrushGenerator</value>
</data>
<data name="Ignore" xml:space="preserve">
<value>Ignorar</value>
</data>
<data name="Growl" xml:space="preserve">
<value>Growl</value>
</data>
<data name="Groups" xml:space="preserve">
<value>Grups</value>
</data>
<data name="GroupBox" xml:space="preserve">
<value>GroupBox</value>
</data>
<data name="Grid" xml:space="preserve">
<value>Grid</value>
</data>
<data name="Gravatar" xml:space="preserve">
<value>Gravatar</value>
</data>
<data name="GotoTop" xml:space="preserve">
<value>GotoTop</value>
</data>
<data name="GifImage" xml:space="preserve">
<value>GifImage</value>
</data>
<data name="Geometry" xml:space="preserve">
<value>Geometry</value>
</data>
<data name="Frame" xml:space="preserve">
<value>Frame</value>
</data>
<data name="FlowDocumentScrollViewer" xml:space="preserve">
<value>FlowDocumentScrollViewer</value>
</data>
<data name="FlowDocumentReader" xml:space="preserve">
<value>FlowDocumentReader</value>
</data>
<data name="FlowDocumentPageViewer" xml:space="preserve">
<value>FlowDocumentPageViewer</value>
</data>
<data name="FlowDocument" xml:space="preserve">
<value>FlowDocument</value>
</data>
<data name="FloatingBlock" xml:space="preserve">
<value>FloatingBlock</value>
</data>
<data name="FlipClock" xml:space="preserve">
<value>FlipClock</value>
</data>
<data name="FlexPanel" xml:space="preserve">
<value>FlexPanel</value>
</data>
<data name="Fatal" xml:space="preserve">
<value>Fatal</value>
</data>
<data name="Expander" xml:space="preserve">
<value>Expander</value>
</data>
<data name="Exit" xml:space="preserve">
<value>Sortir</value>
</data>
<data name="Error" xml:space="preserve">
<value>Error</value>
</data>
<data name="Email" xml:space="preserve">
<value>Email</value>
</data>
<data name="Effects" xml:space="preserve">
<value>Efectes</value>
</data>
<data name="Drawer" xml:space="preserve">
<value>Drawer</value>
</data>
<data name="Documentation" xml:space="preserve">
<value>Documentació</value>
</data>
<data name="Divider" xml:space="preserve">
<value>Divider</value>
</data>
<data name="DataGrid" xml:space="preserve">
<value>DataGrid</value>
</data>
<data name="DatePicker" xml:space="preserve">
<value>DatePicker</value>
</data>
<data name="DateTimePicker" xml:space="preserve">
<value>DateTimePicker</value>
</data>
<data name="Danger" xml:space="preserve">
<value>Perill</value>
</data>
<data name="CoverView" xml:space="preserve">
<value>CoverView</value>
</data>
<data name="CoverFlow" xml:space="preserve">
<value>CoverFlow</value>
</data>
<data name="Controls" xml:space="preserve">
<value>Controls</value>
</data>
<data name="CompareSlider" xml:space="preserve">
<value>CompareSlider</value>
</data>
<data name="ChatBubble" xml:space="preserve">
<value>ChatBubble</value>
</data>
<data name="CheckBox" xml:space="preserve">
<value>CheckBox</value>
</data>
<data name="CheckComboBox" xml:space="preserve">
<value>CheckComboBox</value>
</data>
<data name="CirclePanel" xml:space="preserve">
<value>CirclePanel</value>
</data>
<data name="Window" xml:space="preserve">
<value>Finestra</value>
</data>
<data name="Repository" xml:space="preserve">
<value>Repositori</value>
</data>
<data name="Comment" xml:space="preserve">
<value>Comentari</value>
</data>
<data name="Reply" xml:space="preserve">
<value>Respondre</value>
</data>
<data name="PleaseWait" xml:space="preserve">
<value>Si us plau espera...</value>
</data>
<data name="PlsEnterEmail" xml:space="preserve">
<value>si us plau, introduïu el correu electrònic</value>
</data>
<data name="Step" xml:space="preserve">
<value>Pas</value>
</data>
<data name="Try2CloseApp" xml:space="preserve">
<value>Voleu tancar l'aplicació?</value>
</data>
<data name="InteractiveDialog" xml:space="preserve">
<value>Diàleg interactiu</value>
</data>
<data name="Dialog" xml:space="preserve">
<value>Diàleg</value>
</data>
<data name="Visibility" xml:space="preserve">
<value>Visibilitat</value>
</data>
<data name="OpenPanel" xml:space="preserve">
<value>Obriu el Panell</value>
</data>
<data name="IsNotPhone" xml:space="preserve">
<value>No és un número de telèfon</value>
</data>
<data name="Slider" xml:space="preserve">
<value>Slider</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Prompt</value>
</data>
<data name="GrowlDemo" xml:space="preserve">
<value>Demostració de Growl</value>
</data>
<data name="Contributors" xml:space="preserve">
<value>Col·laboradors</value>
</data>
<data name="Chatroom" xml:space="preserve">
<value>Sala de chat</value>
</data>
<data name="PleaseInput" xml:space="preserve">
<value>Si us plau introduïu ...</value>
</data>
<data name="ComboBox" xml:space="preserve">
<value>ComboBox</value>
</data>
<data name="Primary" xml:space="preserve">
<value>Primari</value>
</data>
<data name="Default" xml:space="preserve">
<value>Defecte</value>
</data>
<data name="OpenGlowWindow" xml:space="preserve">
<value>Obre glowWindow</value>
</data>
<data name="ToggleButton" xml:space="preserve">
<value>ToggleButton</value>
</data>
<data name="PlsEnterContent" xml:space="preserve">
<value>Si us plau introduïu contingut</value>
</data>
<data name="DialogDemo" xml:space="preserve">
<value>Demostració del diàleg</value>
</data>
<data name="Common" xml:space="preserve">
<value>Comú</value>
</data>
<data name="SideMenu" xml:space="preserve">
<value>SideMenu</value>
</data>
<data name="Sprite" xml:space="preserve">
<value>Sprite</value>
</data>
<data name="TabControl" xml:space="preserve">
<value>TabControl</value>
</data>
<data name="SplitButton" xml:space="preserve">
<value>SplitButton</value>
</data>
<data name="Clock" xml:space="preserve">
<value>Clock</value>
</data>
<data name="StepBar" xml:space="preserve">
<value>StepBar</value>
</data>
<data name="PlsEnterKey" xml:space="preserve">
<value>Introduïu una paraula clau</value>
</data>
<data name="ComingSoon" xml:space="preserve">
<value>Pròximament</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Esborrar</value>
</data>
<data name="DragHere" xml:space="preserve">
<value>Arrossega aquí</value>
</data>
<data name="UploadFile" xml:space="preserve">
<value>Penja el document</value>
</data>
<data name="Recommendation" xml:space="preserve">
<value>Recomanació</value>
</data>
<data name="ShowInCurrentWindow" xml:space="preserve">
<value>Mostra a la finestra actual</value>
</data>
<data name="Click2Count" xml:space="preserve">
<value>Feu clic per comptar</value>
</data>
<data name="ShowRowNumber" xml:space="preserve">
<value>ShowRowNumber</value>
</data>
<data name="ChangeLangAsk" xml:space="preserve">
<value>Si es reinicia per canviar l'idioma?</value>
</data>
<data name="OpenNoNonClientAreaDragableWindow" xml:space="preserve">
<value>Obriu una finestra sense NonClientArea que es pot arrossegar</value>
</data>
<data name="OpenCustomMessageWindow" xml:space="preserve">
<value>obre la finestra de missatges personalitzats</value>
</data>
<data name="OpenCustomContentWindow" xml:space="preserve">
<value>obre la finestra de contingut personalitzat</value>
</data>
<data name="OpenMouseFollowWindow" xml:space="preserve">
<value>obriu la finestra de seguiment del ratolí</value>
</data>
<data name="Complete" xml:space="preserve">
<value>Completat</value>
</data>
<data name="Notification" xml:space="preserve">
<value>Notificació</value>
</data>
<data name="TextDialogWithTimer" xml:space="preserve">
<value>TextDialog amb temporitzador</value>
</data>
<data name="OpenNativeCommonWindow" xml:space="preserve">
<value>Obre la finestra comuna nativa</value>
</data>
<data name="SendNotification" xml:space="preserve">
<value>Enviar notificació</value>
</data>
<data name="OpenNavigationWindow" xml:space="preserve">
<value>Obre la finestra de navegació</value>
</data>
<data name="ColorPicker" xml:space="preserve">
<value>ColorPicker</value>
</data>
<data name="Success" xml:space="preserve">
<value>Èxit</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Cerca una cadena localitzada similar a "{0}".</value>
</data>
<data name="Warning" xml:space="preserve">
<value>Avís</value>
</data>
<data name="Title" xml:space="preserve">
<value>Títol</value>
</data>
<data name="OpenSprite" xml:space="preserve">
<value>Obrir sprite</value>
</data>
<data name="StaysOpen" xml:space="preserve">
<value>Es manté obert</value>
</data>
<data name="ResponsiveLayout" xml:space="preserve">
<value>Disseny responsiu</value>
</data>
<data name="ColumnOffset" xml:space="preserve">
<value>Desplaçament de columna</value>
</data>
<data name="HybridLayout" xml:space="preserve">
<value>Disseny híbrid</value>
</data>
<data name="ColumnSpacing" xml:space="preserve">
<value>Espai entre columnes</value>
</data>
<data name="ShowInMainWindow" xml:space="preserve">
<value>Mostra a la finestra principal</value>
</data>
<data name="ContentDemoStr" xml:space="preserve">
<value>Aquest és el contingut</value>
</data>
<data name="TitleDemoStr1" xml:space="preserve">
<value>Aquest és el títol</value>
</data>
<data name="OpenBlurWindow" xml:space="preserve">
<value>obriu la finestra borrosa</value>
</data>
<data name="OpenMessageWindow" xml:space="preserve">
<value>obre la finestra de missatge</value>
</data>
<data name="TitleDemoStr2" xml:space="preserve">
<value>Cal omplir aquest ítem</value>
</data>
<data name="TitleDemoStr3" xml:space="preserve">
<value>El títol es troba a lesquerra</value>
</data>
<data name="SubTitle" xml:space="preserve">
<value>Subtítol</value>
</data>
<data name="OpenImageBrowser" xml:space="preserve">
<value>Feu clic per obrir el navegador d'imatges</value>
</data>
<data name="GrowlInfo" xml:space="preserve">
<value>Avui fa un bon dia ~~~</value>
</data>
<data name="GrowlSuccess" xml:space="preserve">
<value>El fitxer s'ha desat correctament!</value>
</data>
<data name="GrowlWarning" xml:space="preserve">
<value>L'espai en el disc aviat s'esgotarà!</value>
</data>
<data name="StartScreenshot" xml:space="preserve">
<value>Inicia la captura de pantalla</value>
</data>
<data name="GrowlFatal" xml:space="preserve">
<value>L'aplicació s'ha bloquejat</value>
</data>
<data name="Styles" xml:space="preserve">
<value>Estils</value>
</data>
<data name="GrowlAsk" xml:space="preserve">
<value>S'ha detectat una versió nova. Voleu actualitzar-la?</value>
</data>
<data name="TextDialogInControl" xml:space="preserve">
<value>TextDialog(In control)</value>
</data>
<data name="PushToTalk" xml:space="preserve">
<value>Premeu per parlar</value>
</data>
<data name="UploadStr" xml:space="preserve">
<value>Pujant; Pujant en progress</value>
</data>
<data name="GrowlError" xml:space="preserve">
<value>Connexió fallida. comproveu la vostra xarxa!</value>
</data>
<data name="Prev" xml:space="preserve">
<value>Anterior</value>
</data>
<data name="OpenCustomNonClientAreaWindow" xml:space="preserve">
<value>obre la finestra personalitzada de Non-client Area</value>
</data>
<data name="PracticalDemos" xml:space="preserve">
<value>Demostracions pràctiques</value>
</data>
<data name="PoptipPositionStr" xml:space="preserve">
<value>top-start;top;top-end;right-start;right;right-end;bottom-end;bottom;bottom-start;left-end;left;left-start</value>
</data>
<data name="Demo" xml:space="preserve">
<value>Demostració</value>
</data>
<data name="Doc_cn" xml:space="preserve">
<value>Document xinès</value>
</data>
<data name="Doc_en" xml:space="preserve">
<value>Document anglès</value>
</data>
<data name="OpenCommonWindow" xml:space="preserve">
<value>obre la finestra comuna</value>
</data>
<data name="Website" xml:space="preserve">
<value>Lloc web</value>
</data>
<data name="RightClickHere" xml:space="preserve">
<value>Feu clic dret aquí</value>
</data>
<data name="Remark" xml:space="preserve">
<value>Observació</value>
</data>
<data name="Type" xml:space="preserve">
<value>Tipus</value>
</data>
<data name="Morphing Animation" xml:space="preserve">
<value>Morphing Animation</value>
</data>
<data name="TransitioningContentControl" xml:space="preserve">
<value>TransitioningContentControl</value>
</data>
<data name="OpenTouchDragMoveWindow" xml:space="preserve">
<value>open touch drag move window</value>
</data>
<data name="UniformSpacingPanel" xml:space="preserve">
<value>UniformSpacingPanel</value>
</data>
<data name="Misc" xml:space="preserve">
<value>Misc</value>
</data>
<data name="Interacting" xml:space="preserve">
<value>Interacting</value>
</data>
<data name="DataEntry" xml:space="preserve">
<value>Data Entry</value>
</data>
<data name="DataDisplay" xml:space="preserve">
<value>Data Display</value>
</data>
<data name="Navigation" xml:space="preserve">
<value>Navigation</value>
</data>
<data name="Layout" xml:space="preserve">
<value>Layout</value>
</data>
<data name="Feedback" xml:space="preserve">
<value>Feedback</value>
</data>
<data name="Empty" xml:space="preserve">
<value>Empty</value>
</data>
<data name="ElementGroup" xml:space="preserve">
<value>ElementGroup</value>
</data>
<data name="AutoCompleteTextBox" xml:space="preserve">
<value>AutoCompleteTextBox</value>
</data>
<data name="Watermark" xml:space="preserve">
<value>Watermark</value>
</data>
<data name="CloseMainWindowDialog" xml:space="preserve">
<value>Close main window dialog</value>
</data>
</root>

View File

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Controls" xml:space="preserve">
<value>Ovládací prvky</value>
</data>
<data name="Styles" xml:space="preserve">
<value>Style</value>
</data>
<data name="Growl" xml:space="preserve">
<value>Growl</value>
</data>
<data name="GrowlInfo" xml:space="preserve">
<value>Dnes je krásný den~~~</value>
</data>
<data name="GrowlSuccess" xml:space="preserve">
<value>Soubor se úspěšně uložil!</value>
</data>
<data name="GrowlWarning" xml:space="preserve">
<value>Na disku dochází místo!</value>
</data>
<data name="GrowlError" xml:space="preserve">
<value>Připojení se nezdařilo. Prosím zkontrolujte vaše síťové připojení.</value>
</data>
<data name="GrowlFatal" xml:space="preserve">
<value>Aplikace se neočekávaně ukončila~~~</value>
</data>
<data name="GrowlAsk" xml:space="preserve">
<value>Nalezena nová verze! Chcete aplikaci aktualizovat?</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Načítání</value>
</data>
<data name="ImageBrowser" xml:space="preserve">
<value>ImageBrowser</value>
</data>
<data name="ColorPicker" xml:space="preserve">
<value>ColorPicker</value>
</data>
<data name="Carousel" xml:space="preserve">
<value>Carousel</value>
</data>
<data name="CompareSlider" xml:space="preserve">
<value>CompareSlider</value>
</data>
<data name="TimeBar" xml:space="preserve">
<value>TimeBar</value>
</data>
<data name="Expander" xml:space="preserve">
<value>Expander</value>
</data>
<data name="Pagination" xml:space="preserve">
<value>Pagination</value>
</data>
<data name="OpenImageBrowser" xml:space="preserve">
<value>Klikni pro otevření prohlížeče obrázků</value>
</data>
<data name="ProgressBar" xml:space="preserve">
<value>ProgressBar</value>
</data>
<data name="AnimationPath" xml:space="preserve">
<value>AnimationPath</value>
</data>
<data name="Button" xml:space="preserve">
<value>Button</value>
</data>
<data name="ToggleButton" xml:space="preserve">
<value>ToggleButton</value>
</data>
<data name="TabControl" xml:space="preserve">
<value>TabControl</value>
</data>
<data name="CheckBox" xml:space="preserve">
<value>CheckBox</value>
</data>
<data name="TextBlock" xml:space="preserve">
<value>TextBlock</value>
</data>
<data name="Default" xml:space="preserve">
<value>Default</value>
</data>
<data name="Primary" xml:space="preserve">
<value>Primary</value>
</data>
<data name="Info" xml:space="preserve">
<value>Info</value>
</data>
<data name="Warning" xml:space="preserve">
<value>Warning</value>
</data>
<data name="Danger" xml:space="preserve">
<value>Danger</value>
</data>
<data name="ButtonCustom" xml:space="preserve">
<value>Custom button</value>
</data>
<data name="Title" xml:space="preserve">
<value>Titulek</value>
</data>
<data name="StepBar" xml:space="preserve">
<value>StepBar</value>
</data>
<data name="Prev" xml:space="preserve">
<value>Předchozí</value>
</data>
<data name="Next" xml:space="preserve">
<value>Další</value>
</data>
<data name="Register" xml:space="preserve">
<value>Registrovat</value>
</data>
<data name="BasicInfo" xml:space="preserve">
<value>Vyplňte základní údaje</value>
</data>
<data name="UploadFile" xml:space="preserve">
<value>Nahraj soubor</value>
</data>
<data name="Complete" xml:space="preserve">
<value>Complete</value>
</data>
<data name="Clock" xml:space="preserve">
<value>Clock</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>Calendar</value>
</data>
<data name="DatePicker" xml:space="preserve">
<value>DatePicker</value>
</data>
<data name="TimePicker" xml:space="preserve">
<value>TimePicker</value>
</data>
<data name="TextBox" xml:space="preserve">
<value>TextBox</value>
</data>
<data name="ContentDemoStr" xml:space="preserve">
<value>Toto je obsah</value>
</data>
<data name="TitleDemoStr1" xml:space="preserve">
<value>Toto je titulek</value>
</data>
<data name="TitleDemoStr2" xml:space="preserve">
<value>Toto pole musí být vyplněno</value>
</data>
<data name="PlsEnterContent" xml:space="preserve">
<value>Zadej obsah</value>
</data>
<data name="TitleDemoStr3" xml:space="preserve">
<value>Titulek vlevo</value>
</data>
<data name="Text" xml:space="preserve">
<value>Text</value>
</data>
<data name="SubTitle" xml:space="preserve">
<value>Podtitulek</value>
</data>
<data name="PasswordBox" xml:space="preserve">
<value>PasswordBox</value>
</data>
<data name="CirclePanel" xml:space="preserve">
<value>CirclePanel</value>
</data>
<data name="ComboBox" xml:space="preserve">
<value>ComboBox</value>
</data>
<data name="NumericUpDown" xml:space="preserve">
<value>NumericUpDown</value>
</data>
<data name="DataGrid" xml:space="preserve">
<value>DataGrid</value>
</data>
<data name="Index" xml:space="preserve">
<value>ID</value>
</data>
<data name="Name" xml:space="preserve">
<value>Název</value>
</data>
<data name="Type" xml:space="preserve">
<value>Type</value>
</data>
<data name="Remark" xml:space="preserve">
<value>Remark</value>
</data>
<data name="Selected" xml:space="preserve">
<value>Vybrané</value>
</data>
<data name="ListBox" xml:space="preserve">
<value>ListBox</value>
</data>
<data name="TreeView" xml:space="preserve">
<value>TreeView</value>
</data>
<data name="ScrollViewer" xml:space="preserve">
<value>ScrollViewer</value>
</data>
<data name="Window" xml:space="preserve">
<value>Window</value>
</data>
<data name="Menu" xml:space="preserve">
<value>Menu</value>
</data>
<data name="RightClickHere" xml:space="preserve">
<value>Klikni pravým tlačítkem myši</value>
</data>
<data name="RadioButton" xml:space="preserve">
<value>RadioButton</value>
</data>
<data name="OpenMessageWindow" xml:space="preserve">
<value>otevřít message window</value>
</data>
<data name="OpenCommonWindow" xml:space="preserve">
<value>otevři vlastní window</value>
</data>
<data name="OpenCustomNonClientAreaWindow" xml:space="preserve">
<value>otevři vlastní Non-client Area window</value>
</data>
<data name="OpenMouseFollowWindow" xml:space="preserve">
<value>otevřít mouse follow window</value>
</data>
<data name="OpenCustomContentWindow" xml:space="preserve">
<value>otevři vlastní content window</value>
</data>
<data name="Ignore" xml:space="preserve">
<value>Ignorovat</value>
</data>
<data name="Error" xml:space="preserve">
<value>Error</value>
</data>
<data name="Ask" xml:space="preserve">
<value>Ask</value>
</data>
<data name="Fatal" xml:space="preserve">
<value>Fatal</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Clear</value>
</data>
<data name="ChangeLangAsk" xml:space="preserve">
<value>Chcete pro změnu jazyka aplikaci znovu spustit?</value>
</data>
<data name="About" xml:space="preserve">
<value>Informace</value>
</data>
<data name="Repository" xml:space="preserve">
<value>Repozitář</value>
</data>
<data name="Email" xml:space="preserve">
<value>Email</value>
</data>
<data name="Chatroom" xml:space="preserve">
<value>Chatroom</value>
</data>
<data name="Blog" xml:space="preserve">
<value>Blog</value>
</data>
<data name="Brush" xml:space="preserve">
<value>Brush</value>
</data>
<data name="PreviewSlider" xml:space="preserve">
<value>PreviewSlider</value>
</data>
<data name="Contributors" xml:space="preserve">
<value>Přispěvatelé</value>
</data>
<data name="Slider" xml:space="preserve">
<value>Slider</value>
</data>
<data name="IsNotPhone" xml:space="preserve">
<value>Toto není číslo telefonu</value>
</data>
<data name="PlsEnterEmail" xml:space="preserve">
<value>Zadej e-mail</value>
</data>
<data name="Step" xml:space="preserve">
<value>Krok</value>
</data>
<data name="CalendarWithClock" xml:space="preserve">
<value>CalendarWithClock</value>
</data>
<data name="DateTimePicker" xml:space="preserve">
<value>DateTimePicker</value>
</data>
<data name="GroupBox" xml:space="preserve">
<value>GroupBox</value>
</data>
<data name="ListView" xml:space="preserve">
<value>ListView</value>
</data>
<data name="RichTextBox" xml:space="preserve">
<value>RichTextBox</value>
</data>
<data name="ToolBar" xml:space="preserve">
<value>ToolBar</value>
</data>
<data name="Common" xml:space="preserve">
<value>Common</value>
</data>
<data name="ShowRowNumber" xml:space="preserve">
<value>Zobrazit číslo řádku</value>
</data>
<data name="SearchBar" xml:space="preserve">
<value>SearchBar</value>
</data>
<data name="Tag" xml:space="preserve">
<value>Tag</value>
</data>
<data name="GifImage" xml:space="preserve">
<value>GifImage</value>
</data>
<data name="OutlineText" xml:space="preserve">
<value>OutlineText</value>
</data>
<data name="QQGroup" xml:space="preserve">
<value>Skupina QQ</value>
</data>
<data name="FlipClock" xml:space="preserve">
<value>FlipClock</value>
</data>
<data name="OpenBlurWindow" xml:space="preserve">
<value>Otevři BlurWindow</value>
</data>
<data name="Rate" xml:space="preserve">
<value>Rate</value>
</data>
<data name="Shield" xml:space="preserve">
<value>Shield</value>
</data>
<data name="WaterfallPanel" xml:space="preserve">
<value>WaterfallPanel</value>
</data>
<data name="Groups" xml:space="preserve">
<value>Groups</value>
</data>
<data name="CoverView" xml:space="preserve">
<value>CoverView</value>
</data>
<data name="CoverFlow" xml:space="preserve">
<value>CoverFlow</value>
</data>
<data name="PlsEnterKey" xml:space="preserve">
<value>Zadej klíčkové slovo</value>
</data>
<data name="OpenNoNonClientAreaDragableWindow" xml:space="preserve">
<value>neotevírat Non-client Area dragable window</value>
</data>
<data name="DragHere" xml:space="preserve">
<value>Zde potáhni</value>
</data>
<data name="MessageBox" xml:space="preserve">
<value>MessageBox</value>
</data>
<data name="ProgressButton" xml:space="preserve">
<value>ProgressButton</value>
</data>
<data name="UploadStr" xml:space="preserve">
<value>Nahrát;Nahrávání</value>
</data>
<data name="OpenCustomMessageWindow" xml:space="preserve">
<value>otevři vlastní message window</value>
</data>
<data name="Transfer" xml:space="preserve">
<value>Transfer</value>
</data>
<data name="ChatBubble" xml:space="preserve">
<value>ChatBubble</value>
</data>
<data name="PushToTalk" xml:space="preserve">
<value>Klikni pro mluvení (PTT)</value>
</data>
<data name="Second" xml:space="preserve">
<value>sek.</value>
</data>
<data name="Label" xml:space="preserve">
<value>Label</value>
</data>
<data name="GotoTop" xml:space="preserve">
<value>GotoTop</value>
</data>
<data name="NotifyIcon" xml:space="preserve">
<value>NotifyIcon</value>
</data>
<data name="Badge" xml:space="preserve">
<value>Badge</value>
</data>
<data name="Gravatar" xml:space="preserve">
<value>Gravatar</value>
</data>
<data name="ComingSoon" xml:space="preserve">
<value>Již brzy</value>
</data>
<data name="Comment" xml:space="preserve">
<value>Comment</value>
</data>
<data name="Reply" xml:space="preserve">
<value>Odpovědět</value>
</data>
<data name="Dialog" xml:space="preserve">
<value>Dialog</value>
</data>
<data name="TextDialog" xml:space="preserve">
<value>TextDialog</value>
</data>
<data name="PleaseWait" xml:space="preserve">
<value>Počkejte prosím...</value>
</data>
<data name="GrowlDemo" xml:space="preserve">
<value>Growl demo</value>
</data>
<data name="NewWindow" xml:space="preserve">
<value>Nové okno</value>
</data>
<data name="Visibility" xml:space="preserve">
<value>Visibility</value>
</data>
<data name="Blink" xml:space="preserve">
<value>Blikej</value>
</data>
<data name="Exit" xml:space="preserve">
<value>Exit</value>
</data>
<data name="OpenPanel" xml:space="preserve">
<value>Otevři Panel</value>
</data>
<data name="AppClosingTip" xml:space="preserve">
<value>Ikona na hlavním panelu je otevřená a skryje okno místo zavření programu</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Nápověda</value>
</data>
<data name="Try2CloseApp" xml:space="preserve">
<value>Opravdu chcete ukončit aplikaci?</value>
</data>
<data name="InteractiveDialog" xml:space="preserve">
<value>Interaktivní dialogové okno</value>
</data>
<data name="Ok" xml:space="preserve">
<value>Ok</value>
</data>
<data name="PleaseInput" xml:space="preserve">
<value>Prosím vložte...</value>
</data>
<data name="Click2Count" xml:space="preserve">
<value>Připočti</value>
</data>
<data name="RepeatButton" xml:space="preserve">
<value>RepeatButton</value>
</data>
<data name="DialogDemo" xml:space="preserve">
<value>Ukázka dialogového okna</value>
</data>
<data name="ShowInCurrentWindow" xml:space="preserve">
<value>Zobrazit v tomto okně</value>
</data>
<data name="ShowInMainWindow" xml:space="preserve">
<value>Zobrazit v hlavním okně</value>
</data>
<data name="SideMenu" xml:space="preserve">
<value>SideMenu</value>
</data>
<data name="Grid" xml:space="preserve">
<value>Grid</value>
</data>
<data name="BasicLayout" xml:space="preserve">
<value>Základní rozložení</value>
</data>
<data name="ColumnSpacing" xml:space="preserve">
<value>Rozestupy sloupců</value>
</data>
<data name="HybridLayout" xml:space="preserve">
<value>Hybridní rozložení</value>
</data>
<data name="ColumnOffset" xml:space="preserve">
<value>Odsazení sloupců</value>
</data>
<data name="ResponsiveLayout" xml:space="preserve">
<value>Responzivní rozložení</value>
</data>
<data name="Border" xml:space="preserve">
<value>Border</value>
</data>
<data name="Poptip" xml:space="preserve">
<value>Poptip</value>
</data>
<data name="Recommendation" xml:space="preserve">
<value>Doporučení</value>
</data>
<data name="Project" xml:space="preserve">
<value>Projekt</value>
</data>
<data name="RangeSlider" xml:space="preserve">
<value>RangeSlider</value>
</data>
<data name="RelativePanel" xml:space="preserve">
<value>RelativePanel</value>
</data>
<data name="On" xml:space="preserve">
<value>Zap.</value>
</data>
<data name="Off" xml:space="preserve">
<value>Vyp.</value>
</data>
<data name="ButtonGroup" xml:space="preserve">
<value>ButtonGroup</value>
</data>
<data name="Card" xml:space="preserve">
<value>Card</value>
</data>
<data name="TextDialogWithTimer" xml:space="preserve">
<value>TextDialog s časovačem</value>
</data>
<data name="Magnifier" xml:space="preserve">
<value>Magnifier</value>
</data>
<data name="ImageBlock" xml:space="preserve">
<value>ImageBlock</value>
</data>
<data name="RunningBlock" xml:space="preserve">
<value>RunningBlock</value>
</data>
<data name="HoneycombPanel" xml:space="preserve">
<value>HoneycombPanel</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>Přidat položku</value>
</data>
<data name="RemoveItem" xml:space="preserve">
<value>Smazat prvek</value>
</data>
<data name="Sprite" xml:space="preserve">
<value>Sprite</value>
</data>
<data name="OpenSprite" xml:space="preserve">
<value>Otevři Sprite</value>
</data>
<data name="Notification" xml:space="preserve">
<value>Notification</value>
</data>
<data name="SendNotification" xml:space="preserve">
<value>Poslat upozornění</value>
</data>
<data name="StaysOpen" xml:space="preserve">
<value>Nechat otevřené</value>
</data>
<data name="FloatingBlock" xml:space="preserve">
<value>FloatingBlock</value>
</data>
<data name="SplitButton" xml:space="preserve">
<value>SplitButton</value>
</data>
<data name="Tools" xml:space="preserve">
<value>Tools</value>
</data>
<data name="HatchBrushGenerator" xml:space="preserve">
<value>HatchBrushGenerator</value>
</data>
<data name="Morphing Animation" xml:space="preserve">
<value>Morphing Animation</value>
</data>
<data name="Divider" xml:space="preserve">
<value>Divider</value>
</data>
<data name="PoptipPositionStr" xml:space="preserve">
<value>top-start;top;top-end;right-start;right;right-end;bottom-end;bottom;bottom-start;left-end;left;left-start</value>
</data>
<data name="TransitioningContentControl" xml:space="preserve">
<value>TransitioningContentControl</value>
</data>
<data name="Drawer" xml:space="preserve">
<value>Drawer</value>
</data>
<data name="Documentation" xml:space="preserve">
<value>Dokumentace</value>
</data>
<data name="Effects" xml:space="preserve">
<value>Efekty</value>
</data>
<data name="Website" xml:space="preserve">
<value>Webová stránka</value>
</data>
<data name="Vsix" xml:space="preserve">
<value>Vsix</value>
</data>
<data name="Doc_en" xml:space="preserve">
<value>Anglická dokumentace</value>
</data>
<data name="Doc_cn" xml:space="preserve">
<value>Čínská dokumentace</value>
</data>
<data name="Demo" xml:space="preserve">
<value>Ukázka</value>
</data>
<data name="PinBox" xml:space="preserve">
<value>PinBox</value>
</data>
<data name="FlowDocumentScrollViewer" xml:space="preserve">
<value>FlowDocumentScrollViewer</value>
</data>
<data name="OpenGlowWindow" xml:space="preserve">
<value>Otevři GlowWindow</value>
</data>
<data name="FlowDocument" xml:space="preserve">
<value>FlowDocument</value>
</data>
<data name="FlowDocumentPageViewer" xml:space="preserve">
<value>FlowDocumentPageViewer</value>
</data>
<data name="FlowDocumentReader" xml:space="preserve">
<value>FlowDocumentReader</value>
</data>
<data name="OpenNativeCommonWindow" xml:space="preserve">
<value>Otevřít NativeCommonWindow</value>
</data>
<data name="OpenNavigationWindow" xml:space="preserve">
<value>Otevřít NavigationWindow</value>
</data>
<data name="Frame" xml:space="preserve">
<value>Frame</value>
</data>
<data name="PracticalDemos" xml:space="preserve">
<value>Praktické ukázky</value>
</data>
<data name="StartScreenshot" xml:space="preserve">
<value>Udělej snímek obrazovky</value>
</data>
<data name="Screenshot" xml:space="preserve">
<value>Screenshot</value>
</data>
<data name="TextDialogInControl" xml:space="preserve">
<value>TextDialog (uvnitř ovládacího prvku)</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Hledám řetězec podobný „{0}“.</value>
</data>
<data name="PropertyGrid" xml:space="preserve">
<value>PropertyGrid</value>
</data>
<data name="ImageSelector" xml:space="preserve">
<value>ImageSelector</value>
</data>
<data name="Geometry" xml:space="preserve">
<value>Geometry</value>
</data>
<data name="CheckComboBox" xml:space="preserve">
<value>CheckComboBox</value>
</data>
<data name="FlexPanel" xml:space="preserve">
<value>FlexPanel</value>
</data>
<data name="OpenTouchDragMoveWindow" xml:space="preserve">
<value>Otevři TouchDragMoveWindow</value>
</data>
<data name="UniformSpacingPanel" xml:space="preserve">
<value>UniformSpacingPanel</value>
</data>
<data name="Misc" xml:space="preserve">
<value>Různé</value>
</data>
<data name="Interacting" xml:space="preserve">
<value>Interacting</value>
</data>
<data name="DataEntry" xml:space="preserve">
<value>Zadání dat</value>
</data>
<data name="DataDisplay" xml:space="preserve">
<value>Zobrazení dat</value>
</data>
<data name="Navigation" xml:space="preserve">
<value>Navigation</value>
</data>
<data name="Layout" xml:space="preserve">
<value>Layout</value>
</data>
<data name="Feedback" xml:space="preserve">
<value>Zpětná vazba</value>
</data>
<data name="Success" xml:space="preserve">
<value>Success</value>
</data>
<data name="Empty" xml:space="preserve">
<value>Empty</value>
</data>
<data name="ElementGroup" xml:space="preserve">
<value>ElementGroup</value>
</data>
<data name="AutoCompleteTextBox" xml:space="preserve">
<value>AutoCompleteTextBox</value>
</data>
<data name="Watermark" xml:space="preserve">
<value>Watermark</value>
</data>
<data name="CloseMainWindowDialog" xml:space="preserve">
<value>Close main window dialog</value>
</data>
</root>

View File

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Controls" xml:space="preserve">
<value>Controls</value>
</data>
<data name="Styles" xml:space="preserve">
<value>Styles</value>
</data>
<data name="Growl" xml:space="preserve">
<value>Growl</value>
</data>
<data name="GrowlInfo" xml:space="preserve">
<value>It's a nice day today~~~</value>
</data>
<data name="GrowlSuccess" xml:space="preserve">
<value>File saved successfully!</value>
</data>
<data name="GrowlWarning" xml:space="preserve">
<value>Disk space is running out!</value>
</data>
<data name="GrowlError" xml:space="preserve">
<value>Connection failed. please check your network!</value>
</data>
<data name="GrowlFatal" xml:space="preserve">
<value>The program has crashed~~~</value>
</data>
<data name="GrowlAsk" xml:space="preserve">
<value>A new version has been detected!Do you want to update?</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Loading</value>
</data>
<data name="ImageBrowser" xml:space="preserve">
<value>ImageBrowser</value>
</data>
<data name="ColorPicker" xml:space="preserve">
<value>ColorPicker</value>
</data>
<data name="Carousel" xml:space="preserve">
<value>Carousel</value>
</data>
<data name="CompareSlider" xml:space="preserve">
<value>CompareSlider</value>
</data>
<data name="TimeBar" xml:space="preserve">
<value>TimeBar</value>
</data>
<data name="Expander" xml:space="preserve">
<value>Expander</value>
</data>
<data name="Pagination" xml:space="preserve">
<value>Pagination</value>
</data>
<data name="OpenImageBrowser" xml:space="preserve">
<value>Click to open image browser</value>
</data>
<data name="ProgressBar" xml:space="preserve">
<value>ProgressBar</value>
</data>
<data name="AnimationPath" xml:space="preserve">
<value>AnimationPath</value>
</data>
<data name="Button" xml:space="preserve">
<value>Button</value>
</data>
<data name="ToggleButton" xml:space="preserve">
<value>ToggleButton</value>
</data>
<data name="TabControl" xml:space="preserve">
<value>TabControl</value>
</data>
<data name="CheckBox" xml:space="preserve">
<value>CheckBox</value>
</data>
<data name="TextBlock" xml:space="preserve">
<value>TextBlock</value>
</data>
<data name="Default" xml:space="preserve">
<value>Default</value>
</data>
<data name="Primary" xml:space="preserve">
<value>Primary</value>
</data>
<data name="Success" xml:space="preserve">
<value>Success</value>
</data>
<data name="Info" xml:space="preserve">
<value>Info</value>
</data>
<data name="Warning" xml:space="preserve">
<value>Warning</value>
</data>
<data name="Danger" xml:space="preserve">
<value>Danger</value>
</data>
<data name="ButtonCustom" xml:space="preserve">
<value>Custom button</value>
</data>
<data name="Title" xml:space="preserve">
<value>Title</value>
</data>
<data name="StepBar" xml:space="preserve">
<value>StepBar</value>
</data>
<data name="Prev" xml:space="preserve">
<value>Prev</value>
</data>
<data name="Next" xml:space="preserve">
<value>Next</value>
</data>
<data name="Register" xml:space="preserve">
<value>Register</value>
</data>
<data name="BasicInfo" xml:space="preserve">
<value>Fill in the basic information</value>
</data>
<data name="UploadFile" xml:space="preserve">
<value>Upload file</value>
</data>
<data name="Complete" xml:space="preserve">
<value>Complete</value>
</data>
<data name="Clock" xml:space="preserve">
<value>Clock</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>Calendar</value>
</data>
<data name="DatePicker" xml:space="preserve">
<value>DatePicker</value>
</data>
<data name="TimePicker" xml:space="preserve">
<value>TimePicker</value>
</data>
<data name="TextBox" xml:space="preserve">
<value>TextBox</value>
</data>
<data name="ContentDemoStr" xml:space="preserve">
<value>This is the content</value>
</data>
<data name="TitleDemoStr1" xml:space="preserve">
<value>This is the title</value>
</data>
<data name="TitleDemoStr2" xml:space="preserve">
<value>This item must be filled in</value>
</data>
<data name="PlsEnterContent" xml:space="preserve">
<value>Please enter content</value>
</data>
<data name="TitleDemoStr3" xml:space="preserve">
<value>The title is on the left</value>
</data>
<data name="Text" xml:space="preserve">
<value>Text</value>
</data>
<data name="SubTitle" xml:space="preserve">
<value>Subtitle</value>
</data>
<data name="PasswordBox" xml:space="preserve">
<value>PasswordBox</value>
</data>
<data name="CirclePanel" xml:space="preserve">
<value>CirclePanel</value>
</data>
<data name="ComboBox" xml:space="preserve">
<value>ComboBox</value>
</data>
<data name="NumericUpDown" xml:space="preserve">
<value>NumericUpDown</value>
</data>
<data name="DataGrid" xml:space="preserve">
<value>DataGrid</value>
</data>
<data name="Index" xml:space="preserve">
<value>Index</value>
</data>
<data name="Name" xml:space="preserve">
<value>Name</value>
</data>
<data name="Type" xml:space="preserve">
<value>Type</value>
</data>
<data name="Remark" xml:space="preserve">
<value>Remark</value>
</data>
<data name="Selected" xml:space="preserve">
<value>Selected</value>
</data>
<data name="ListBox" xml:space="preserve">
<value>ListBox</value>
</data>
<data name="TreeView" xml:space="preserve">
<value>TreeView</value>
</data>
<data name="ScrollViewer" xml:space="preserve">
<value>ScrollViewer</value>
</data>
<data name="Window" xml:space="preserve">
<value>Window</value>
</data>
<data name="Menu" xml:space="preserve">
<value>Menu</value>
</data>
<data name="RightClickHere" xml:space="preserve">
<value>Right click here</value>
</data>
<data name="RadioButton" xml:space="preserve">
<value>RadioButton</value>
</data>
<data name="OpenMessageWindow" xml:space="preserve">
<value>open message window</value>
</data>
<data name="OpenCommonWindow" xml:space="preserve">
<value>open common window</value>
</data>
<data name="OpenCustomNonClientAreaWindow" xml:space="preserve">
<value>open custom Non-client Area window</value>
</data>
<data name="OpenMouseFollowWindow" xml:space="preserve">
<value>open mouse follow window</value>
</data>
<data name="OpenCustomContentWindow" xml:space="preserve">
<value>open custom content window</value>
</data>
<data name="Ignore" xml:space="preserve">
<value>Ignore</value>
</data>
<data name="Error" xml:space="preserve">
<value>Error</value>
</data>
<data name="Ask" xml:space="preserve">
<value>Ask</value>
</data>
<data name="Fatal" xml:space="preserve">
<value>Fatal</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Clear</value>
</data>
<data name="ChangeLangAsk" xml:space="preserve">
<value>Whether to restart to change the language?</value>
</data>
<data name="About" xml:space="preserve">
<value>About</value>
</data>
<data name="Repository" xml:space="preserve">
<value>Repository</value>
</data>
<data name="Email" xml:space="preserve">
<value>Email</value>
</data>
<data name="Chatroom" xml:space="preserve">
<value>Chatroom</value>
</data>
<data name="Blog" xml:space="preserve">
<value>Blog</value>
</data>
<data name="Brush" xml:space="preserve">
<value>Brush</value>
</data>
<data name="PreviewSlider" xml:space="preserve">
<value>PreviewSlider</value>
</data>
<data name="Contributors" xml:space="preserve">
<value>Contributors</value>
</data>
<data name="Slider" xml:space="preserve">
<value>Slider</value>
</data>
<data name="IsNotPhone" xml:space="preserve">
<value>It's not a phone number</value>
</data>
<data name="PlsEnterEmail" xml:space="preserve">
<value>please enter email</value>
</data>
<data name="Step" xml:space="preserve">
<value>Step</value>
</data>
<data name="CalendarWithClock" xml:space="preserve">
<value>CalendarWithClock</value>
</data>
<data name="DateTimePicker" xml:space="preserve">
<value>DateTimePicker</value>
</data>
<data name="GroupBox" xml:space="preserve">
<value>GroupBox</value>
</data>
<data name="ListView" xml:space="preserve">
<value>ListView</value>
</data>
<data name="RichTextBox" xml:space="preserve">
<value>RichTextBox</value>
</data>
<data name="ToolBar" xml:space="preserve">
<value>ToolBar</value>
</data>
<data name="Common" xml:space="preserve">
<value>Common</value>
</data>
<data name="ShowRowNumber" xml:space="preserve">
<value>ShowRowNumber</value>
</data>
<data name="SearchBar" xml:space="preserve">
<value>SearchBar</value>
</data>
<data name="Tag" xml:space="preserve">
<value>Tag</value>
</data>
<data name="GifImage" xml:space="preserve">
<value>GifImage</value>
</data>
<data name="OutlineText" xml:space="preserve">
<value>OutlineText</value>
</data>
<data name="QQGroup" xml:space="preserve">
<value>QQ Group</value>
</data>
<data name="FlipClock" xml:space="preserve">
<value>FlipClock</value>
</data>
<data name="OpenBlurWindow" xml:space="preserve">
<value>open blur window</value>
</data>
<data name="Rate" xml:space="preserve">
<value>Rate</value>
</data>
<data name="Shield" xml:space="preserve">
<value>Shield</value>
</data>
<data name="WaterfallPanel" xml:space="preserve">
<value>WaterfallPanel</value>
</data>
<data name="Groups" xml:space="preserve">
<value>Groups</value>
</data>
<data name="CoverView" xml:space="preserve">
<value>CoverView</value>
</data>
<data name="CoverFlow" xml:space="preserve">
<value>CoverFlow</value>
</data>
<data name="PlsEnterKey" xml:space="preserve">
<value>Please input a keyword</value>
</data>
<data name="OpenNoNonClientAreaDragableWindow" xml:space="preserve">
<value>open no Non-client Area dragable window</value>
</data>
<data name="DragHere" xml:space="preserve">
<value>Drag here</value>
</data>
<data name="MessageBox" xml:space="preserve">
<value>MessageBox</value>
</data>
<data name="ProgressButton" xml:space="preserve">
<value>ProgressButton</value>
</data>
<data name="UploadStr" xml:space="preserve">
<value>Upload;Uploading</value>
</data>
<data name="OpenCustomMessageWindow" xml:space="preserve">
<value>open custom message window</value>
</data>
<data name="Transfer" xml:space="preserve">
<value>Transfer</value>
</data>
<data name="ChatBubble" xml:space="preserve">
<value>ChatBubble</value>
</data>
<data name="PushToTalk" xml:space="preserve">
<value>Push to talk</value>
</data>
<data name="Second" xml:space="preserve">
<value>Sec</value>
</data>
<data name="Label" xml:space="preserve">
<value>Label</value>
</data>
<data name="GotoTop" xml:space="preserve">
<value>GotoTop</value>
</data>
<data name="NotifyIcon" xml:space="preserve">
<value>NotifyIcon</value>
</data>
<data name="Badge" xml:space="preserve">
<value>Badge</value>
</data>
<data name="Gravatar" xml:space="preserve">
<value>Gravatar</value>
</data>
<data name="ComingSoon" xml:space="preserve">
<value>Coming Soon</value>
</data>
<data name="Comment" xml:space="preserve">
<value>Comment</value>
</data>
<data name="Reply" xml:space="preserve">
<value>Reply</value>
</data>
<data name="Dialog" xml:space="preserve">
<value>Dialog</value>
</data>
<data name="TextDialog" xml:space="preserve">
<value>TextDialog</value>
</data>
<data name="PleaseWait" xml:space="preserve">
<value>Please wait...</value>
</data>
<data name="GrowlDemo" xml:space="preserve">
<value>Growl demo</value>
</data>
<data name="NewWindow" xml:space="preserve">
<value>New window</value>
</data>
<data name="Visibility" xml:space="preserve">
<value>Visibility</value>
</data>
<data name="Blink" xml:space="preserve">
<value>Blink</value>
</data>
<data name="Exit" xml:space="preserve">
<value>Exit</value>
</data>
<data name="OpenPanel" xml:space="preserve">
<value>Open Panel</value>
</data>
<data name="AppClosingTip" xml:space="preserve">
<value>The tray icon is open and will hide the window instead of closing the program</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Prompt</value>
</data>
<data name="Try2CloseApp" xml:space="preserve">
<value>Try to close app?</value>
</data>
<data name="InteractiveDialog" xml:space="preserve">
<value>Interactive Dialog</value>
</data>
<data name="Ok" xml:space="preserve">
<value>Ok</value>
</data>
<data name="PleaseInput" xml:space="preserve">
<value>Please input...</value>
</data>
<data name="Click2Count" xml:space="preserve">
<value>Click to count</value>
</data>
<data name="RepeatButton" xml:space="preserve">
<value>RepeatButton</value>
</data>
<data name="DialogDemo" xml:space="preserve">
<value>Dialog demo</value>
</data>
<data name="ShowInCurrentWindow" xml:space="preserve">
<value>Show in the current window</value>
</data>
<data name="ShowInMainWindow" xml:space="preserve">
<value>Show in the main window</value>
</data>
<data name="SideMenu" xml:space="preserve">
<value>SideMenu</value>
</data>
<data name="Grid" xml:space="preserve">
<value>Grid</value>
</data>
<data name="BasicLayout" xml:space="preserve">
<value>Basic layout</value>
</data>
<data name="ColumnSpacing" xml:space="preserve">
<value>Column spacing</value>
</data>
<data name="HybridLayout" xml:space="preserve">
<value>Hybrid layout</value>
</data>
<data name="ColumnOffset" xml:space="preserve">
<value>Column offset</value>
</data>
<data name="ResponsiveLayout" xml:space="preserve">
<value>Responsive layout</value>
</data>
<data name="Border" xml:space="preserve">
<value>Border</value>
</data>
<data name="Poptip" xml:space="preserve">
<value>Poptip</value>
</data>
<data name="Recommendation" xml:space="preserve">
<value>Recommendation</value>
</data>
<data name="Project" xml:space="preserve">
<value>Project</value>
</data>
<data name="RangeSlider" xml:space="preserve">
<value>RangeSlider</value>
</data>
<data name="RelativePanel" xml:space="preserve">
<value>RelativePanel</value>
</data>
<data name="On" xml:space="preserve">
<value>On</value>
</data>
<data name="Off" xml:space="preserve">
<value>Off</value>
</data>
<data name="ButtonGroup" xml:space="preserve">
<value>ButtonGroup</value>
</data>
<data name="Card" xml:space="preserve">
<value>Card</value>
</data>
<data name="TextDialogWithTimer" xml:space="preserve">
<value>TextDialog with timer</value>
</data>
<data name="Magnifier" xml:space="preserve">
<value>Magnifier</value>
</data>
<data name="ImageBlock" xml:space="preserve">
<value>ImageBlock</value>
</data>
<data name="RunningBlock" xml:space="preserve">
<value>RunningBlock</value>
</data>
<data name="HoneycombPanel" xml:space="preserve">
<value>HoneycombPanel</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>Add an item</value>
</data>
<data name="RemoveItem" xml:space="preserve">
<value>Remove an item</value>
</data>
<data name="Sprite" xml:space="preserve">
<value>Sprite</value>
</data>
<data name="OpenSprite" xml:space="preserve">
<value>Open sprite</value>
</data>
<data name="Notification" xml:space="preserve">
<value>Notification</value>
</data>
<data name="SendNotification" xml:space="preserve">
<value>Send notification</value>
</data>
<data name="StaysOpen" xml:space="preserve">
<value>Stays open</value>
</data>
<data name="FloatingBlock" xml:space="preserve">
<value>FloatingBlock</value>
</data>
<data name="SplitButton" xml:space="preserve">
<value>SplitButton</value>
</data>
<data name="Tools" xml:space="preserve">
<value>Tools</value>
</data>
<data name="HatchBrushGenerator" xml:space="preserve">
<value>HatchBrushGenerator</value>
</data>
<data name="Morphing Animation" xml:space="preserve">
<value>Morphing Animation</value>
</data>
<data name="Divider" xml:space="preserve">
<value>Divider</value>
</data>
<data name="PoptipPositionStr" xml:space="preserve">
<value>top-start;top;top-end;right-start;right;right-end;bottom-end;bottom;bottom-start;left-end;left;left-start</value>
</data>
<data name="TransitioningContentControl" xml:space="preserve">
<value>TransitioningContentControl</value>
</data>
<data name="Drawer" xml:space="preserve">
<value>Drawer</value>
</data>
<data name="Documentation" xml:space="preserve">
<value>Documentation</value>
</data>
<data name="Effects" xml:space="preserve">
<value>Effects</value>
</data>
<data name="Website" xml:space="preserve">
<value>Website</value>
</data>
<data name="Vsix" xml:space="preserve">
<value>Vsix</value>
</data>
<data name="Doc_en" xml:space="preserve">
<value>English document</value>
</data>
<data name="Doc_cn" xml:space="preserve">
<value>Chinese document</value>
</data>
<data name="Demo" xml:space="preserve">
<value>Demo</value>
</data>
<data name="PinBox" xml:space="preserve">
<value>PinBox</value>
</data>
<data name="FlowDocumentScrollViewer" xml:space="preserve">
<value>FlowDocumentScrollViewer</value>
</data>
<data name="OpenGlowWindow" xml:space="preserve">
<value>Open glowWindow</value>
</data>
<data name="FlowDocument" xml:space="preserve">
<value>FlowDocument</value>
</data>
<data name="FlowDocumentPageViewer" xml:space="preserve">
<value>FlowDocumentPageViewer</value>
</data>
<data name="FlowDocumentReader" xml:space="preserve">
<value>FlowDocumentReader</value>
</data>
<data name="OpenNativeCommonWindow" xml:space="preserve">
<value>Open native common window</value>
</data>
<data name="OpenNavigationWindow" xml:space="preserve">
<value>Open navigation window</value>
</data>
<data name="Frame" xml:space="preserve">
<value>Frame</value>
</data>
<data name="PracticalDemos" xml:space="preserve">
<value>Practical demos</value>
</data>
<data name="StartScreenshot" xml:space="preserve">
<value>Start screenshot</value>
</data>
<data name="Screenshot" xml:space="preserve">
<value>Screenshot</value>
</data>
<data name="TextDialogInControl" xml:space="preserve">
<value>TextDialog(In control)</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="PropertyGrid" xml:space="preserve">
<value>PropertyGrid</value>
</data>
<data name="ImageSelector" xml:space="preserve">
<value>ImageSelector</value>
</data>
<data name="Geometry" xml:space="preserve">
<value>Geometry</value>
</data>
<data name="CheckComboBox" xml:space="preserve">
<value>CheckComboBox</value>
</data>
<data name="FlexPanel" xml:space="preserve">
<value>FlexPanel</value>
</data>
<data name="OpenTouchDragMoveWindow" xml:space="preserve">
<value>open touch drag move window</value>
</data>
<data name="UniformSpacingPanel" xml:space="preserve">
<value>UniformSpacingPanel</value>
</data>
<data name="Misc" xml:space="preserve">
<value>Misc</value>
</data>
<data name="Interacting" xml:space="preserve">
<value>Interacting</value>
</data>
<data name="DataEntry" xml:space="preserve">
<value>Data Entry</value>
</data>
<data name="DataDisplay" xml:space="preserve">
<value>Data Display</value>
</data>
<data name="Navigation" xml:space="preserve">
<value>Navigation</value>
</data>
<data name="Layout" xml:space="preserve">
<value>Layout</value>
</data>
<data name="Feedback" xml:space="preserve">
<value>Feedback</value>
</data>
<data name="Empty" xml:space="preserve">
<value>Empty</value>
</data>
<data name="ElementGroup" xml:space="preserve">
<value>ElementGroup</value>
</data>
<data name="AutoCompleteTextBox" xml:space="preserve">
<value>AutoCompleteTextBox</value>
</data>
<data name="Watermark" xml:space="preserve">
<value>Watermark</value>
</data>
<data name="CloseMainWindowDialog" xml:space="preserve">
<value>Close main window dialog</value>
</data>
</root>

View File

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Controls" xml:space="preserve">
<value>Controles</value>
</data>
<data name="Styles" xml:space="preserve">
<value>Estilos</value>
</data>
<data name="Growl" xml:space="preserve">
<value>Growl</value>
</data>
<data name="GrowlInfo" xml:space="preserve">
<value>Hoy es un lindo día~~~</value>
</data>
<data name="GrowlSuccess" xml:space="preserve">
<value>¡Archivo guardado exitosamente!</value>
</data>
<data name="GrowlWarning" xml:space="preserve">
<value>¡No hay más espacio disponible en el disco!</value>
</data>
<data name="GrowlError" xml:space="preserve">
<value>La conexión falló. ¡Por favor revisa tu conexión a internet!</value>
</data>
<data name="GrowlFatal" xml:space="preserve">
<value>El programa se ha detenido de forma inesperada</value>
</data>
<data name="GrowlAsk" xml:space="preserve">
<value>Se ha detectado una nueva versión del programa. ¿Desea actualizarlo?</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Cargando</value>
</data>
<data name="ImageBrowser" xml:space="preserve">
<value>ImageBrowser</value>
</data>
<data name="ColorPicker" xml:space="preserve">
<value>ColorPicker</value>
</data>
<data name="Carousel" xml:space="preserve">
<value>Carousel</value>
</data>
<data name="CompareSlider" xml:space="preserve">
<value>CompareSlider</value>
</data>
<data name="TimeBar" xml:space="preserve">
<value>TimeBar</value>
</data>
<data name="Expander" xml:space="preserve">
<value>Expander</value>
</data>
<data name="Pagination" xml:space="preserve">
<value>Pagination</value>
</data>
<data name="OpenImageBrowser" xml:space="preserve">
<value>Pulse para seleccionar una imagen</value>
</data>
<data name="ProgressBar" xml:space="preserve">
<value>ProgressBar</value>
</data>
<data name="AnimationPath" xml:space="preserve">
<value>AnimationPath</value>
</data>
<data name="Button" xml:space="preserve">
<value>Button</value>
</data>
<data name="ToggleButton" xml:space="preserve">
<value>ToggleButton</value>
</data>
<data name="TabControl" xml:space="preserve">
<value>TabControl</value>
</data>
<data name="CheckBox" xml:space="preserve">
<value>CheckBox</value>
</data>
<data name="TextBlock" xml:space="preserve">
<value>TextBlock</value>
</data>
<data name="Default" xml:space="preserve">
<value>Por defecto</value>
</data>
<data name="Primary" xml:space="preserve">
<value>Primario</value>
</data>
<data name="Success" xml:space="preserve">
<value>Éxito</value>
</data>
<data name="Info" xml:space="preserve">
<value>Info</value>
</data>
<data name="Warning" xml:space="preserve">
<value>Advertencia</value>
</data>
<data name="Danger" xml:space="preserve">
<value>Error</value>
</data>
<data name="ButtonCustom" xml:space="preserve">
<value>Personalizado</value>
</data>
<data name="Title" xml:space="preserve">
<value>Título</value>
</data>
<data name="StepBar" xml:space="preserve">
<value>StepBar</value>
</data>
<data name="Prev" xml:space="preserve">
<value>Anterior</value>
</data>
<data name="Next" xml:space="preserve">
<value>Siguiente</value>
</data>
<data name="Register" xml:space="preserve">
<value>Registrarse</value>
</data>
<data name="BasicInfo" xml:space="preserve">
<value>Completar sus datos</value>
</data>
<data name="UploadFile" xml:space="preserve">
<value>Subir archivo</value>
</data>
<data name="Complete" xml:space="preserve">
<value>Completado</value>
</data>
<data name="Clock" xml:space="preserve">
<value>Reloj</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>Calendario</value>
</data>
<data name="DatePicker" xml:space="preserve">
<value>DatePicker</value>
</data>
<data name="TimePicker" xml:space="preserve">
<value>TimePicker</value>
</data>
<data name="TextBox" xml:space="preserve">
<value>TextBox</value>
</data>
<data name="ContentDemoStr" xml:space="preserve">
<value>Este es el contenido</value>
</data>
<data name="TitleDemoStr1" xml:space="preserve">
<value>Este es el título</value>
</data>
<data name="TitleDemoStr2" xml:space="preserve">
<value>Este campo es obligatorio</value>
</data>
<data name="PlsEnterContent" xml:space="preserve">
<value>Por favor complete el campo</value>
</data>
<data name="TitleDemoStr3" xml:space="preserve">
<value>Este título está a la izquierda</value>
</data>
<data name="Text" xml:space="preserve">
<value>Texto</value>
</data>
<data name="SubTitle" xml:space="preserve">
<value>Subtitulo</value>
</data>
<data name="PasswordBox" xml:space="preserve">
<value>PasswordBox</value>
</data>
<data name="CirclePanel" xml:space="preserve">
<value>CirclePanel</value>
</data>
<data name="ComboBox" xml:space="preserve">
<value>ComboBox</value>
</data>
<data name="NumericUpDown" xml:space="preserve">
<value>NumericUpDown</value>
</data>
<data name="DataGrid" xml:space="preserve">
<value>DataGrid</value>
</data>
<data name="Index" xml:space="preserve">
<value>Index</value>
</data>
<data name="Name" xml:space="preserve">
<value>Name</value>
</data>
<data name="Type" xml:space="preserve">
<value>Type</value>
</data>
<data name="Remark" xml:space="preserve">
<value>Remark</value>
</data>
<data name="Selected" xml:space="preserve">
<value>Selected</value>
</data>
<data name="ListBox" xml:space="preserve">
<value>ListBox</value>
</data>
<data name="TreeView" xml:space="preserve">
<value>TreeView</value>
</data>
<data name="ScrollViewer" xml:space="preserve">
<value>ScrollViewer</value>
</data>
<data name="Window" xml:space="preserve">
<value>Window</value>
</data>
<data name="Menu" xml:space="preserve">
<value>Menu</value>
</data>
<data name="RightClickHere" xml:space="preserve">
<value>Haga click derecho</value>
</data>
<data name="RadioButton" xml:space="preserve">
<value>RadioButton</value>
</data>
<data name="OpenMessageWindow" xml:space="preserve">
<value>Abrir ventana con mensaje</value>
</data>
<data name="OpenCommonWindow" xml:space="preserve">
<value>Abrir ventana común</value>
</data>
<data name="OpenCustomNonClientAreaWindow" xml:space="preserve">
<value>Abrir ventana sin bordes personalizada</value>
</data>
<data name="OpenMouseFollowWindow" xml:space="preserve">
<value>Abrir ventana que sigue al mouse</value>
</data>
<data name="OpenCustomContentWindow" xml:space="preserve">
<value>Abrir ventana personalizada</value>
</data>
<data name="Ignore" xml:space="preserve">
<value>Ignorar</value>
</data>
<data name="Error" xml:space="preserve">
<value>Error</value>
</data>
<data name="Ask" xml:space="preserve">
<value>Pregunta</value>
</data>
<data name="Fatal" xml:space="preserve">
<value>Fatal</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Borrar</value>
</data>
<data name="ChangeLangAsk" xml:space="preserve">
<value>¿Desea reiniciar para cambiar el idioma?</value>
</data>
<data name="About" xml:space="preserve">
<value>Acerca de</value>
</data>
<data name="Repository" xml:space="preserve">
<value>Repositorio</value>
</data>
<data name="Email" xml:space="preserve">
<value>Email</value>
</data>
<data name="Chatroom" xml:space="preserve">
<value>Chatroom</value>
</data>
<data name="Blog" xml:space="preserve">
<value>Blog</value>
</data>
<data name="Brush" xml:space="preserve">
<value>Brush</value>
</data>
<data name="PreviewSlider" xml:space="preserve">
<value>PreviewSlider</value>
</data>
<data name="Contributors" xml:space="preserve">
<value>Contribuyentes</value>
</data>
<data name="Slider" xml:space="preserve">
<value>Slider</value>
</data>
<data name="IsNotPhone" xml:space="preserve">
<value>Número de teléfono inválido</value>
</data>
<data name="PlsEnterEmail" xml:space="preserve">
<value>Por favor ingrese un email válido</value>
</data>
<data name="Step" xml:space="preserve">
<value>Step</value>
</data>
<data name="CalendarWithClock" xml:space="preserve">
<value>CalendarWithClock</value>
</data>
<data name="DateTimePicker" xml:space="preserve">
<value>DateTimePicker</value>
</data>
<data name="GroupBox" xml:space="preserve">
<value>GroupBox</value>
</data>
<data name="ListView" xml:space="preserve">
<value>ListView</value>
</data>
<data name="RichTextBox" xml:space="preserve">
<value>RichTextBox</value>
</data>
<data name="ToolBar" xml:space="preserve">
<value>ToolBar</value>
</data>
<data name="Common" xml:space="preserve">
<value>Common</value>
</data>
<data name="ShowRowNumber" xml:space="preserve">
<value>ShowRowNumber</value>
</data>
<data name="SearchBar" xml:space="preserve">
<value>SearchBar</value>
</data>
<data name="Tag" xml:space="preserve">
<value>Tag</value>
</data>
<data name="GifImage" xml:space="preserve">
<value>GifImage</value>
</data>
<data name="OutlineText" xml:space="preserve">
<value>OutlineText</value>
</data>
<data name="QQGroup" xml:space="preserve">
<value>QQ Group</value>
</data>
<data name="FlipClock" xml:space="preserve">
<value>FlipClock</value>
</data>
<data name="OpenBlurWindow" xml:space="preserve">
<value>Abrir ventana difuminada</value>
</data>
<data name="Rate" xml:space="preserve">
<value>Rate</value>
</data>
<data name="Shield" xml:space="preserve">
<value>Shield</value>
</data>
<data name="WaterfallPanel" xml:space="preserve">
<value>WaterfallPanel</value>
</data>
<data name="Groups" xml:space="preserve">
<value>Groups</value>
</data>
<data name="CoverView" xml:space="preserve">
<value>CoverView</value>
</data>
<data name="CoverFlow" xml:space="preserve">
<value>CoverFlow</value>
</data>
<data name="PlsEnterKey" xml:space="preserve">
<value>Buscar</value>
</data>
<data name="OpenNoNonClientAreaDragableWindow" xml:space="preserve">
<value>Abrir ventana arrastrable sin bordes</value>
</data>
<data name="DragHere" xml:space="preserve">
<value>Suelte aquí</value>
</data>
<data name="MessageBox" xml:space="preserve">
<value>MessageBox</value>
</data>
<data name="ProgressButton" xml:space="preserve">
<value>ProgressButton</value>
</data>
<data name="UploadStr" xml:space="preserve">
<value>Cargar archivo;Cargando archivo</value>
</data>
<data name="OpenCustomMessageWindow" xml:space="preserve">
<value>Abrir ventana de mensaje personalizada</value>
</data>
<data name="Transfer" xml:space="preserve">
<value>Transfer</value>
</data>
<data name="ChatBubble" xml:space="preserve">
<value>ChatBubble</value>
</data>
<data name="PushToTalk" xml:space="preserve">
<value>Pulse para hablar</value>
</data>
<data name="Second" xml:space="preserve">
<value>Seg</value>
</data>
<data name="Label" xml:space="preserve">
<value>Label</value>
</data>
<data name="GotoTop" xml:space="preserve">
<value>Ir arriba</value>
</data>
<data name="NotifyIcon" xml:space="preserve">
<value>NotifyIcon</value>
</data>
<data name="Badge" xml:space="preserve">
<value>Badge</value>
</data>
<data name="Gravatar" xml:space="preserve">
<value>Gravatar</value>
</data>
<data name="ComingSoon" xml:space="preserve">
<value>Próximamente</value>
</data>
<data name="Comment" xml:space="preserve">
<value>Commentario</value>
</data>
<data name="Reply" xml:space="preserve">
<value>Respuesta</value>
</data>
<data name="Dialog" xml:space="preserve">
<value>Dialog</value>
</data>
<data name="TextDialog" xml:space="preserve">
<value>TextDialog</value>
</data>
<data name="PleaseWait" xml:space="preserve">
<value>Por favor aguarde...</value>
</data>
<data name="GrowlDemo" xml:space="preserve">
<value>Growl demo</value>
</data>
<data name="NewWindow" xml:space="preserve">
<value>Nueva ventana</value>
</data>
<data name="Visibility" xml:space="preserve">
<value>Visibility</value>
</data>
<data name="Blink" xml:space="preserve">
<value>Blink</value>
</data>
<data name="Exit" xml:space="preserve">
<value>Salir</value>
</data>
<data name="OpenPanel" xml:space="preserve">
<value>Abrir panel</value>
</data>
<data name="AppClosingTip" xml:space="preserve">
<value>El icono de la bandeja está abierto y ocultará la ventana en lugar de cerrar el programa.</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Prompt</value>
</data>
<data name="Try2CloseApp" xml:space="preserve">
<value>¿Intentar cerrar la aplicación?</value>
</data>
<data name="InteractiveDialog" xml:space="preserve">
<value>Diálogo interactivo</value>
</data>
<data name="Ok" xml:space="preserve">
<value>Aceptar</value>
</data>
<data name="PleaseInput" xml:space="preserve">
<value>Por favor ingrese un texto...</value>
</data>
<data name="Click2Count" xml:space="preserve">
<value>Click para incrementar</value>
</data>
<data name="RepeatButton" xml:space="preserve">
<value>RepeatButton</value>
</data>
<data name="DialogDemo" xml:space="preserve">
<value>Dialog demo</value>
</data>
<data name="ShowInCurrentWindow" xml:space="preserve">
<value>Mostrar en esta ventana</value>
</data>
<data name="ShowInMainWindow" xml:space="preserve">
<value>Mostrar en la ventana principal</value>
</data>
<data name="SideMenu" xml:space="preserve">
<value>SideMenu</value>
</data>
<data name="Grid" xml:space="preserve">
<value>Grid</value>
</data>
<data name="BasicLayout" xml:space="preserve">
<value>Layout básico</value>
</data>
<data name="ColumnSpacing" xml:space="preserve">
<value>Columnas espaciadas</value>
</data>
<data name="HybridLayout" xml:space="preserve">
<value>Layout Híbrido</value>
</data>
<data name="ColumnOffset" xml:space="preserve">
<value>Columnas con offset</value>
</data>
<data name="ResponsiveLayout" xml:space="preserve">
<value>Layout Responsivo</value>
</data>
<data name="Border" xml:space="preserve">
<value>Border</value>
</data>
<data name="Poptip" xml:space="preserve">
<value>Poptip</value>
</data>
<data name="Recommendation" xml:space="preserve">
<value>Recommendation</value>
</data>
<data name="Project" xml:space="preserve">
<value>Project</value>
</data>
<data name="RangeSlider" xml:space="preserve">
<value>RangeSlider</value>
</data>
<data name="RelativePanel" xml:space="preserve">
<value>RelativePanel</value>
</data>
<data name="On" xml:space="preserve">
<value>On</value>
</data>
<data name="Off" xml:space="preserve">
<value>Off</value>
</data>
<data name="ButtonGroup" xml:space="preserve">
<value>ButtonGroup</value>
</data>
<data name="Card" xml:space="preserve">
<value>Card</value>
</data>
<data name="TextDialogWithTimer" xml:space="preserve">
<value>TextDialog with timer</value>
</data>
<data name="Magnifier" xml:space="preserve">
<value>Magnifier</value>
</data>
<data name="ImageBlock" xml:space="preserve">
<value>ImageBlock</value>
</data>
<data name="RunningBlock" xml:space="preserve">
<value>RunningBlock</value>
</data>
<data name="HoneycombPanel" xml:space="preserve">
<value>HoneycombPanel</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>Add an item</value>
</data>
<data name="RemoveItem" xml:space="preserve">
<value>Remove an item</value>
</data>
<data name="Sprite" xml:space="preserve">
<value>Sprite</value>
</data>
<data name="OpenSprite" xml:space="preserve">
<value>Abrir sprite</value>
</data>
<data name="Notification" xml:space="preserve">
<value>Notification</value>
</data>
<data name="SendNotification" xml:space="preserve">
<value>Enviar notificación</value>
</data>
<data name="StaysOpen" xml:space="preserve">
<value>Permance abierto</value>
</data>
<data name="FloatingBlock" xml:space="preserve">
<value>FloatingBlock</value>
</data>
<data name="SplitButton" xml:space="preserve">
<value>SplitButton</value>
</data>
<data name="Tools" xml:space="preserve">
<value>Herramientas</value>
</data>
<data name="HatchBrushGenerator" xml:space="preserve">
<value>HatchBrushGenerator</value>
</data>
<data name="Morphing Animation" xml:space="preserve">
<value>Morphing Animation</value>
</data>
<data name="Divider" xml:space="preserve">
<value>Divider</value>
</data>
<data name="PoptipPositionStr" xml:space="preserve">
<value>top-start;top;top-end;right-start;right;right-end;bottom-end;bottom;bottom-start;left-end;left;left-start</value>
</data>
<data name="TransitioningContentControl" xml:space="preserve">
<value>TransitioningContentControl</value>
</data>
<data name="Drawer" xml:space="preserve">
<value>Drawer</value>
</data>
<data name="Documentation" xml:space="preserve">
<value>Documentación</value>
</data>
<data name="Effects" xml:space="preserve">
<value>Effects</value>
</data>
<data name="Website" xml:space="preserve">
<value>Sitio Web</value>
</data>
<data name="Vsix" xml:space="preserve">
<value>Vsix</value>
</data>
<data name="Doc_en" xml:space="preserve">
<value>Documentación en Inglés</value>
</data>
<data name="Doc_cn" xml:space="preserve">
<value>Documentación en Chino</value>
</data>
<data name="Demo" xml:space="preserve">
<value>Demo</value>
</data>
<data name="PinBox" xml:space="preserve">
<value>PinBox</value>
</data>
<data name="FlowDocumentScrollViewer" xml:space="preserve">
<value>FlowDocumentScrollViewer</value>
</data>
<data name="OpenGlowWindow" xml:space="preserve">
<value>Abrir glowWindow</value>
</data>
<data name="FlowDocument" xml:space="preserve">
<value>FlowDocument</value>
</data>
<data name="FlowDocumentPageViewer" xml:space="preserve">
<value>FlowDocumentPageViewer</value>
</data>
<data name="FlowDocumentReader" xml:space="preserve">
<value>FlowDocumentReader</value>
</data>
<data name="OpenNativeCommonWindow" xml:space="preserve">
<value>Abrir ventana común nativa</value>
</data>
<data name="OpenNavigationWindow" xml:space="preserve">
<value>Abrir ventana de navegación</value>
</data>
<data name="Frame" xml:space="preserve">
<value>Frame</value>
</data>
<data name="PracticalDemos" xml:space="preserve">
<value>Ejemplos</value>
</data>
<data name="StartScreenshot" xml:space="preserve">
<value>Iniciar Captura de Pantalla</value>
</data>
<data name="Screenshot" xml:space="preserve">
<value>Captura de Pantalla</value>
</data>
<data name="TextDialogInControl" xml:space="preserve">
<value>TextDialog(In control)</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="PropertyGrid" xml:space="preserve">
<value>PropertyGrid</value>
</data>
<data name="ImageSelector" xml:space="preserve">
<value>ImageSelector</value>
</data>
<data name="Geometry" xml:space="preserve">
<value>Geometry</value>
</data>
<data name="CheckComboBox" xml:space="preserve">
<value>CheckComboBox</value>
</data>
<data name="FlexPanel" xml:space="preserve">
<value>FlexPanel</value>
</data>
<data name="OpenTouchDragMoveWindow" xml:space="preserve">
<value>Abrir ventana TouchDragMove</value>
</data>
<data name="UniformSpacingPanel" xml:space="preserve">
<value>UniformSpacingPanel</value>
</data>
<data name="Misc" xml:space="preserve">
<value>Misc</value>
</data>
<data name="Interacting" xml:space="preserve">
<value>Interactuando</value>
</data>
<data name="DataEntry" xml:space="preserve">
<value>Datos de entrada</value>
</data>
<data name="DataDisplay" xml:space="preserve">
<value>Data de visualización</value>
</data>
<data name="Navigation" xml:space="preserve">
<value>Navegación</value>
</data>
<data name="Layout" xml:space="preserve">
<value>Layout</value>
</data>
<data name="Feedback" xml:space="preserve">
<value>Feedback</value>
</data>
<data name="Empty" xml:space="preserve">
<value>Empty</value>
</data>
<data name="ElementGroup" xml:space="preserve">
<value>ElementGroup</value>
</data>
<data name="AutoCompleteTextBox" xml:space="preserve">
<value>AutoCompleteTextBox</value>
</data>
<data name="Watermark" xml:space="preserve">
<value>Watermark</value>
</data>
<data name="CloseMainWindowDialog" xml:space="preserve">
<value>Close main window dialog</value>
</data>
</root>

View File

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Controls" xml:space="preserve">
<value>کنترل ها</value>
</data>
<data name="Styles" xml:space="preserve">
<value>استایل ها</value>
</data>
<data name="Growl" xml:space="preserve">
<value>Growl</value>
</data>
<data name="GrowlInfo" xml:space="preserve">
<value>امروز روز خوبی است ~~~</value>
</data>
<data name="GrowlSuccess" xml:space="preserve">
<value>پرونده با موفقیت ذخیره شد!</value>
</data>
<data name="GrowlWarning" xml:space="preserve">
<value>فضای دیسک در حال اتمام است!</value>
</data>
<data name="GrowlError" xml:space="preserve">
<value>ارتباط ناموفق بود. لطفا شبکه خود را بررسی کنید!</value>
</data>
<data name="GrowlFatal" xml:space="preserve">
<value>برنامه خراب شد~~~</value>
</data>
<data name="GrowlAsk" xml:space="preserve">
<value>نسخه جدیدی کشف شد! آیا می خواهید بروزرسانی کنید؟</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Loading</value>
</data>
<data name="ImageBrowser" xml:space="preserve">
<value>ImageBrowser</value>
</data>
<data name="ColorPicker" xml:space="preserve">
<value>ColorPicker</value>
</data>
<data name="Carousel" xml:space="preserve">
<value>Carousel</value>
</data>
<data name="CompareSlider" xml:space="preserve">
<value>CompareSlider</value>
</data>
<data name="TimeBar" xml:space="preserve">
<value>TimeBar</value>
</data>
<data name="Expander" xml:space="preserve">
<value>Expander</value>
</data>
<data name="Pagination" xml:space="preserve">
<value>Pagination</value>
</data>
<data name="OpenImageBrowser" xml:space="preserve">
<value>برای باز کردن مرورگر تصویر کلیک کنید</value>
</data>
<data name="ProgressBar" xml:space="preserve">
<value>ProgressBar</value>
</data>
<data name="AnimationPath" xml:space="preserve">
<value>AnimationPath</value>
</data>
<data name="Button" xml:space="preserve">
<value>Button</value>
</data>
<data name="ToggleButton" xml:space="preserve">
<value>ToggleButton</value>
</data>
<data name="TabControl" xml:space="preserve">
<value>TabControl</value>
</data>
<data name="CheckBox" xml:space="preserve">
<value>CheckBox</value>
</data>
<data name="TextBlock" xml:space="preserve">
<value>TextBlock</value>
</data>
<data name="Default" xml:space="preserve">
<value>Default</value>
</data>
<data name="Primary" xml:space="preserve">
<value>Primary</value>
</data>
<data name="Success" xml:space="preserve">
<value>Success</value>
</data>
<data name="Info" xml:space="preserve">
<value>Info</value>
</data>
<data name="Warning" xml:space="preserve">
<value>Warning</value>
</data>
<data name="Danger" xml:space="preserve">
<value>Danger</value>
</data>
<data name="ButtonCustom" xml:space="preserve">
<value>Custom button</value>
</data>
<data name="Title" xml:space="preserve">
<value>عنوان</value>
</data>
<data name="StepBar" xml:space="preserve">
<value>StepBar</value>
</data>
<data name="Prev" xml:space="preserve">
<value>قبلی</value>
</data>
<data name="Next" xml:space="preserve">
<value>بعدی</value>
</data>
<data name="Register" xml:space="preserve">
<value>ثبت نام</value>
</data>
<data name="BasicInfo" xml:space="preserve">
<value>اطلاعات اصلی را پر کنید</value>
</data>
<data name="UploadFile" xml:space="preserve">
<value>آپلود فایل</value>
</data>
<data name="Complete" xml:space="preserve">
<value>تکمیل</value>
</data>
<data name="Clock" xml:space="preserve">
<value>Clock</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>Calendar</value>
</data>
<data name="DatePicker" xml:space="preserve">
<value>DatePicker</value>
</data>
<data name="TimePicker" xml:space="preserve">
<value>TimePicker</value>
</data>
<data name="TextBox" xml:space="preserve">
<value>TextBox</value>
</data>
<data name="ContentDemoStr" xml:space="preserve">
<value>این محتوا است</value>
</data>
<data name="TitleDemoStr1" xml:space="preserve">
<value>این عنوان است</value>
</data>
<data name="TitleDemoStr2" xml:space="preserve">
<value>این مورد باید پر شود</value>
</data>
<data name="PlsEnterContent" xml:space="preserve">
<value>لطفاً محتوا را وارد کنید</value>
</data>
<data name="TitleDemoStr3" xml:space="preserve">
<value>عنوان در سمت چپ است</value>
</data>
<data name="Text" xml:space="preserve">
<value>متن</value>
</data>
<data name="SubTitle" xml:space="preserve">
<value>عنوان فرعی</value>
</data>
<data name="PasswordBox" xml:space="preserve">
<value>PasswordBox</value>
</data>
<data name="CirclePanel" xml:space="preserve">
<value>CirclePanel</value>
</data>
<data name="ComboBox" xml:space="preserve">
<value>ComboBox</value>
</data>
<data name="NumericUpDown" xml:space="preserve">
<value>NumericUpDown</value>
</data>
<data name="DataGrid" xml:space="preserve">
<value>DataGrid</value>
</data>
<data name="Index" xml:space="preserve">
<value>ایندکس</value>
</data>
<data name="Name" xml:space="preserve">
<value>نام</value>
</data>
<data name="Type" xml:space="preserve">
<value>تایپ کنید</value>
</data>
<data name="Remark" xml:space="preserve">
<value>تذکر</value>
</data>
<data name="Selected" xml:space="preserve">
<value>انتخاب شد</value>
</data>
<data name="ListBox" xml:space="preserve">
<value>ListBox</value>
</data>
<data name="TreeView" xml:space="preserve">
<value>TreeView</value>
</data>
<data name="ScrollViewer" xml:space="preserve">
<value>ScrollViewer</value>
</data>
<data name="Window" xml:space="preserve">
<value>Window</value>
</data>
<data name="Menu" xml:space="preserve">
<value>Menu</value>
</data>
<data name="RightClickHere" xml:space="preserve">
<value>اینجا کلیک راست کنید</value>
</data>
<data name="RadioButton" xml:space="preserve">
<value>RadioButton</value>
</data>
<data name="OpenMessageWindow" xml:space="preserve">
<value>پنجره پیام باز شود</value>
</data>
<data name="OpenCommonWindow" xml:space="preserve">
<value>باز کردن پنجره عادی</value>
</data>
<data name="OpenCustomNonClientAreaWindow" xml:space="preserve">
<value>پنجره منطقه سفارشی تایتل بار باز شود</value>
</data>
<data name="OpenMouseFollowWindow" xml:space="preserve">
<value>پنجره ماوس باز شود</value>
</data>
<data name="OpenCustomContentWindow" xml:space="preserve">
<value>باز کردن پنجره با محتوای شخصی</value>
</data>
<data name="Ignore" xml:space="preserve">
<value>چشم پوشی</value>
</data>
<data name="Error" xml:space="preserve">
<value>Error</value>
</data>
<data name="Ask" xml:space="preserve">
<value>Ask</value>
</data>
<data name="Fatal" xml:space="preserve">
<value>Fatal</value>
</data>
<data name="Clear" xml:space="preserve">
<value>پاک کردن</value>
</data>
<data name="ChangeLangAsk" xml:space="preserve">
<value>آیا برای تغییر زبان، برنامه مجدداً راه اندازی شود؟</value>
</data>
<data name="About" xml:space="preserve">
<value>درباره</value>
</data>
<data name="Repository" xml:space="preserve">
<value>مخزن</value>
</data>
<data name="Email" xml:space="preserve">
<value>ایمیل</value>
</data>
<data name="Chatroom" xml:space="preserve">
<value>اتاق چت</value>
</data>
<data name="Blog" xml:space="preserve">
<value>بلاگ</value>
</data>
<data name="Brush" xml:space="preserve">
<value>Brush</value>
</data>
<data name="PreviewSlider" xml:space="preserve">
<value>PreviewSlider</value>
</data>
<data name="Contributors" xml:space="preserve">
<value>مشارکت کنندگان</value>
</data>
<data name="Slider" xml:space="preserve">
<value>Slider</value>
</data>
<data name="IsNotPhone" xml:space="preserve">
<value>شماره تلفن نیست</value>
</data>
<data name="PlsEnterEmail" xml:space="preserve">
<value>لطفا ایمیل را وارد کنید</value>
</data>
<data name="Step" xml:space="preserve">
<value>گام</value>
</data>
<data name="CalendarWithClock" xml:space="preserve">
<value>CalendarWithClock</value>
</data>
<data name="DateTimePicker" xml:space="preserve">
<value>DateTimePicker</value>
</data>
<data name="GroupBox" xml:space="preserve">
<value>GroupBox</value>
</data>
<data name="ListView" xml:space="preserve">
<value>ListView</value>
</data>
<data name="RichTextBox" xml:space="preserve">
<value>RichTextBox</value>
</data>
<data name="ToolBar" xml:space="preserve">
<value>ToolBar</value>
</data>
<data name="Common" xml:space="preserve">
<value>عادی</value>
</data>
<data name="ShowRowNumber" xml:space="preserve">
<value>نمایش تعداد ردیف</value>
</data>
<data name="SearchBar" xml:space="preserve">
<value>SearchBar</value>
</data>
<data name="Tag" xml:space="preserve">
<value>Tag</value>
</data>
<data name="GifImage" xml:space="preserve">
<value>GifImage</value>
</data>
<data name="OutlineText" xml:space="preserve">
<value>OutlineText</value>
</data>
<data name="QQGroup" xml:space="preserve">
<value>گروه QQ</value>
</data>
<data name="FlipClock" xml:space="preserve">
<value>FlipClock</value>
</data>
<data name="OpenBlurWindow" xml:space="preserve">
<value>باز کردن پنجره بلور</value>
</data>
<data name="Rate" xml:space="preserve">
<value>Rate</value>
</data>
<data name="Shield" xml:space="preserve">
<value>Shield</value>
</data>
<data name="WaterfallPanel" xml:space="preserve">
<value>WaterfallPanel</value>
</data>
<data name="Groups" xml:space="preserve">
<value>Groups</value>
</data>
<data name="CoverView" xml:space="preserve">
<value>CoverView</value>
</data>
<data name="CoverFlow" xml:space="preserve">
<value>CoverFlow</value>
</data>
<data name="PlsEnterKey" xml:space="preserve">
<value>لطفاً یک کلمه کلیدی را وارد کنید</value>
</data>
<data name="OpenNoNonClientAreaDragableWindow" xml:space="preserve">
<value>پنجره قابل کشش ناحیه بدون تایتل بار باز شود</value>
</data>
<data name="DragHere" xml:space="preserve">
<value>اینجا بکش</value>
</data>
<data name="MessageBox" xml:space="preserve">
<value>MessageBox</value>
</data>
<data name="ProgressButton" xml:space="preserve">
<value>ProgressButton</value>
</data>
<data name="UploadStr" xml:space="preserve">
<value>Upload;Uploading</value>
</data>
<data name="OpenCustomMessageWindow" xml:space="preserve">
<value>باز کردن پنجره پیغام شخصی</value>
</data>
<data name="Transfer" xml:space="preserve">
<value>Transfer</value>
</data>
<data name="ChatBubble" xml:space="preserve">
<value>ChatBubble</value>
</data>
<data name="PushToTalk" xml:space="preserve">
<value>فشار دهید تا صحبت کنید</value>
</data>
<data name="Second" xml:space="preserve">
<value>ثانیه</value>
</data>
<data name="Label" xml:space="preserve">
<value>Label</value>
</data>
<data name="GotoTop" xml:space="preserve">
<value>GotoTop</value>
</data>
<data name="NotifyIcon" xml:space="preserve">
<value>NotifyIcon</value>
</data>
<data name="Badge" xml:space="preserve">
<value>Badge</value>
</data>
<data name="Gravatar" xml:space="preserve">
<value>Gravatar</value>
</data>
<data name="ComingSoon" xml:space="preserve">
<value>به زودی</value>
</data>
<data name="Comment" xml:space="preserve">
<value>Comment</value>
</data>
<data name="Reply" xml:space="preserve">
<value>Reply</value>
</data>
<data name="Dialog" xml:space="preserve">
<value>Dialog</value>
</data>
<data name="TextDialog" xml:space="preserve">
<value>متن Dialog</value>
</data>
<data name="PleaseWait" xml:space="preserve">
<value>لطفا صبر کنید...</value>
</data>
<data name="GrowlDemo" xml:space="preserve">
<value>نسخه ی نمایشی Growl</value>
</data>
<data name="NewWindow" xml:space="preserve">
<value>پنجره جدید</value>
</data>
<data name="Visibility" xml:space="preserve">
<value>قابلیت دیدن</value>
</data>
<data name="Blink" xml:space="preserve">
<value>چشمک زدن</value>
</data>
<data name="Exit" xml:space="preserve">
<value>خروج</value>
</data>
<data name="OpenPanel" xml:space="preserve">
<value>پنل را باز کنید</value>
</data>
<data name="AppClosingTip" xml:space="preserve">
<value>نماد سینی باز است و به جای بستن برنامه ، پنجره را پنهان می کند</value>
</data>
<data name="Tip" xml:space="preserve">
<value>بی درنگ</value>
</data>
<data name="Try2CloseApp" xml:space="preserve">
<value>سعی کنید برنامه را ببندید؟</value>
</data>
<data name="InteractiveDialog" xml:space="preserve">
<value>گفتگوی تعاملی</value>
</data>
<data name="Ok" xml:space="preserve">
<value>اوکی</value>
</data>
<data name="PleaseInput" xml:space="preserve">
<value>لطفاً وارد کنید ...</value>
</data>
<data name="Click2Count" xml:space="preserve">
<value>Click to count</value>
</data>
<data name="RepeatButton" xml:space="preserve">
<value>RepeatButton</value>
</data>
<data name="DialogDemo" xml:space="preserve">
<value>نسخه ی نمایشی Dialog</value>
</data>
<data name="ShowInCurrentWindow" xml:space="preserve">
<value>نمایش در پنجره فعلی</value>
</data>
<data name="ShowInMainWindow" xml:space="preserve">
<value>نمایش در پنجره اصلی</value>
</data>
<data name="SideMenu" xml:space="preserve">
<value>SideMenu</value>
</data>
<data name="Grid" xml:space="preserve">
<value>Grid</value>
</data>
<data name="BasicLayout" xml:space="preserve">
<value>طرح اولیه</value>
</data>
<data name="ColumnSpacing" xml:space="preserve">
<value>فاصله ستون</value>
</data>
<data name="HybridLayout" xml:space="preserve">
<value>طرح ترکیبی</value>
</data>
<data name="ColumnOffset" xml:space="preserve">
<value>انحراف ستون</value>
</data>
<data name="ResponsiveLayout" xml:space="preserve">
<value>طرح ریسپانسیو</value>
</data>
<data name="Border" xml:space="preserve">
<value>Border</value>
</data>
<data name="Recommendation" xml:space="preserve">
<value>توصیه</value>
</data>
<data name="Project" xml:space="preserve">
<value>پروژه</value>
</data>
<data name="RangeSlider" xml:space="preserve">
<value>RangeSlider</value>
</data>
<data name="RelativePanel" xml:space="preserve">
<value>RelativePanel</value>
</data>
<data name="On" xml:space="preserve">
<value>On</value>
</data>
<data name="Off" xml:space="preserve">
<value>Off</value>
</data>
<data name="ButtonGroup" xml:space="preserve">
<value>ButtonGroup</value>
</data>
<data name="Card" xml:space="preserve">
<value>Card</value>
</data>
<data name="TextDialogWithTimer" xml:space="preserve">
<value>متن Dialog با تایمر</value>
</data>
<data name="Magnifier" xml:space="preserve">
<value>Magnifier</value>
</data>
<data name="ImageBlock" xml:space="preserve">
<value>ImageBlock</value>
</data>
<data name="RunningBlock" xml:space="preserve">
<value>RunningBlock</value>
</data>
<data name="HoneycombPanel" xml:space="preserve">
<value>HoneycombPanel</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>یک مورد اضافه کنید</value>
</data>
<data name="RemoveItem" xml:space="preserve">
<value>یک مورد را حذف کنید</value>
</data>
<data name="Sprite" xml:space="preserve">
<value>Sprite</value>
</data>
<data name="OpenSprite" xml:space="preserve">
<value>اسپرایت را باز کنید</value>
</data>
<data name="Notification" xml:space="preserve">
<value>Notification</value>
</data>
<data name="SendNotification" xml:space="preserve">
<value>اعلان را ارسال کنید</value>
</data>
<data name="StaysOpen" xml:space="preserve">
<value>باز می ماند</value>
</data>
<data name="FloatingBlock" xml:space="preserve">
<value>FloatingBlock</value>
</data>
<data name="SplitButton" xml:space="preserve">
<value>SplitButton</value>
</data>
<data name="Tools" xml:space="preserve">
<value>ابزار</value>
</data>
<data name="HatchBrushGenerator" xml:space="preserve">
<value>HatchBrushGenerator</value>
</data>
<data name="Morphing Animation" xml:space="preserve">
<value>Morphing Animation</value>
</data>
<data name="Divider" xml:space="preserve">
<value>Divider</value>
</data>
<data name="Poptip" xml:space="preserve">
<value>Poptip</value>
</data>
<data name="PoptipPositionStr" xml:space="preserve">
<value>top-start;top;top-end;right-start;right;right-end;bottom-end;bottom;bottom-start;left-end;left;left-start</value>
</data>
<data name="TransitioningContentControl" xml:space="preserve">
<value>TransitioningContentControl</value>
</data>
<data name="Drawer" xml:space="preserve">
<value>Drawer</value>
</data>
<data name="Documentation" xml:space="preserve">
<value>مستندات</value>
</data>
<data name="Effects" xml:space="preserve">
<value>Effects</value>
</data>
<data name="Website" xml:space="preserve">
<value>سایت</value>
</data>
<data name="Vsix" xml:space="preserve">
<value>Vsix</value>
</data>
<data name="Doc_en" xml:space="preserve">
<value>مستندات انگلیسی</value>
</data>
<data name="Doc_cn" xml:space="preserve">
<value>مستندات چینی</value>
</data>
<data name="Demo" xml:space="preserve">
<value>دمو</value>
</data>
<data name="PinBox" xml:space="preserve">
<value>PinBox</value>
</data>
<data name="FlowDocumentScrollViewer" xml:space="preserve">
<value>FlowDocumentScrollViewer</value>
</data>
<data name="OpenGlowWindow" xml:space="preserve">
<value>Open glowWindow</value>
</data>
<data name="FlowDocument" xml:space="preserve">
<value>FlowDocument</value>
</data>
<data name="FlowDocumentPageViewer" xml:space="preserve">
<value>FlowDocumentPageViewer</value>
</data>
<data name="FlowDocumentReader" xml:space="preserve">
<value>FlowDocumentReader</value>
</data>
<data name="OpenNativeCommonWindow" xml:space="preserve">
<value>Open native common window</value>
</data>
<data name="OpenNavigationWindow" xml:space="preserve">
<value>Open navigation window</value>
</data>
<data name="Frame" xml:space="preserve">
<value>Frame</value>
</data>
<data name="PracticalDemos" xml:space="preserve">
<value>دموی عملی</value>
</data>
<data name="StartScreenshot" xml:space="preserve">
<value>Start screenshot</value>
</data>
<data name="Screenshot" xml:space="preserve">
<value>Screenshot</value>
</data>
<data name="TextDialogInControl" xml:space="preserve">
<value>TextDialog(In control)</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="PropertyGrid" xml:space="preserve">
<value>PropertyGrid</value>
</data>
<data name="ImageSelector" xml:space="preserve">
<value>ImageSelector</value>
</data>
<data name="Geometry" xml:space="preserve">
<value>Geometry</value>
</data>
<data name="CheckComboBox" xml:space="preserve">
<value>CheckComboBox</value>
</data>
<data name="FlexPanel" xml:space="preserve">
<value>FlexPanel</value>
</data>
<data name="OpenTouchDragMoveWindow" xml:space="preserve">
<value>open touch drag move window</value>
</data>
<data name="UniformSpacingPanel" xml:space="preserve">
<value>UniformSpacingPanel</value>
</data>
<data name="Misc" xml:space="preserve">
<value>Misc</value>
</data>
<data name="Interacting" xml:space="preserve">
<value>Interacting</value>
</data>
<data name="DataEntry" xml:space="preserve">
<value>Data Entry</value>
</data>
<data name="DataDisplay" xml:space="preserve">
<value>Data Display</value>
</data>
<data name="Navigation" xml:space="preserve">
<value>Navigation</value>
</data>
<data name="Layout" xml:space="preserve">
<value>Layout</value>
</data>
<data name="Feedback" xml:space="preserve">
<value>Feedback</value>
</data>
<data name="Empty" xml:space="preserve">
<value>Empty</value>
</data>
<data name="ElementGroup" xml:space="preserve">
<value>ElementGroup</value>
</data>
<data name="AutoCompleteTextBox" xml:space="preserve">
<value>AutoCompleteTextBox</value>
</data>
<data name="Watermark" xml:space="preserve">
<value>Watermark</value>
</data>
<data name="CloseMainWindowDialog" xml:space="preserve">
<value>Close main window dialog</value>
</data>
</root>

View File

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Controls" xml:space="preserve">
<value>Controls</value>
</data>
<data name="Styles" xml:space="preserve">
<value>Styles</value>
</data>
<data name="Growl" xml:space="preserve">
<value>Growl</value>
</data>
<data name="GrowlInfo" xml:space="preserve">
<value>C'est une belle journée aujourd'hui</value>
</data>
<data name="GrowlSuccess" xml:space="preserve">
<value>Fichier enregistré!</value>
</data>
<data name="GrowlWarning" xml:space="preserve">
<value>Espace disque bientôt epuisé!</value>
</data>
<data name="GrowlError" xml:space="preserve">
<value>Erreur de connexion. Veuillez vérifier votre réseau !</value>
</data>
<data name="GrowlFatal" xml:space="preserve">
<value>L'application a planté</value>
</data>
<data name="GrowlAsk" xml:space="preserve">
<value>Une nouvelle version a été détectée, voulez-vous la télécharger ?</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Loading</value>
</data>
<data name="ImageBrowser" xml:space="preserve">
<value>ImageBrowser</value>
</data>
<data name="ColorPicker" xml:space="preserve">
<value>ColorPicker</value>
</data>
<data name="Carousel" xml:space="preserve">
<value>Carousel</value>
</data>
<data name="CompareSlider" xml:space="preserve">
<value>CompareSlider</value>
</data>
<data name="TimeBar" xml:space="preserve">
<value>TimeBar</value>
</data>
<data name="Expander" xml:space="preserve">
<value>Expander</value>
</data>
<data name="Pagination" xml:space="preserve">
<value>Pagination</value>
</data>
<data name="OpenImageBrowser" xml:space="preserve">
<value>Cliquer pour ouvrir la visionneuse d'image</value>
</data>
<data name="ProgressBar" xml:space="preserve">
<value>ProgressBar</value>
</data>
<data name="AnimationPath" xml:space="preserve">
<value>AnimationPath</value>
</data>
<data name="Button" xml:space="preserve">
<value>Button</value>
</data>
<data name="ToggleButton" xml:space="preserve">
<value>ToggleButton</value>
</data>
<data name="TabControl" xml:space="preserve">
<value>TabControl</value>
</data>
<data name="CheckBox" xml:space="preserve">
<value>CheckBox</value>
</data>
<data name="TextBlock" xml:space="preserve">
<value>TextBlock</value>
</data>
<data name="Default" xml:space="preserve">
<value>Default</value>
</data>
<data name="Primary" xml:space="preserve">
<value>Primary</value>
</data>
<data name="Success" xml:space="preserve">
<value>Success</value>
</data>
<data name="Info" xml:space="preserve">
<value>Info</value>
</data>
<data name="Warning" xml:space="preserve">
<value>Warning</value>
</data>
<data name="Danger" xml:space="preserve">
<value>Danger</value>
</data>
<data name="ButtonCustom" xml:space="preserve">
<value>Bouton personnalisé</value>
</data>
<data name="Title" xml:space="preserve">
<value>Titre</value>
</data>
<data name="StepBar" xml:space="preserve">
<value>StepBar</value>
</data>
<data name="Prev" xml:space="preserve">
<value>Précédent</value>
</data>
<data name="Next" xml:space="preserve">
<value>Suivant</value>
</data>
<data name="Register" xml:space="preserve">
<value>Register</value>
</data>
<data name="BasicInfo" xml:space="preserve">
<value>Remplir les informations de base</value>
</data>
<data name="UploadFile" xml:space="preserve">
<value>Envoyer le fichier</value>
</data>
<data name="Complete" xml:space="preserve">
<value>Terminé</value>
</data>
<data name="Clock" xml:space="preserve">
<value>Clock</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>Calendrier</value>
</data>
<data name="DatePicker" xml:space="preserve">
<value>DatePicker</value>
</data>
<data name="TimePicker" xml:space="preserve">
<value>TimePicker</value>
</data>
<data name="TextBox" xml:space="preserve">
<value>TextBox</value>
</data>
<data name="ContentDemoStr" xml:space="preserve">
<value>Contenu ici</value>
</data>
<data name="TitleDemoStr1" xml:space="preserve">
<value>Titre ici</value>
</data>
<data name="TitleDemoStr2" xml:space="preserve">
<value>Ce champ doit être renseigné</value>
</data>
<data name="PlsEnterContent" xml:space="preserve">
<value>Veuillez entrer du contenu</value>
</data>
<data name="TitleDemoStr3" xml:space="preserve">
<value>Le titre est à gauche</value>
</data>
<data name="Text" xml:space="preserve">
<value>Text</value>
</data>
<data name="SubTitle" xml:space="preserve">
<value>Sous-titres</value>
</data>
<data name="PasswordBox" xml:space="preserve">
<value>PasswordBox</value>
</data>
<data name="CirclePanel" xml:space="preserve">
<value>CirclePanel</value>
</data>
<data name="ComboBox" xml:space="preserve">
<value>ComboBox</value>
</data>
<data name="NumericUpDown" xml:space="preserve">
<value>NumericUpDown</value>
</data>
<data name="DataGrid" xml:space="preserve">
<value>DataGrid</value>
</data>
<data name="Index" xml:space="preserve">
<value>Index</value>
</data>
<data name="Name" xml:space="preserve">
<value>Name</value>
</data>
<data name="Type" xml:space="preserve">
<value>Type</value>
</data>
<data name="Remark" xml:space="preserve">
<value>Remarque</value>
</data>
<data name="Selected" xml:space="preserve">
<value>Selected</value>
</data>
<data name="ListBox" xml:space="preserve">
<value>ListBox</value>
</data>
<data name="TreeView" xml:space="preserve">
<value>TreeView</value>
</data>
<data name="ScrollViewer" xml:space="preserve">
<value>ScrollViewer</value>
</data>
<data name="Window" xml:space="preserve">
<value>Window</value>
</data>
<data name="Menu" xml:space="preserve">
<value>Menu</value>
</data>
<data name="RightClickHere" xml:space="preserve">
<value>Clique-droit ici</value>
</data>
<data name="RadioButton" xml:space="preserve">
<value>RadioButton</value>
</data>
<data name="OpenMessageWindow" xml:space="preserve">
<value>Ouvrir une fenêtre de message</value>
</data>
<data name="OpenCommonWindow" xml:space="preserve">
<value>Ouvrir une fenêtre commune</value>
</data>
<data name="OpenCustomNonClientAreaWindow" xml:space="preserve">
<value>Ouvrir une fenêtre de 'NonClientArea' personnalisé</value>
</data>
<data name="OpenMouseFollowWindow" xml:space="preserve">
<value>Ouvrir une fenêtre qui suit le curseur</value>
</data>
<data name="OpenCustomContentWindow" xml:space="preserve">
<value>Ouvrir une fenêtre de contenu personnalisé</value>
</data>
<data name="Ignore" xml:space="preserve">
<value>Ignorer</value>
</data>
<data name="Error" xml:space="preserve">
<value>Erreur</value>
</data>
<data name="Ask" xml:space="preserve">
<value>Ask</value>
</data>
<data name="Fatal" xml:space="preserve">
<value>Fatal</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Effacer</value>
</data>
<data name="ChangeLangAsk" xml:space="preserve">
<value>Voulez-vous redémarrer pour changer la langue ?</value>
</data>
<data name="About" xml:space="preserve">
<value>A propos</value>
</data>
<data name="Repository" xml:space="preserve">
<value>Dépôt</value>
</data>
<data name="Email" xml:space="preserve">
<value>Email</value>
</data>
<data name="Chatroom" xml:space="preserve">
<value>ChatRoom</value>
</data>
<data name="Blog" xml:space="preserve">
<value>Blog</value>
</data>
<data name="Brush" xml:space="preserve">
<value>Brush</value>
</data>
<data name="PreviewSlider" xml:space="preserve">
<value>PreviewSlider</value>
</data>
<data name="Contributors" xml:space="preserve">
<value>Contributeurs</value>
</data>
<data name="Slider" xml:space="preserve">
<value>Slider</value>
</data>
<data name="IsNotPhone" xml:space="preserve">
<value>Ce n'est pas un numéro de téléphone</value>
</data>
<data name="PlsEnterEmail" xml:space="preserve">
<value>Veuillez saisir le mail</value>
</data>
<data name="Step" xml:space="preserve">
<value>Step</value>
</data>
<data name="CalendarWithClock" xml:space="preserve">
<value>CalendarWithClock</value>
</data>
<data name="DateTimePicker" xml:space="preserve">
<value>DateTimePicker</value>
</data>
<data name="GroupBox" xml:space="preserve">
<value>GroupBox</value>
</data>
<data name="ListView" xml:space="preserve">
<value>ListView</value>
</data>
<data name="RichTextBox" xml:space="preserve">
<value>RichTextBox</value>
</data>
<data name="ToolBar" xml:space="preserve">
<value>ToolBar</value>
</data>
<data name="Common" xml:space="preserve">
<value>Common</value>
</data>
<data name="ShowRowNumber" xml:space="preserve">
<value>ShowRowNumber</value>
</data>
<data name="SearchBar" xml:space="preserve">
<value>SearchBar</value>
</data>
<data name="Tag" xml:space="preserve">
<value>Tag</value>
</data>
<data name="GifImage" xml:space="preserve">
<value>GifImage</value>
</data>
<data name="OutlineText" xml:space="preserve">
<value>OutlineText</value>
</data>
<data name="QQGroup" xml:space="preserve">
<value>QQ Group</value>
</data>
<data name="FlipClock" xml:space="preserve">
<value>FlipClock</value>
</data>
<data name="OpenBlurWindow" xml:space="preserve">
<value>Ouvrir une fenêtre floue</value>
</data>
<data name="Rate" xml:space="preserve">
<value>Rate</value>
</data>
<data name="Shield" xml:space="preserve">
<value>Shield</value>
</data>
<data name="WaterfallPanel" xml:space="preserve">
<value>WaterfallPanel</value>
</data>
<data name="Groups" xml:space="preserve">
<value>Groups</value>
</data>
<data name="CoverView" xml:space="preserve">
<value>CoverView</value>
</data>
<data name="CoverFlow" xml:space="preserve">
<value>CoverFlow</value>
</data>
<data name="PlsEnterKey" xml:space="preserve">
<value>Veuillez saisir un mot-clé</value>
</data>
<data name="OpenNoNonClientAreaDragableWindow" xml:space="preserve">
<value>Ouvrir une fenêtre sans NonClientArea que l'on peut glisser</value>
</data>
<data name="DragHere" xml:space="preserve">
<value>Glisser ici</value>
</data>
<data name="MessageBox" xml:space="preserve">
<value>MessageBox</value>
</data>
<data name="ProgressButton" xml:space="preserve">
<value>ProgressButton</value>
</data>
<data name="UploadStr" xml:space="preserve">
<value>Upload;Upload en cours</value>
</data>
<data name="OpenCustomMessageWindow" xml:space="preserve">
<value>Ouvrir une fenêtre de message personnalisé</value>
</data>
<data name="Transfer" xml:space="preserve">
<value>Transfer</value>
</data>
<data name="ChatBubble" xml:space="preserve">
<value>ChatBubble</value>
</data>
<data name="PushToTalk" xml:space="preserve">
<value>Appuyer pour parler</value>
</data>
<data name="Second" xml:space="preserve">
<value>Sec</value>
</data>
<data name="Label" xml:space="preserve">
<value>Label</value>
</data>
<data name="GotoTop" xml:space="preserve">
<value>GotoTop</value>
</data>
<data name="NotifyIcon" xml:space="preserve">
<value>NotifyIcon</value>
</data>
<data name="Badge" xml:space="preserve">
<value>Badge</value>
</data>
<data name="Gravatar" xml:space="preserve">
<value>Gravatar</value>
</data>
<data name="ComingSoon" xml:space="preserve">
<value>Bientôt</value>
</data>
<data name="Comment" xml:space="preserve">
<value>Commentaire</value>
</data>
<data name="Reply" xml:space="preserve">
<value>Répondre</value>
</data>
<data name="Dialog" xml:space="preserve">
<value>Dialog</value>
</data>
<data name="TextDialog" xml:space="preserve">
<value>TextDialog</value>
</data>
<data name="PleaseWait" xml:space="preserve">
<value>Veuillez patienter...</value>
</data>
<data name="GrowlDemo" xml:space="preserve">
<value>Growl demo</value>
</data>
<data name="NewWindow" xml:space="preserve">
<value>Nouvelle fenêtre</value>
</data>
<data name="Visibility" xml:space="preserve">
<value>Visibility</value>
</data>
<data name="Blink" xml:space="preserve">
<value>Clignotter</value>
</data>
<data name="Exit" xml:space="preserve">
<value>Exit</value>
</data>
<data name="OpenPanel" xml:space="preserve">
<value>Ouvrir Panel</value>
</data>
<data name="AppClosingTip" xml:space="preserve">
<value>L'application va se réduire dans la barre d'icônes au lieu de se fermer</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Prompt</value>
</data>
<data name="Try2CloseApp" xml:space="preserve">
<value>Essayer de fermer l'application ?</value>
</data>
<data name="InteractiveDialog" xml:space="preserve">
<value>Interactive Dialog</value>
</data>
<data name="Ok" xml:space="preserve">
<value>Ok</value>
</data>
<data name="PleaseInput" xml:space="preserve">
<value>Veuillez saisir...</value>
</data>
<data name="Click2Count" xml:space="preserve">
<value>Cliquer pour compter</value>
</data>
<data name="RepeatButton" xml:space="preserve">
<value>RepeatButton</value>
</data>
<data name="DialogDemo" xml:space="preserve">
<value>Démo de dialogue</value>
</data>
<data name="ShowInCurrentWindow" xml:space="preserve">
<value>Afficher dans la fenêtre actuelle</value>
</data>
<data name="ShowInMainWindow" xml:space="preserve">
<value>Afficher dans le fenêtre principale</value>
</data>
<data name="SideMenu" xml:space="preserve">
<value>SideMenu</value>
</data>
<data name="Grid" xml:space="preserve">
<value>Grid</value>
</data>
<data name="BasicLayout" xml:space="preserve">
<value>Affichage basique</value>
</data>
<data name="ColumnSpacing" xml:space="preserve">
<value>Column spacing</value>
</data>
<data name="HybridLayout" xml:space="preserve">
<value>Hybrid layout</value>
</data>
<data name="ColumnOffset" xml:space="preserve">
<value>Column offset</value>
</data>
<data name="ResponsiveLayout" xml:space="preserve">
<value>Affichage responsive</value>
</data>
<data name="Border" xml:space="preserve">
<value>Border</value>
</data>
<data name="Recommendation" xml:space="preserve">
<value>Recommendation</value>
</data>
<data name="Project" xml:space="preserve">
<value>Project</value>
</data>
<data name="RangeSlider" xml:space="preserve">
<value>RangeSlider</value>
</data>
<data name="RelativePanel" xml:space="preserve">
<value>RelativePanel</value>
</data>
<data name="On" xml:space="preserve">
<value>On</value>
</data>
<data name="Off" xml:space="preserve">
<value>Off</value>
</data>
<data name="ButtonGroup" xml:space="preserve">
<value>ButtonGroup</value>
</data>
<data name="Card" xml:space="preserve">
<value>Card</value>
</data>
<data name="TextDialogWithTimer" xml:space="preserve">
<value>TextDialog with timer</value>
</data>
<data name="Magnifier" xml:space="preserve">
<value>Magnifier</value>
</data>
<data name="ImageBlock" xml:space="preserve">
<value>ImageBlock</value>
</data>
<data name="RunningBlock" xml:space="preserve">
<value>RunningBlock</value>
</data>
<data name="HoneycombPanel" xml:space="preserve">
<value>HoneycombPanel</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>Ajouter un item</value>
</data>
<data name="RemoveItem" xml:space="preserve">
<value>Enlever un item</value>
</data>
<data name="Sprite" xml:space="preserve">
<value>Sprite</value>
</data>
<data name="OpenSprite" xml:space="preserve">
<value>Ouvrir Sprite</value>
</data>
<data name="Notification" xml:space="preserve">
<value>Notification</value>
</data>
<data name="SendNotification" xml:space="preserve">
<value>Envoyer une notification</value>
</data>
<data name="StaysOpen" xml:space="preserve">
<value>Reste ouvert</value>
</data>
<data name="FloatingBlock" xml:space="preserve">
<value>FloatingBlock</value>
</data>
<data name="SplitButton" xml:space="preserve">
<value>SplitButton</value>
</data>
<data name="Tools" xml:space="preserve">
<value>Tools</value>
</data>
<data name="HatchBrushGenerator" xml:space="preserve">
<value>HatchBrushGenerator</value>
</data>
<data name="Morphing Animation" xml:space="preserve">
<value>Morphing Animation</value>
</data>
<data name="Divider" xml:space="preserve">
<value>Divider</value>
</data>
<data name="Poptip" xml:space="preserve">
<value>Poptip</value>
</data>
<data name="PoptipPositionStr" xml:space="preserve">
<value>top-start;top;top-end;right-start;right;right-end;bottom-end;bottom;bottom-start;left-end;left;left-start</value>
</data>
<data name="TransitioningContentControl" xml:space="preserve">
<value>TransitioningContentControl</value>
</data>
<data name="Drawer" xml:space="preserve">
<value>Drawer</value>
</data>
<data name="Documentation" xml:space="preserve">
<value>Documentation</value>
</data>
<data name="Effects" xml:space="preserve">
<value>Effects</value>
</data>
<data name="Website" xml:space="preserve">
<value>Website</value>
</data>
<data name="Vsix" xml:space="preserve">
<value>Vsix</value>
</data>
<data name="Doc_en" xml:space="preserve">
<value>English document</value>
</data>
<data name="Doc_cn" xml:space="preserve">
<value>Chinese document</value>
</data>
<data name="Demo" xml:space="preserve">
<value>Demo</value>
</data>
<data name="PinBox" xml:space="preserve">
<value>PinBox</value>
</data>
<data name="FlowDocumentScrollViewer" xml:space="preserve">
<value>FlowDocumentScrollViewer</value>
</data>
<data name="OpenGlowWindow" xml:space="preserve">
<value>Open glowWindow</value>
</data>
<data name="FlowDocument" xml:space="preserve">
<value>FlowDocument</value>
</data>
<data name="FlowDocumentPageViewer" xml:space="preserve">
<value>FlowDocumentPageViewer</value>
</data>
<data name="FlowDocumentReader" xml:space="preserve">
<value>FlowDocumentReader</value>
</data>
<data name="OpenNativeCommonWindow" xml:space="preserve">
<value>Open native common window</value>
</data>
<data name="OpenNavigationWindow" xml:space="preserve">
<value>Open navigation window</value>
</data>
<data name="Frame" xml:space="preserve">
<value>Frame</value>
</data>
<data name="PracticalDemos" xml:space="preserve">
<value>Practical demos</value>
</data>
<data name="StartScreenshot" xml:space="preserve">
<value>Start screenshot</value>
</data>
<data name="Screenshot" xml:space="preserve">
<value>Screenshot</value>
</data>
<data name="TextDialogInControl" xml:space="preserve">
<value>TextDialog(In control)</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="PropertyGrid" xml:space="preserve">
<value>PropertyGrid</value>
</data>
<data name="ImageSelector" xml:space="preserve">
<value>ImageSelector</value>
</data>
<data name="Geometry" xml:space="preserve">
<value>Geometry</value>
</data>
<data name="CheckComboBox" xml:space="preserve">
<value>CheckComboBox</value>
</data>
<data name="FlexPanel" xml:space="preserve">
<value>FlexPanel</value>
</data>
<data name="OpenTouchDragMoveWindow" xml:space="preserve">
<value>open touch drag move window</value>
</data>
<data name="UniformSpacingPanel" xml:space="preserve">
<value>UniformSpacingPanel</value>
</data>
<data name="Misc" xml:space="preserve">
<value>Misc</value>
</data>
<data name="Interacting" xml:space="preserve">
<value>Interacting</value>
</data>
<data name="DataEntry" xml:space="preserve">
<value>Data Entry</value>
</data>
<data name="DataDisplay" xml:space="preserve">
<value>Data Display</value>
</data>
<data name="Navigation" xml:space="preserve">
<value>Navigation</value>
</data>
<data name="Layout" xml:space="preserve">
<value>Layout</value>
</data>
<data name="Feedback" xml:space="preserve">
<value>Feedback</value>
</data>
<data name="Empty" xml:space="preserve">
<value>Empty</value>
</data>
<data name="ElementGroup" xml:space="preserve">
<value>ElementGroup</value>
</data>
<data name="AutoCompleteTextBox" xml:space="preserve">
<value>AutoCompleteTextBox</value>
</data>
<data name="Watermark" xml:space="preserve">
<value>Watermark</value>
</data>
<data name="CloseMainWindowDialog" xml:space="preserve">
<value>Close main window dialog</value>
</data>
</root>

View File

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Controls" xml:space="preserve">
<value>コントロール</value>
</data>
<data name="Styles" xml:space="preserve">
<value>スタイル</value>
</data>
<data name="Growl" xml:space="preserve">
<value>Growl</value>
</data>
<data name="GrowlInfo" xml:space="preserve">
<value>It's a nice day today~~~</value>
</data>
<data name="GrowlSuccess" xml:space="preserve">
<value>File saved successfully!</value>
</data>
<data name="GrowlWarning" xml:space="preserve">
<value>Disk space is running out!</value>
</data>
<data name="GrowlError" xml:space="preserve">
<value>接続できません。ネットワーク接続を確認してください!</value>
</data>
<data name="GrowlFatal" xml:space="preserve">
<value>The program has crashed~~~</value>
</data>
<data name="GrowlAsk" xml:space="preserve">
<value>新しいバージョンがあります!アップデートしますか?</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Loading</value>
</data>
<data name="ImageBrowser" xml:space="preserve">
<value>ImageBrowser</value>
</data>
<data name="ColorPicker" xml:space="preserve">
<value>ColorPicker</value>
</data>
<data name="Carousel" xml:space="preserve">
<value>Carousel</value>
</data>
<data name="CompareSlider" xml:space="preserve">
<value>CompareSlider</value>
</data>
<data name="TimeBar" xml:space="preserve">
<value>TimeBar</value>
</data>
<data name="Expander" xml:space="preserve">
<value>Expander</value>
</data>
<data name="Pagination" xml:space="preserve">
<value>Pagination</value>
</data>
<data name="OpenImageBrowser" xml:space="preserve">
<value>画像ブラウザを開く</value>
</data>
<data name="ProgressBar" xml:space="preserve">
<value>ProgressBar</value>
</data>
<data name="AnimationPath" xml:space="preserve">
<value>AnimationPath</value>
</data>
<data name="Button" xml:space="preserve">
<value>Button</value>
</data>
<data name="ToggleButton" xml:space="preserve">
<value>ToggleButton</value>
</data>
<data name="TabControl" xml:space="preserve">
<value>TabControl</value>
</data>
<data name="CheckBox" xml:space="preserve">
<value>CheckBox</value>
</data>
<data name="TextBlock" xml:space="preserve">
<value>TextBlock</value>
</data>
<data name="Default" xml:space="preserve">
<value>Default</value>
</data>
<data name="Primary" xml:space="preserve">
<value>Primary</value>
</data>
<data name="Success" xml:space="preserve">
<value>Success</value>
</data>
<data name="Info" xml:space="preserve">
<value>Info</value>
</data>
<data name="Warning" xml:space="preserve">
<value>Warning</value>
</data>
<data name="Danger" xml:space="preserve">
<value>Danger</value>
</data>
<data name="ButtonCustom" xml:space="preserve">
<value>Custom button</value>
</data>
<data name="Title" xml:space="preserve">
<value>タイトル</value>
</data>
<data name="StepBar" xml:space="preserve">
<value>StepBar</value>
</data>
<data name="Prev" xml:space="preserve">
<value>Prev</value>
</data>
<data name="Next" xml:space="preserve">
<value>Next</value>
</data>
<data name="Register" xml:space="preserve">
<value>Register</value>
</data>
<data name="BasicInfo" xml:space="preserve">
<value>Fill in the basic information</value>
</data>
<data name="UploadFile" xml:space="preserve">
<value>Upload file</value>
</data>
<data name="Complete" xml:space="preserve">
<value>Complete</value>
</data>
<data name="Clock" xml:space="preserve">
<value>Clock</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>Calendar</value>
</data>
<data name="DatePicker" xml:space="preserve">
<value>DatePicker</value>
</data>
<data name="TimePicker" xml:space="preserve">
<value>TimePicker</value>
</data>
<data name="TextBox" xml:space="preserve">
<value>TextBox</value>
</data>
<data name="ContentDemoStr" xml:space="preserve">
<value>ここはコンテンツ</value>
</data>
<data name="TitleDemoStr1" xml:space="preserve">
<value>ここはタイトル</value>
</data>
<data name="TitleDemoStr2" xml:space="preserve">
<value>ここは入力必須</value>
</data>
<data name="PlsEnterContent" xml:space="preserve">
<value>内容を入力</value>
</data>
<data name="TitleDemoStr3" xml:space="preserve">
<value>左寄せタイトル</value>
</data>
<data name="Text" xml:space="preserve">
<value>テキスト</value>
</data>
<data name="SubTitle" xml:space="preserve">
<value>サブタイトル</value>
</data>
<data name="PasswordBox" xml:space="preserve">
<value>PasswordBox</value>
</data>
<data name="CirclePanel" xml:space="preserve">
<value>CirclePanel</value>
</data>
<data name="ComboBox" xml:space="preserve">
<value>ComboBox</value>
</data>
<data name="NumericUpDown" xml:space="preserve">
<value>NumericUpDown</value>
</data>
<data name="DataGrid" xml:space="preserve">
<value>DataGrid</value>
</data>
<data name="Index" xml:space="preserve">
<value>インデックス</value>
</data>
<data name="Name" xml:space="preserve">
<value>名前</value>
</data>
<data name="Type" xml:space="preserve">
<value>種類</value>
</data>
<data name="Remark" xml:space="preserve">
<value>注記</value>
</data>
<data name="Selected" xml:space="preserve">
<value>選択</value>
</data>
<data name="ListBox" xml:space="preserve">
<value>ListBox</value>
</data>
<data name="TreeView" xml:space="preserve">
<value>TreeView</value>
</data>
<data name="ScrollViewer" xml:space="preserve">
<value>ScrollViewer</value>
</data>
<data name="Window" xml:space="preserve">
<value>Window</value>
</data>
<data name="Menu" xml:space="preserve">
<value>Menu</value>
</data>
<data name="RightClickHere" xml:space="preserve">
<value>ここを右クリック</value>
</data>
<data name="RadioButton" xml:space="preserve">
<value>RadioButton</value>
</data>
<data name="OpenMessageWindow" xml:space="preserve">
<value>メッセージウインドウを開く</value>
</data>
<data name="OpenCommonWindow" xml:space="preserve">
<value>通常のウインドウを開く</value>
</data>
<data name="OpenCustomNonClientAreaWindow" xml:space="preserve">
<value>カスタム非クライアント領域ウインドウを開く</value>
</data>
<data name="OpenMouseFollowWindow" xml:space="preserve">
<value>マウス位置にウインドウを開く</value>
</data>
<data name="OpenCustomContentWindow" xml:space="preserve">
<value>カスタムコンテンツウインドウを開く</value>
</data>
<data name="Ignore" xml:space="preserve">
<value>Ignore</value>
</data>
<data name="Error" xml:space="preserve">
<value>Error</value>
</data>
<data name="Ask" xml:space="preserve">
<value>Ask</value>
</data>
<data name="Fatal" xml:space="preserve">
<value>Fatal</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Clear</value>
</data>
<data name="ChangeLangAsk" xml:space="preserve">
<value>Whether to restart to change the language?</value>
</data>
<data name="About" xml:space="preserve">
<value>情報</value>
</data>
<data name="Repository" xml:space="preserve">
<value>リポジトリ</value>
</data>
<data name="Email" xml:space="preserve">
<value>Eメール</value>
</data>
<data name="Chatroom" xml:space="preserve">
<value>チャットルーム</value>
</data>
<data name="Blog" xml:space="preserve">
<value>ブログ</value>
</data>
<data name="Brush" xml:space="preserve">
<value>Brush</value>
</data>
<data name="PreviewSlider" xml:space="preserve">
<value>PreviewSlider</value>
</data>
<data name="Contributors" xml:space="preserve">
<value>貢献者</value>
</data>
<data name="Slider" xml:space="preserve">
<value>Slider</value>
</data>
<data name="IsNotPhone" xml:space="preserve">
<value>It's not a phone number</value>
</data>
<data name="PlsEnterEmail" xml:space="preserve">
<value>Eメールアドレスを入力</value>
</data>
<data name="Step" xml:space="preserve">
<value>Step</value>
</data>
<data name="CalendarWithClock" xml:space="preserve">
<value>CalendarWithClock</value>
</data>
<data name="DateTimePicker" xml:space="preserve">
<value>DateTimePicker</value>
</data>
<data name="GroupBox" xml:space="preserve">
<value>GroupBox</value>
</data>
<data name="ListView" xml:space="preserve">
<value>ListView</value>
</data>
<data name="RichTextBox" xml:space="preserve">
<value>RichTextBox</value>
</data>
<data name="ToolBar" xml:space="preserve">
<value>ToolBar</value>
</data>
<data name="Common" xml:space="preserve">
<value>通常</value>
</data>
<data name="ShowRowNumber" xml:space="preserve">
<value>行番号表示</value>
</data>
<data name="SearchBar" xml:space="preserve">
<value>SearchBar</value>
</data>
<data name="Tag" xml:space="preserve">
<value>Tag</value>
</data>
<data name="GifImage" xml:space="preserve">
<value>GifImage</value>
</data>
<data name="OutlineText" xml:space="preserve">
<value>OutlineText</value>
</data>
<data name="QQGroup" xml:space="preserve">
<value>QQ Group</value>
</data>
<data name="FlipClock" xml:space="preserve">
<value>FlipClock</value>
</data>
<data name="OpenBlurWindow" xml:space="preserve">
<value>BlurWindowを開く</value>
</data>
<data name="Rate" xml:space="preserve">
<value>Rate</value>
</data>
<data name="Shield" xml:space="preserve">
<value>Shield</value>
</data>
<data name="WaterfallPanel" xml:space="preserve">
<value>WaterfallPanel</value>
</data>
<data name="Groups" xml:space="preserve">
<value>Groups</value>
</data>
<data name="CoverView" xml:space="preserve">
<value>CoverView</value>
</data>
<data name="CoverFlow" xml:space="preserve">
<value>CoverFlow</value>
</data>
<data name="PlsEnterKey" xml:space="preserve">
<value>検索ワードを入力</value>
</data>
<data name="OpenNoNonClientAreaDragableWindow" xml:space="preserve">
<value>非クライアント領域の無いドラッグ可能ウインドウを開く</value>
</data>
<data name="DragHere" xml:space="preserve">
<value>Drag here</value>
</data>
<data name="MessageBox" xml:space="preserve">
<value>MessageBox</value>
</data>
<data name="ProgressButton" xml:space="preserve">
<value>ProgressButton</value>
</data>
<data name="UploadStr" xml:space="preserve">
<value>アップロード;アップロード中</value>
</data>
<data name="OpenCustomMessageWindow" xml:space="preserve">
<value>カスタムメッセージウインドウを開く</value>
</data>
<data name="Transfer" xml:space="preserve">
<value>Transfer</value>
</data>
<data name="ChatBubble" xml:space="preserve">
<value>ChatBubble</value>
</data>
<data name="PushToTalk" xml:space="preserve">
<value>Push to talk</value>
</data>
<data name="Second" xml:space="preserve">
<value>Sec</value>
</data>
<data name="Label" xml:space="preserve">
<value>Label</value>
</data>
<data name="GotoTop" xml:space="preserve">
<value>GotoTop</value>
</data>
<data name="NotifyIcon" xml:space="preserve">
<value>NotifyIcon</value>
</data>
<data name="Badge" xml:space="preserve">
<value>Badge</value>
</data>
<data name="Gravatar" xml:space="preserve">
<value>Gravatar</value>
</data>
<data name="ComingSoon" xml:space="preserve">
<value>近日公開</value>
</data>
<data name="Comment" xml:space="preserve">
<value>Comment</value>
</data>
<data name="Reply" xml:space="preserve">
<value>Reply</value>
</data>
<data name="Dialog" xml:space="preserve">
<value>Dialog</value>
</data>
<data name="TextDialog" xml:space="preserve">
<value>TextDialog</value>
</data>
<data name="PleaseWait" xml:space="preserve">
<value>お待ちください...</value>
</data>
<data name="GrowlDemo" xml:space="preserve">
<value>Growl デモ</value>
</data>
<data name="NewWindow" xml:space="preserve">
<value>新規ウインドウ</value>
</data>
<data name="Visibility" xml:space="preserve">
<value>表示</value>
</data>
<data name="Blink" xml:space="preserve">
<value>点滅</value>
</data>
<data name="Exit" xml:space="preserve">
<value>Exit</value>
</data>
<data name="OpenPanel" xml:space="preserve">
<value>Open Panel</value>
</data>
<data name="AppClosingTip" xml:space="preserve">
<value>The tray icon is open and will hide the window instead of closing the program</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Prompt</value>
</data>
<data name="Try2CloseApp" xml:space="preserve">
<value>Try to close app?</value>
</data>
<data name="InteractiveDialog" xml:space="preserve">
<value>対話型 Dialog</value>
</data>
<data name="Ok" xml:space="preserve">
<value>Ok</value>
</data>
<data name="PleaseInput" xml:space="preserve">
<value>入力してください...</value>
</data>
<data name="Click2Count" xml:space="preserve">
<value>Click to count</value>
</data>
<data name="RepeatButton" xml:space="preserve">
<value>RepeatButton</value>
</data>
<data name="DialogDemo" xml:space="preserve">
<value>Dialog デモ</value>
</data>
<data name="ShowInCurrentWindow" xml:space="preserve">
<value>このウインドウに表示</value>
</data>
<data name="ShowInMainWindow" xml:space="preserve">
<value>メインウインドウに表示</value>
</data>
<data name="SideMenu" xml:space="preserve">
<value>SideMenu</value>
</data>
<data name="Grid" xml:space="preserve">
<value>Grid</value>
</data>
<data name="BasicLayout" xml:space="preserve">
<value>基本レイアウト</value>
</data>
<data name="ColumnSpacing" xml:space="preserve">
<value>列スペース</value>
</data>
<data name="HybridLayout" xml:space="preserve">
<value>混合レイアウト</value>
</data>
<data name="ColumnOffset" xml:space="preserve">
<value>列オフセット</value>
</data>
<data name="ResponsiveLayout" xml:space="preserve">
<value>レスポンシブレイアウト</value>
</data>
<data name="Border" xml:space="preserve">
<value>Border</value>
</data>
<data name="Poptip" xml:space="preserve">
<value>Poptip</value>
</data>
<data name="Recommendation" xml:space="preserve">
<value>おすすめ</value>
</data>
<data name="Project" xml:space="preserve">
<value>プロジェクト</value>
</data>
<data name="RangeSlider" xml:space="preserve">
<value>RangeSlider</value>
</data>
<data name="RelativePanel" xml:space="preserve">
<value>RelativePanel</value>
</data>
<data name="On" xml:space="preserve">
<value>On</value>
</data>
<data name="Off" xml:space="preserve">
<value>Off</value>
</data>
<data name="ButtonGroup" xml:space="preserve">
<value>ButtonGroup</value>
</data>
<data name="Card" xml:space="preserve">
<value>Card</value>
</data>
<data name="TextDialogWithTimer" xml:space="preserve">
<value>TextDialog, タイマーあり</value>
</data>
<data name="Magnifier" xml:space="preserve">
<value>Magnifier</value>
</data>
<data name="ImageBlock" xml:space="preserve">
<value>ImageBlock</value>
</data>
<data name="RunningBlock" xml:space="preserve">
<value>RunningBlock</value>
</data>
<data name="HoneycombPanel" xml:space="preserve">
<value>HoneycombPanel</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>アイテム追加</value>
</data>
<data name="RemoveItem" xml:space="preserve">
<value>アイテム削除</value>
</data>
<data name="Sprite" xml:space="preserve">
<value>Sprite</value>
</data>
<data name="OpenSprite" xml:space="preserve">
<value>Spriteを開く</value>
</data>
<data name="Notification" xml:space="preserve">
<value>Notification</value>
</data>
<data name="SendNotification" xml:space="preserve">
<value>通知を送信</value>
</data>
<data name="StaysOpen" xml:space="preserve">
<value>開いたままにする</value>
</data>
<data name="FloatingBlock" xml:space="preserve">
<value>FloatingBlock</value>
</data>
<data name="SplitButton" xml:space="preserve">
<value>SplitButton</value>
</data>
<data name="Tools" xml:space="preserve">
<value>ツール</value>
</data>
<data name="HatchBrushGenerator" xml:space="preserve">
<value>HatchBrushGenerator</value>
</data>
<data name="Morphing Animation" xml:space="preserve">
<value>Morphing Animation</value>
</data>
<data name="Divider" xml:space="preserve">
<value>Divider</value>
</data>
<data name="PoptipPositionStr" xml:space="preserve">
<value>top-start;top;top-end;right-start;right;right-end;bottom-end;bottom;bottom-start;left-end;left;left-start</value>
</data>
<data name="TransitioningContentControl" xml:space="preserve">
<value>TransitioningContentControl</value>
</data>
<data name="Drawer" xml:space="preserve">
<value>Drawer</value>
</data>
<data name="Documentation" xml:space="preserve">
<value>ドキュメント</value>
</data>
<data name="Effects" xml:space="preserve">
<value>Effects</value>
</data>
<data name="Website" xml:space="preserve">
<value>ウェブサイト</value>
</data>
<data name="Vsix" xml:space="preserve">
<value>Vsix</value>
</data>
<data name="Doc_en" xml:space="preserve">
<value>英語ドキュメント</value>
</data>
<data name="Doc_cn" xml:space="preserve">
<value>中国語ドキュメント</value>
</data>
<data name="Demo" xml:space="preserve">
<value>デモ</value>
</data>
<data name="PinBox" xml:space="preserve">
<value>PinBox</value>
</data>
<data name="FlowDocumentScrollViewer" xml:space="preserve">
<value>FlowDocumentScrollViewer</value>
</data>
<data name="OpenGlowWindow" xml:space="preserve">
<value>GlowWindowを開く</value>
</data>
<data name="FlowDocument" xml:space="preserve">
<value>FlowDocument</value>
</data>
<data name="FlowDocumentPageViewer" xml:space="preserve">
<value>FlowDocumentPageViewer</value>
</data>
<data name="FlowDocumentReader" xml:space="preserve">
<value>FlowDocumentReader</value>
</data>
<data name="OpenNativeCommonWindow" xml:space="preserve">
<value>標準のウインドウを開く</value>
</data>
<data name="OpenNavigationWindow" xml:space="preserve">
<value>ナビゲーションウインドウを開く</value>
</data>
<data name="Frame" xml:space="preserve">
<value>Frame</value>
</data>
<data name="PracticalDemos" xml:space="preserve">
<value>実用例</value>
</data>
<data name="StartScreenshot" xml:space="preserve">
<value>スクリーンショット開始</value>
</data>
<data name="Screenshot" xml:space="preserve">
<value>Screenshot</value>
</data>
<data name="TextDialogInControl" xml:space="preserve">
<value>TextDialogコントロール内</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="PropertyGrid" xml:space="preserve">
<value>PropertyGrid</value>
</data>
<data name="ImageSelector" xml:space="preserve">
<value>ImageSelector</value>
</data>
<data name="Geometry" xml:space="preserve">
<value>Geometry</value>
</data>
<data name="CheckComboBox" xml:space="preserve">
<value>CheckComboBox</value>
</data>
<data name="FlexPanel" xml:space="preserve">
<value>FlexPanel</value>
</data>
<data name="OpenTouchDragMoveWindow" xml:space="preserve">
<value>タッチ移動ウインドウを開く</value>
</data>
<data name="UniformSpacingPanel" xml:space="preserve">
<value>UniformSpacingPanel</value>
</data>
<data name="Misc" xml:space="preserve">
<value>Misc</value>
</data>
<data name="Interacting" xml:space="preserve">
<value>Interacting</value>
</data>
<data name="DataEntry" xml:space="preserve">
<value>Data Entry</value>
</data>
<data name="DataDisplay" xml:space="preserve">
<value>Data Display</value>
</data>
<data name="Navigation" xml:space="preserve">
<value>Navigation</value>
</data>
<data name="Layout" xml:space="preserve">
<value>Layout</value>
</data>
<data name="Feedback" xml:space="preserve">
<value>Feedback</value>
</data>
<data name="Empty" xml:space="preserve">
<value>Empty</value>
</data>
<data name="ElementGroup" xml:space="preserve">
<value>ElementGroup</value>
</data>
<data name="AutoCompleteTextBox" xml:space="preserve">
<value>AutoCompleteTextBox</value>
</data>
<data name="Watermark" xml:space="preserve">
<value>Watermark</value>
</data>
<data name="CloseMainWindowDialog" xml:space="preserve">
<value>Close main window dialog</value>
</data>
</root>

View File

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="About" xml:space="preserve">
<value>About</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>Add an item</value>
</data>
<data name="AnimationPath" xml:space="preserve">
<value>AnimationPath</value>
</data>
<data name="AppClosingTip" xml:space="preserve">
<value>The tray icon is open and will hide the window instead of closing the program</value>
</data>
<data name="Ask" xml:space="preserve">
<value>Ask</value>
</data>
<data name="Badge" xml:space="preserve">
<value>Badge</value>
</data>
<data name="BasicInfo" xml:space="preserve">
<value>Fill in the basic information</value>
</data>
<data name="BasicLayout" xml:space="preserve">
<value>Basic layout</value>
</data>
<data name="Blink" xml:space="preserve">
<value>Blink</value>
</data>
<data name="Blog" xml:space="preserve">
<value>Blog</value>
</data>
<data name="Border" xml:space="preserve">
<value>Border</value>
</data>
<data name="Brush" xml:space="preserve">
<value>Brush</value>
</data>
<data name="Button" xml:space="preserve">
<value>Button</value>
</data>
<data name="ButtonCustom" xml:space="preserve">
<value>Custom button</value>
</data>
<data name="ButtonGroup" xml:space="preserve">
<value>ButtonGroup</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>Calendar</value>
</data>
<data name="CalendarWithClock" xml:space="preserve">
<value>CalendarWithClock</value>
</data>
<data name="Card" xml:space="preserve">
<value>Card</value>
</data>
<data name="Carousel" xml:space="preserve">
<value>Carousel</value>
</data>
<data name="ChangeLangAsk" xml:space="preserve">
<value>Whether to restart to change the language?</value>
</data>
<data name="ChatBubble" xml:space="preserve">
<value>ChatBubble</value>
</data>
<data name="Chatroom" xml:space="preserve">
<value>Chatroom</value>
</data>
<data name="CheckBox" xml:space="preserve">
<value>CheckBox</value>
</data>
<data name="CirclePanel" xml:space="preserve">
<value>CirclePanel</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Clear</value>
</data>
<data name="Click2Count" xml:space="preserve">
<value>Click to count</value>
</data>
<data name="Clock" xml:space="preserve">
<value>Clock</value>
</data>
<data name="ColorPicker" xml:space="preserve">
<value>ColorPicker</value>
</data>
<data name="ColumnOffset" xml:space="preserve">
<value>Column offset</value>
</data>
<data name="ColumnSpacing" xml:space="preserve">
<value>Column spacing</value>
</data>
<data name="ComboBox" xml:space="preserve">
<value>ComboBox</value>
</data>
<data name="ComingSoon" xml:space="preserve">
<value>Coming Soon</value>
</data>
<data name="Comment" xml:space="preserve">
<value>Comment</value>
</data>
<data name="Common" xml:space="preserve">
<value>Common</value>
</data>
<data name="CompareSlider" xml:space="preserve">
<value>CompareSlider</value>
</data>
<data name="Complete" xml:space="preserve">
<value>Complete</value>
</data>
<data name="ContentDemoStr" xml:space="preserve">
<value>This is the content</value>
</data>
<data name="Contributors" xml:space="preserve">
<value>Contributors</value>
</data>
<data name="Controls" xml:space="preserve">
<value>Controls</value>
</data>
<data name="CoverFlow" xml:space="preserve">
<value>CoverFlow</value>
</data>
<data name="CoverView" xml:space="preserve">
<value>CoverView</value>
</data>
<data name="Danger" xml:space="preserve">
<value>Danger</value>
</data>
<data name="DataGrid" xml:space="preserve">
<value>DataGrid</value>
</data>
<data name="DatePicker" xml:space="preserve">
<value>DatePicker</value>
</data>
<data name="DateTimePicker" xml:space="preserve">
<value>DateTimePicker</value>
</data>
<data name="Default" xml:space="preserve">
<value>Default</value>
</data>
<data name="Demo" xml:space="preserve">
<value>Demo</value>
</data>
<data name="Dialog" xml:space="preserve">
<value>Dialog</value>
</data>
<data name="DialogDemo" xml:space="preserve">
<value>Dialog demo</value>
</data>
<data name="Divider" xml:space="preserve">
<value>Divider</value>
</data>
<data name="Documentation" xml:space="preserve">
<value>Documentation</value>
</data>
<data name="Doc_cn" xml:space="preserve">
<value>Chinese document</value>
</data>
<data name="Doc_en" xml:space="preserve">
<value>English document</value>
</data>
<data name="DragHere" xml:space="preserve">
<value>Drag here</value>
</data>
<data name="Drawer" xml:space="preserve">
<value>Drawer</value>
</data>
<data name="Effects" xml:space="preserve">
<value>Effects</value>
</data>
<data name="Email" xml:space="preserve">
<value>Email</value>
</data>
<data name="Error" xml:space="preserve">
<value>Error</value>
</data>
<data name="Exit" xml:space="preserve">
<value>Exit</value>
</data>
<data name="Expander" xml:space="preserve">
<value>Expander</value>
</data>
<data name="Fatal" xml:space="preserve">
<value>Fatal</value>
</data>
<data name="FlipClock" xml:space="preserve">
<value>FlipClock</value>
</data>
<data name="FloatingBlock" xml:space="preserve">
<value>FloatingBlock</value>
</data>
<data name="GifImage" xml:space="preserve">
<value>GifImage</value>
</data>
<data name="GotoTop" xml:space="preserve">
<value>GotoTop</value>
</data>
<data name="Gravatar" xml:space="preserve">
<value>Gravatar</value>
</data>
<data name="Grid" xml:space="preserve">
<value>Grid</value>
</data>
<data name="GroupBox" xml:space="preserve">
<value>GroupBox</value>
</data>
<data name="Groups" xml:space="preserve">
<value>Groups</value>
</data>
<data name="Growl" xml:space="preserve">
<value>Growl</value>
</data>
<data name="GrowlAsk" xml:space="preserve">
<value>A new version has been detected!Do you want to update?</value>
</data>
<data name="GrowlDemo" xml:space="preserve">
<value>Growl demo</value>
</data>
<data name="GrowlError" xml:space="preserve">
<value>Connection failed. please check your network!</value>
</data>
<data name="GrowlFatal" xml:space="preserve">
<value>The program has crashed~~~</value>
</data>
<data name="GrowlInfo" xml:space="preserve">
<value>It's a nice day today~~~</value>
</data>
<data name="GrowlSuccess" xml:space="preserve">
<value>File saved successfully!</value>
</data>
<data name="GrowlWarning" xml:space="preserve">
<value>Disk space is running out!</value>
</data>
<data name="HatchBrushGenerator" xml:space="preserve">
<value>HatchBrushGenerator</value>
</data>
<data name="HoneycombPanel" xml:space="preserve">
<value>HoneycombPanel</value>
</data>
<data name="HybridLayout" xml:space="preserve">
<value>Hybrid layout</value>
</data>
<data name="Ignore" xml:space="preserve">
<value>Ignore</value>
</data>
<data name="ImageBlock" xml:space="preserve">
<value>ImageBlock</value>
</data>
<data name="ImageBrowser" xml:space="preserve">
<value>ImageBrowser</value>
</data>
<data name="Index" xml:space="preserve">
<value>Index</value>
</data>
<data name="Info" xml:space="preserve">
<value>Info</value>
</data>
<data name="InteractiveDialog" xml:space="preserve">
<value>Interactive Dialog</value>
</data>
<data name="IsNotPhone" xml:space="preserve">
<value>It's not a phone number</value>
</data>
<data name="Label" xml:space="preserve">
<value>Label</value>
</data>
<data name="ListBox" xml:space="preserve">
<value>ListBox</value>
</data>
<data name="ListView" xml:space="preserve">
<value>ListView</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Loading</value>
</data>
<data name="Magnifier" xml:space="preserve">
<value>Magnifier</value>
</data>
<data name="Menu" xml:space="preserve">
<value>Menu</value>
</data>
<data name="MessageBox" xml:space="preserve">
<value>MessageBox</value>
</data>
<data name="Morphing Animation" xml:space="preserve">
<value>Morphing Animation</value>
</data>
<data name="Name" xml:space="preserve">
<value>Name</value>
</data>
<data name="NewWindow" xml:space="preserve">
<value>New window</value>
</data>
<data name="Next" xml:space="preserve">
<value>Next</value>
</data>
<data name="Notification" xml:space="preserve">
<value>Notification</value>
</data>
<data name="NotifyIcon" xml:space="preserve">
<value>NotifyIcon</value>
</data>
<data name="NumericUpDown" xml:space="preserve">
<value>NumericUpDown</value>
</data>
<data name="Off" xml:space="preserve">
<value>Off</value>
</data>
<data name="Ok" xml:space="preserve">
<value>Ok</value>
</data>
<data name="On" xml:space="preserve">
<value>On</value>
</data>
<data name="OpenBlurWindow" xml:space="preserve">
<value>open blur window</value>
</data>
<data name="OpenCommonWindow" xml:space="preserve">
<value>open common window</value>
</data>
<data name="OpenCustomContentWindow" xml:space="preserve">
<value>open custom content window</value>
</data>
<data name="OpenCustomMessageWindow" xml:space="preserve">
<value>open custom message window</value>
</data>
<data name="OpenCustomNonClientAreaWindow" xml:space="preserve">
<value>open custom Non-client Area window</value>
</data>
<data name="OpenImageBrowser" xml:space="preserve">
<value>Click to open image browser</value>
</data>
<data name="OpenMessageWindow" xml:space="preserve">
<value>open message window</value>
</data>
<data name="OpenMouseFollowWindow" xml:space="preserve">
<value>open mouse follow window</value>
</data>
<data name="OpenNoNonClientAreaDragableWindow" xml:space="preserve">
<value>open no Non-client Area dragable window</value>
</data>
<data name="OpenPanel" xml:space="preserve">
<value>Open Panel</value>
</data>
<data name="OpenSprite" xml:space="preserve">
<value>Open sprite</value>
</data>
<data name="OutlineText" xml:space="preserve">
<value>OutlineText</value>
</data>
<data name="Pagination" xml:space="preserve">
<value>Pagination</value>
</data>
<data name="PasswordBox" xml:space="preserve">
<value>PasswordBox</value>
</data>
<data name="PleaseInput" xml:space="preserve">
<value>Please input...</value>
</data>
<data name="PleaseWait" xml:space="preserve">
<value>Please wait...</value>
</data>
<data name="PlsEnterContent" xml:space="preserve">
<value>Please enter content</value>
</data>
<data name="PlsEnterEmail" xml:space="preserve">
<value>please enter email</value>
</data>
<data name="PlsEnterKey" xml:space="preserve">
<value>Please input a keyword</value>
</data>
<data name="Poptip" xml:space="preserve">
<value>Poptip</value>
</data>
<data name="PoptipPositionStr" xml:space="preserve">
<value>top-start;top;top-end;right-start;right;right-end;bottom-end;bottom;bottom-start;left-end;left;left-start</value>
</data>
<data name="Prev" xml:space="preserve">
<value>Prev</value>
</data>
<data name="PreviewSlider" xml:space="preserve">
<value>PreviewSlider</value>
</data>
<data name="Primary" xml:space="preserve">
<value>Primary</value>
</data>
<data name="ProgressBar" xml:space="preserve">
<value>ProgressBar</value>
</data>
<data name="ProgressButton" xml:space="preserve">
<value>ProgressButton</value>
</data>
<data name="Project" xml:space="preserve">
<value>Project</value>
</data>
<data name="PushToTalk" xml:space="preserve">
<value>Push to talk</value>
</data>
<data name="QQGroup" xml:space="preserve">
<value>QQ Group</value>
</data>
<data name="RadioButton" xml:space="preserve">
<value>RadioButton</value>
</data>
<data name="RangeSlider" xml:space="preserve">
<value>RangeSlider</value>
</data>
<data name="Rate" xml:space="preserve">
<value>Rate</value>
</data>
<data name="Recommendation" xml:space="preserve">
<value>Recommendation</value>
</data>
<data name="Register" xml:space="preserve">
<value>Register</value>
</data>
<data name="RelativePanel" xml:space="preserve">
<value>RelativePanel</value>
</data>
<data name="Remark" xml:space="preserve">
<value>Remark</value>
</data>
<data name="RemoveItem" xml:space="preserve">
<value>Remove an item</value>
</data>
<data name="RepeatButton" xml:space="preserve">
<value>RepeatButton</value>
</data>
<data name="Reply" xml:space="preserve">
<value>Reply</value>
</data>
<data name="Repository" xml:space="preserve">
<value>Repository</value>
</data>
<data name="ResponsiveLayout" xml:space="preserve">
<value>Responsive layout</value>
</data>
<data name="RichTextBox" xml:space="preserve">
<value>RichTextBox</value>
</data>
<data name="RightClickHere" xml:space="preserve">
<value>Right click here</value>
</data>
<data name="RunningBlock" xml:space="preserve">
<value>RunningBlock</value>
</data>
<data name="ScrollViewer" xml:space="preserve">
<value>ScrollViewer</value>
</data>
<data name="SearchBar" xml:space="preserve">
<value>SearchBar</value>
</data>
<data name="Second" xml:space="preserve">
<value>Sec</value>
</data>
<data name="Selected" xml:space="preserve">
<value>Selected</value>
</data>
<data name="SendNotification" xml:space="preserve">
<value>Send notification</value>
</data>
<data name="Shield" xml:space="preserve">
<value>Shield</value>
</data>
<data name="ShowInCurrentWindow" xml:space="preserve">
<value>Show in the current window</value>
</data>
<data name="ShowInMainWindow" xml:space="preserve">
<value>Show in the main window</value>
</data>
<data name="ShowRowNumber" xml:space="preserve">
<value>ShowRowNumber</value>
</data>
<data name="SideMenu" xml:space="preserve">
<value>SideMenu</value>
</data>
<data name="Slider" xml:space="preserve">
<value>Slider</value>
</data>
<data name="SplitButton" xml:space="preserve">
<value>SplitButton</value>
</data>
<data name="Sprite" xml:space="preserve">
<value>Sprite</value>
</data>
<data name="StaysOpen" xml:space="preserve">
<value>Stays open</value>
</data>
<data name="Step" xml:space="preserve">
<value>Step</value>
</data>
<data name="StepBar" xml:space="preserve">
<value>StepBar</value>
</data>
<data name="Styles" xml:space="preserve">
<value>Styles</value>
</data>
<data name="SubTitle" xml:space="preserve">
<value>Subtitle</value>
</data>
<data name="Success" xml:space="preserve">
<value>Success</value>
</data>
<data name="TabControl" xml:space="preserve">
<value>TabControl</value>
</data>
<data name="Tag" xml:space="preserve">
<value>Tag</value>
</data>
<data name="Text" xml:space="preserve">
<value>Text</value>
</data>
<data name="TextBlock" xml:space="preserve">
<value>TextBlock</value>
</data>
<data name="TextBox" xml:space="preserve">
<value>TextBox</value>
</data>
<data name="TextDialog" xml:space="preserve">
<value>TextDialog</value>
</data>
<data name="TextDialogWithTimer" xml:space="preserve">
<value>TextDialog with timer</value>
</data>
<data name="TimeBar" xml:space="preserve">
<value>TimeBar</value>
</data>
<data name="TimePicker" xml:space="preserve">
<value>TimePicker</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Prompt</value>
</data>
<data name="Title" xml:space="preserve">
<value>Title</value>
</data>
<data name="TitleDemoStr1" xml:space="preserve">
<value>This is the title</value>
</data>
<data name="TitleDemoStr2" xml:space="preserve">
<value>This item must be filled in</value>
</data>
<data name="TitleDemoStr3" xml:space="preserve">
<value>The title is on the left</value>
</data>
<data name="ToggleButton" xml:space="preserve">
<value>ToggleButton</value>
</data>
<data name="ToolBar" xml:space="preserve">
<value>ToolBar</value>
</data>
<data name="Tools" xml:space="preserve">
<value>Tools</value>
</data>
<data name="Transfer" xml:space="preserve">
<value>Transfer</value>
</data>
<data name="TransitioningContentControl" xml:space="preserve">
<value>TransitioningContentControl</value>
</data>
<data name="TreeView" xml:space="preserve">
<value>TreeView</value>
</data>
<data name="Try2CloseApp" xml:space="preserve">
<value>Try to close app?</value>
</data>
<data name="Type" xml:space="preserve">
<value>Type</value>
</data>
<data name="UploadFile" xml:space="preserve">
<value>Upload file</value>
</data>
<data name="UploadStr" xml:space="preserve">
<value>Upload;Uploading</value>
</data>
<data name="Visibility" xml:space="preserve">
<value>Visibility</value>
</data>
<data name="Vsix" xml:space="preserve">
<value>Vsix</value>
</data>
<data name="Warning" xml:space="preserve">
<value>Warning</value>
</data>
<data name="WaterfallPanel" xml:space="preserve">
<value>WaterfallPanel</value>
</data>
<data name="Website" xml:space="preserve">
<value>Website</value>
</data>
<data name="Window" xml:space="preserve">
<value>Window</value>
</data>
<data name="PinBox" xml:space="preserve">
<value>PinBox</value>
</data>
<data name="FlowDocumentScrollViewer" xml:space="preserve">
<value>FlowDocumentScrollViewer</value>
</data>
<data name="OpenGlowWindow" xml:space="preserve">
<value>Open glowWindow</value>
</data>
<data name="FlowDocument" xml:space="preserve">
<value>FlowDocument</value>
</data>
<data name="FlowDocumentPageViewer" xml:space="preserve">
<value>FlowDocumentPageViewer</value>
</data>
<data name="FlowDocumentReader" xml:space="preserve">
<value>FlowDocumentReader</value>
</data>
<data name="OpenNativeCommonWindow" xml:space="preserve">
<value>Open native common window</value>
</data>
<data name="OpenNavigationWindow" xml:space="preserve">
<value>Open navigation window</value>
</data>
<data name="Frame" xml:space="preserve">
<value>Frame</value>
</data>
<data name="PracticalDemos" xml:space="preserve">
<value>Practical demos</value>
</data>
<data name="StartScreenshot" xml:space="preserve">
<value>Start screenshot</value>
</data>
<data name="Screenshot" xml:space="preserve">
<value>Screenshot</value>
</data>
<data name="TextDialogInControl" xml:space="preserve">
<value>TextDialog(In control)</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="PropertyGrid" xml:space="preserve">
<value>PropertyGrid</value>
</data>
<data name="ImageSelector" xml:space="preserve">
<value>ImageSelector</value>
</data>
<data name="Geometry" xml:space="preserve">
<value>Geometry</value>
</data>
<data name="CheckComboBox" xml:space="preserve">
<value>CheckComboBox</value>
</data>
<data name="FlexPanel" xml:space="preserve">
<value>FlexPanel</value>
</data>
<data name="OpenTouchDragMoveWindow" xml:space="preserve">
<value>open touch drag move window</value>
</data>
<data name="UniformSpacingPanel" xml:space="preserve">
<value>UniformSpacingPanel</value>
</data>
<data name="Misc" xml:space="preserve">
<value>Misc</value>
</data>
<data name="Interacting" xml:space="preserve">
<value>Interacting</value>
</data>
<data name="DataEntry" xml:space="preserve">
<value>Data Entry</value>
</data>
<data name="DataDisplay" xml:space="preserve">
<value>Data Display</value>
</data>
<data name="Navigation" xml:space="preserve">
<value>Navigation</value>
</data>
<data name="Layout" xml:space="preserve">
<value>Layout</value>
</data>
<data name="Feedback" xml:space="preserve">
<value>Feedback</value>
</data>
<data name="Empty" xml:space="preserve">
<value>Empty</value>
</data>
<data name="ElementGroup" xml:space="preserve">
<value>ElementGroup</value>
</data>
<data name="AutoCompleteTextBox" xml:space="preserve">
<value>AutoCompleteTextBox</value>
</data>
<data name="Watermark" xml:space="preserve">
<value>Watermark</value>
</data>
<data name="CloseMainWindowDialog" xml:space="preserve">
<value>Close main window dialog</value>
</data>
</root>

View File

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Controls" xml:space="preserve">
<value>Kontrolki</value>
</data>
<data name="Styles" xml:space="preserve">
<value>Style</value>
</data>
<data name="Growl" xml:space="preserve">
<value>Growl</value>
</data>
<data name="GrowlInfo" xml:space="preserve">
<value>Mamy dziś piękny dzień~~~</value>
</data>
<data name="GrowlSuccess" xml:space="preserve">
<value>Pomyślnie zapisano plik!</value>
</data>
<data name="GrowlWarning" xml:space="preserve">
<value>Kończy się miejsce na dysku!</value>
</data>
<data name="GrowlError" xml:space="preserve">
<value>Połączenie nieudane. sprawdź swoje połączenie sieciowe!</value>
</data>
<data name="GrowlFatal" xml:space="preserve">
<value>Program się wypłaszczył~~~</value>
</data>
<data name="GrowlAsk" xml:space="preserve">
<value>Znaleziono nową wersję! Czy chcesz zaktualizować?</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Loading</value>
</data>
<data name="ImageBrowser" xml:space="preserve">
<value>ImageBrowser</value>
</data>
<data name="ColorPicker" xml:space="preserve">
<value>ColorPicker</value>
</data>
<data name="Carousel" xml:space="preserve">
<value>Carousel</value>
</data>
<data name="CompareSlider" xml:space="preserve">
<value>CompareSlider</value>
</data>
<data name="TimeBar" xml:space="preserve">
<value>TimeBar</value>
</data>
<data name="Expander" xml:space="preserve">
<value>Expander</value>
</data>
<data name="Pagination" xml:space="preserve">
<value>Pagination</value>
</data>
<data name="OpenImageBrowser" xml:space="preserve">
<value>Click to open image browser</value>
</data>
<data name="ProgressBar" xml:space="preserve">
<value>ProgressBar</value>
</data>
<data name="AnimationPath" xml:space="preserve">
<value>AnimationPath</value>
</data>
<data name="Button" xml:space="preserve">
<value>Button</value>
</data>
<data name="ToggleButton" xml:space="preserve">
<value>ToggleButton</value>
</data>
<data name="TabControl" xml:space="preserve">
<value>TabControl</value>
</data>
<data name="CheckBox" xml:space="preserve">
<value>CheckBox</value>
</data>
<data name="TextBlock" xml:space="preserve">
<value>TextBlock</value>
</data>
<data name="Default" xml:space="preserve">
<value>Default</value>
</data>
<data name="Primary" xml:space="preserve">
<value>Primary</value>
</data>
<data name="Info" xml:space="preserve">
<value>Info</value>
</data>
<data name="Warning" xml:space="preserve">
<value>Warning</value>
</data>
<data name="Danger" xml:space="preserve">
<value>Danger</value>
</data>
<data name="ButtonCustom" xml:space="preserve">
<value>Niestandardowy przycisk</value>
</data>
<data name="Title" xml:space="preserve">
<value>Tytuł</value>
</data>
<data name="StepBar" xml:space="preserve">
<value>StepBar</value>
</data>
<data name="Prev" xml:space="preserve">
<value>Prev</value>
</data>
<data name="Next" xml:space="preserve">
<value>Next</value>
</data>
<data name="Register" xml:space="preserve">
<value>Register</value>
</data>
<data name="BasicInfo" xml:space="preserve">
<value>Wypełnij podstawowe informacje</value>
</data>
<data name="UploadFile" xml:space="preserve">
<value>Wyślij plik</value>
</data>
<data name="Complete" xml:space="preserve">
<value>Complete</value>
</data>
<data name="Clock" xml:space="preserve">
<value>Clock</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>Calendar</value>
</data>
<data name="DatePicker" xml:space="preserve">
<value>DatePicker</value>
</data>
<data name="TimePicker" xml:space="preserve">
<value>TimePicker</value>
</data>
<data name="TextBox" xml:space="preserve">
<value>TextBox</value>
</data>
<data name="ContentDemoStr" xml:space="preserve">
<value>To jest zawartość</value>
</data>
<data name="TitleDemoStr1" xml:space="preserve">
<value>To jest tytuł</value>
</data>
<data name="TitleDemoStr2" xml:space="preserve">
<value>Ten element musi zostać wypełniony</value>
</data>
<data name="PlsEnterContent" xml:space="preserve">
<value>Wprowadź słowo zawartość</value>
</data>
<data name="TitleDemoStr3" xml:space="preserve">
<value>Tytuł jest po lewej stronie</value>
</data>
<data name="Text" xml:space="preserve">
<value>Text</value>
</data>
<data name="SubTitle" xml:space="preserve">
<value>Podtytuł</value>
</data>
<data name="PasswordBox" xml:space="preserve">
<value>PasswordBox</value>
</data>
<data name="CirclePanel" xml:space="preserve">
<value>CirclePanel</value>
</data>
<data name="ComboBox" xml:space="preserve">
<value>ComboBox</value>
</data>
<data name="NumericUpDown" xml:space="preserve">
<value>NumericUpDown</value>
</data>
<data name="DataGrid" xml:space="preserve">
<value>DataGrid</value>
</data>
<data name="Index" xml:space="preserve">
<value>Indeks</value>
</data>
<data name="Name" xml:space="preserve">
<value>Name</value>
</data>
<data name="Type" xml:space="preserve">
<value>Type</value>
</data>
<data name="Remark" xml:space="preserve">
<value>Remark</value>
</data>
<data name="Selected" xml:space="preserve">
<value>Wybrane</value>
</data>
<data name="ListBox" xml:space="preserve">
<value>ListBox</value>
</data>
<data name="TreeView" xml:space="preserve">
<value>TreeView</value>
</data>
<data name="ScrollViewer" xml:space="preserve">
<value>ScrollViewer</value>
</data>
<data name="Window" xml:space="preserve">
<value>Window</value>
</data>
<data name="Menu" xml:space="preserve">
<value>Menu</value>
</data>
<data name="RightClickHere" xml:space="preserve">
<value>Kliknij tu prawym przyciskiem myszy</value>
</data>
<data name="RadioButton" xml:space="preserve">
<value>RadioButton</value>
</data>
<data name="OpenMessageWindow" xml:space="preserve">
<value>open message window</value>
</data>
<data name="OpenCommonWindow" xml:space="preserve">
<value>open common window</value>
</data>
<data name="OpenCustomNonClientAreaWindow" xml:space="preserve">
<value>open custom Non-client Area window</value>
</data>
<data name="OpenMouseFollowWindow" xml:space="preserve">
<value>open mouse follow window</value>
</data>
<data name="OpenCustomContentWindow" xml:space="preserve">
<value>open custom content window</value>
</data>
<data name="Ignore" xml:space="preserve">
<value>Ignoruj</value>
</data>
<data name="Error" xml:space="preserve">
<value>Error</value>
</data>
<data name="Ask" xml:space="preserve">
<value>Ask</value>
</data>
<data name="Fatal" xml:space="preserve">
<value>Fatal</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Clear</value>
</data>
<data name="ChangeLangAsk" xml:space="preserve">
<value>Czy uruchomić ponownie aby zmienić język?</value>
</data>
<data name="About" xml:space="preserve">
<value>Informacje</value>
</data>
<data name="Repository" xml:space="preserve">
<value>Repozytorium</value>
</data>
<data name="Email" xml:space="preserve">
<value>Email</value>
</data>
<data name="Chatroom" xml:space="preserve">
<value>Chatroom</value>
</data>
<data name="Blog" xml:space="preserve">
<value>Blog</value>
</data>
<data name="Brush" xml:space="preserve">
<value>Brush</value>
</data>
<data name="PreviewSlider" xml:space="preserve">
<value>PreviewSlider</value>
</data>
<data name="Contributors" xml:space="preserve">
<value>Współtwórcy</value>
</data>
<data name="Slider" xml:space="preserve">
<value>Slider</value>
</data>
<data name="IsNotPhone" xml:space="preserve">
<value>To nie jest numer telefonu</value>
</data>
<data name="PlsEnterEmail" xml:space="preserve">
<value>wprowadź słowo email</value>
</data>
<data name="Step" xml:space="preserve">
<value>Krok</value>
</data>
<data name="CalendarWithClock" xml:space="preserve">
<value>CalendarWithClock</value>
</data>
<data name="DateTimePicker" xml:space="preserve">
<value>DateTimePicker</value>
</data>
<data name="GroupBox" xml:space="preserve">
<value>GroupBox</value>
</data>
<data name="ListView" xml:space="preserve">
<value>ListView</value>
</data>
<data name="RichTextBox" xml:space="preserve">
<value>RichTextBox</value>
</data>
<data name="ToolBar" xml:space="preserve">
<value>ToolBar</value>
</data>
<data name="Common" xml:space="preserve">
<value>Common</value>
</data>
<data name="ShowRowNumber" xml:space="preserve">
<value>ShowRowNumber</value>
</data>
<data name="SearchBar" xml:space="preserve">
<value>SearchBar</value>
</data>
<data name="Tag" xml:space="preserve">
<value>Tag</value>
</data>
<data name="GifImage" xml:space="preserve">
<value>GifImage</value>
</data>
<data name="OutlineText" xml:space="preserve">
<value>OutlineText</value>
</data>
<data name="QQGroup" xml:space="preserve">
<value>Grupa QQ</value>
</data>
<data name="FlipClock" xml:space="preserve">
<value>FlipClock</value>
</data>
<data name="OpenBlurWindow" xml:space="preserve">
<value>Otwórz BlurWindow</value>
</data>
<data name="Rate" xml:space="preserve">
<value>Rate</value>
</data>
<data name="Shield" xml:space="preserve">
<value>Shield</value>
</data>
<data name="WaterfallPanel" xml:space="preserve">
<value>WaterfallPanel</value>
</data>
<data name="Groups" xml:space="preserve">
<value>Groups</value>
</data>
<data name="CoverView" xml:space="preserve">
<value>CoverView</value>
</data>
<data name="CoverFlow" xml:space="preserve">
<value>CoverFlow</value>
</data>
<data name="PlsEnterKey" xml:space="preserve">
<value>Wprowadź słowo kluczowe</value>
</data>
<data name="OpenNoNonClientAreaDragableWindow" xml:space="preserve">
<value>open no Non-client Area dragable window</value>
</data>
<data name="DragHere" xml:space="preserve">
<value>Przeciągnij tutaj</value>
</data>
<data name="MessageBox" xml:space="preserve">
<value>MessageBox</value>
</data>
<data name="ProgressButton" xml:space="preserve">
<value>ProgressButton</value>
</data>
<data name="UploadStr" xml:space="preserve">
<value>Wyślij;Wysyłanie</value>
</data>
<data name="OpenCustomMessageWindow" xml:space="preserve">
<value>open custom message window</value>
</data>
<data name="Transfer" xml:space="preserve">
<value>Transfer</value>
</data>
<data name="ChatBubble" xml:space="preserve">
<value>ChatBubble</value>
</data>
<data name="PushToTalk" xml:space="preserve">
<value>Naciśnij i mów</value>
</data>
<data name="Second" xml:space="preserve">
<value>Sek</value>
</data>
<data name="Label" xml:space="preserve">
<value>Label</value>
</data>
<data name="GotoTop" xml:space="preserve">
<value>GotoTop</value>
</data>
<data name="NotifyIcon" xml:space="preserve">
<value>NotifyIcon</value>
</data>
<data name="Badge" xml:space="preserve">
<value>Badge</value>
</data>
<data name="Gravatar" xml:space="preserve">
<value>Gravatar</value>
</data>
<data name="ComingSoon" xml:space="preserve">
<value>Wkrótce</value>
</data>
<data name="Comment" xml:space="preserve">
<value>Comment</value>
</data>
<data name="Reply" xml:space="preserve">
<value>Odpowiedz</value>
</data>
<data name="Dialog" xml:space="preserve">
<value>Dialog</value>
</data>
<data name="TextDialog" xml:space="preserve">
<value>TextDialog</value>
</data>
<data name="PleaseWait" xml:space="preserve">
<value>Proszę czekać...</value>
</data>
<data name="GrowlDemo" xml:space="preserve">
<value>Growl demo</value>
</data>
<data name="NewWindow" xml:space="preserve">
<value>Nowe okno</value>
</data>
<data name="Visibility" xml:space="preserve">
<value>Visibility</value>
</data>
<data name="Blink" xml:space="preserve">
<value>Blink</value>
</data>
<data name="Exit" xml:space="preserve">
<value>Exit</value>
</data>
<data name="OpenPanel" xml:space="preserve">
<value>Otwórz Panel</value>
</data>
<data name="AppClosingTip" xml:space="preserve">
<value>Ikona w zasobniku systemowym jest aktywna i przez to okno nie zostanie zamknięte, tylko ukryte</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Podpowiedź</value>
</data>
<data name="Try2CloseApp" xml:space="preserve">
<value>Chcesz zamknąć aplikację?</value>
</data>
<data name="InteractiveDialog" xml:space="preserve">
<value>Interaktywne okno dialogowe</value>
</data>
<data name="Ok" xml:space="preserve">
<value>Ok</value>
</data>
<data name="PleaseInput" xml:space="preserve">
<value>Wprowadź dane...</value>
</data>
<data name="Click2Count" xml:space="preserve">
<value>Kliknij, aby policzyć</value>
</data>
<data name="RepeatButton" xml:space="preserve">
<value>RepeatButton</value>
</data>
<data name="DialogDemo" xml:space="preserve">
<value>Demo okna dialogowego</value>
</data>
<data name="ShowInCurrentWindow" xml:space="preserve">
<value>Pokaż w tym oknie</value>
</data>
<data name="ShowInMainWindow" xml:space="preserve">
<value>Pokaż w głównym oknie</value>
</data>
<data name="SideMenu" xml:space="preserve">
<value>SideMenu</value>
</data>
<data name="Grid" xml:space="preserve">
<value>Grid</value>
</data>
<data name="BasicLayout" xml:space="preserve">
<value>Podstawowy układ</value>
</data>
<data name="ColumnSpacing" xml:space="preserve">
<value>Rozstaw kolumn</value>
</data>
<data name="HybridLayout" xml:space="preserve">
<value>Układ hybrydowy</value>
</data>
<data name="ColumnOffset" xml:space="preserve">
<value>Przesunięcie kolumny</value>
</data>
<data name="ResponsiveLayout" xml:space="preserve">
<value>Responsywny układ</value>
</data>
<data name="Border" xml:space="preserve">
<value>Border</value>
</data>
<data name="Poptip" xml:space="preserve">
<value>Poptip</value>
</data>
<data name="Recommendation" xml:space="preserve">
<value>Rekomendacje</value>
</data>
<data name="Project" xml:space="preserve">
<value>Projekt</value>
</data>
<data name="RangeSlider" xml:space="preserve">
<value>RangeSlider</value>
</data>
<data name="RelativePanel" xml:space="preserve">
<value>RelativePanel</value>
</data>
<data name="On" xml:space="preserve">
<value>On</value>
</data>
<data name="Off" xml:space="preserve">
<value>Off</value>
</data>
<data name="ButtonGroup" xml:space="preserve">
<value>ButtonGroup</value>
</data>
<data name="Card" xml:space="preserve">
<value>Card</value>
</data>
<data name="TextDialogWithTimer" xml:space="preserve">
<value>TextDialog z zegarem</value>
</data>
<data name="Magnifier" xml:space="preserve">
<value>Magnifier</value>
</data>
<data name="ImageBlock" xml:space="preserve">
<value>ImageBlock</value>
</data>
<data name="RunningBlock" xml:space="preserve">
<value>RunningBlock</value>
</data>
<data name="HoneycombPanel" xml:space="preserve">
<value>HoneycombPanel</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>Dodaj element</value>
</data>
<data name="RemoveItem" xml:space="preserve">
<value>Usuń element</value>
</data>
<data name="Sprite" xml:space="preserve">
<value>Sprite</value>
</data>
<data name="OpenSprite" xml:space="preserve">
<value>Otwórz Sprite</value>
</data>
<data name="Notification" xml:space="preserve">
<value>Notification</value>
</data>
<data name="SendNotification" xml:space="preserve">
<value>Wyślij powiadomienie</value>
</data>
<data name="StaysOpen" xml:space="preserve">
<value>Pozostaw otwarte</value>
</data>
<data name="FloatingBlock" xml:space="preserve">
<value>FloatingBlock</value>
</data>
<data name="SplitButton" xml:space="preserve">
<value>SplitButton</value>
</data>
<data name="Tools" xml:space="preserve">
<value>Tools</value>
</data>
<data name="HatchBrushGenerator" xml:space="preserve">
<value>HatchBrushGenerator</value>
</data>
<data name="Morphing Animation" xml:space="preserve">
<value>Animacja przekształcająca</value>
</data>
<data name="Divider" xml:space="preserve">
<value>Divider</value>
</data>
<data name="PoptipPositionStr" xml:space="preserve">
<value>top-start;top;top-end;right-start;right;right-end;bottom-end;bottom;bottom-start;left-end;left;left-start</value>
</data>
<data name="TransitioningContentControl" xml:space="preserve">
<value>TransitioningContentControl</value>
</data>
<data name="Drawer" xml:space="preserve">
<value>Drawer</value>
</data>
<data name="Documentation" xml:space="preserve">
<value>Dokumentacja</value>
</data>
<data name="Effects" xml:space="preserve">
<value>Efekty</value>
</data>
<data name="Website" xml:space="preserve">
<value>Strona internetowa</value>
</data>
<data name="Vsix" xml:space="preserve">
<value>Vsix</value>
</data>
<data name="Doc_en" xml:space="preserve">
<value>Angielska dokumentacja</value>
</data>
<data name="Doc_cn" xml:space="preserve">
<value>Chińska dokumentacja</value>
</data>
<data name="Demo" xml:space="preserve">
<value>Demo</value>
</data>
<data name="PinBox" xml:space="preserve">
<value>PinBox</value>
</data>
<data name="FlowDocumentScrollViewer" xml:space="preserve">
<value>FlowDocumentScrollViewer</value>
</data>
<data name="OpenGlowWindow" xml:space="preserve">
<value>Otwórz GlowWindow</value>
</data>
<data name="FlowDocument" xml:space="preserve">
<value>FlowDocument</value>
</data>
<data name="FlowDocumentPageViewer" xml:space="preserve">
<value>FlowDocumentPageViewer</value>
</data>
<data name="FlowDocumentReader" xml:space="preserve">
<value>FlowDocumentReader</value>
</data>
<data name="OpenNativeCommonWindow" xml:space="preserve">
<value>Otwórz NativeCommonWindow</value>
</data>
<data name="OpenNavigationWindow" xml:space="preserve">
<value>Otwórz NavigationWindow</value>
</data>
<data name="Frame" xml:space="preserve">
<value>Frame</value>
</data>
<data name="PracticalDemos" xml:space="preserve">
<value>Praktyczne dema</value>
</data>
<data name="StartScreenshot" xml:space="preserve">
<value>Zrób zrzut ekranu</value>
</data>
<data name="Screenshot" xml:space="preserve">
<value>Screenshot</value>
</data>
<data name="TextDialogInControl" xml:space="preserve">
<value>TextDialog (wewnątrz kontrolki)</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Wyszukuje zlokalizowany ciąg podobny do „{0}”.</value>
</data>
<data name="PropertyGrid" xml:space="preserve">
<value>PropertyGrid</value>
</data>
<data name="ImageSelector" xml:space="preserve">
<value>ImageSelector</value>
</data>
<data name="Geometry" xml:space="preserve">
<value>Geometry</value>
</data>
<data name="CheckComboBox" xml:space="preserve">
<value>CheckComboBox</value>
</data>
<data name="FlexPanel" xml:space="preserve">
<value>FlexPanel</value>
</data>
<data name="OpenTouchDragMoveWindow" xml:space="preserve">
<value>Otwórz TouchDragMoveWindow</value>
</data>
<data name="UniformSpacingPanel" xml:space="preserve">
<value>UniformSpacingPanel</value>
</data>
<data name="Misc" xml:space="preserve">
<value>Różne</value>
</data>
<data name="Interacting" xml:space="preserve">
<value>Interacting</value>
</data>
<data name="DataEntry" xml:space="preserve">
<value>Wprowadzanie danych</value>
</data>
<data name="DataDisplay" xml:space="preserve">
<value>Wyświetlanie danych</value>
</data>
<data name="Navigation" xml:space="preserve">
<value>Navigation</value>
</data>
<data name="Layout" xml:space="preserve">
<value>Layout</value>
</data>
<data name="Feedback" xml:space="preserve">
<value>Informacje zwrotne</value>
</data>
<data name="Success" xml:space="preserve">
<value>Success</value>
</data>
<data name="Empty" xml:space="preserve">
<value>Empty</value>
</data>
<data name="ElementGroup" xml:space="preserve">
<value>ElementGroup</value>
</data>
<data name="AutoCompleteTextBox" xml:space="preserve">
<value>AutoCompleteTextBox</value>
</data>
<data name="Watermark" xml:space="preserve">
<value>Watermark</value>
</data>
<data name="CloseMainWindowDialog" xml:space="preserve">
<value>Close main window dialog</value>
</data>
</root>

View File

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="About" xml:space="preserve">
<value>Sobre</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>Adicionar um item</value>
</data>
<data name="AnimationPath" xml:space="preserve">
<value>AnimationPath</value>
</data>
<data name="AppClosingTip" xml:space="preserve">
<value>O ícone da bandeja está aberto ira ocultar a janela em vez de fechar o programa</value>
</data>
<data name="Ask" xml:space="preserve">
<value>Perguntar</value>
</data>
<data name="Badge" xml:space="preserve">
<value>Badge</value>
</data>
<data name="BasicInfo" xml:space="preserve">
<value>Preencha as informações básicas</value>
</data>
<data name="BasicLayout" xml:space="preserve">
<value>Layout básico</value>
</data>
<data name="Blink" xml:space="preserve">
<value>Piscar</value>
</data>
<data name="Blog" xml:space="preserve">
<value>Blog</value>
</data>
<data name="Border" xml:space="preserve">
<value>Borda</value>
</data>
<data name="Brush" xml:space="preserve">
<value>Pincel</value>
</data>
<data name="Button" xml:space="preserve">
<value>Botão</value>
</data>
<data name="ButtonCustom" xml:space="preserve">
<value>Botão Personalizado</value>
</data>
<data name="ButtonGroup" xml:space="preserve">
<value>ButtonGroup</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>Calendar</value>
</data>
<data name="CalendarWithClock" xml:space="preserve">
<value>CalendarWithClock</value>
</data>
<data name="Card" xml:space="preserve">
<value>Card</value>
</data>
<data name="Carousel" xml:space="preserve">
<value>Carousel</value>
</data>
<data name="ChangeLangAsk" xml:space="preserve">
<value>Reiniciar para alterar o idioma?</value>
</data>
<data name="ChatBubble" xml:space="preserve">
<value>ChatBubble</value>
</data>
<data name="Chatroom" xml:space="preserve">
<value>Sala de bate-papo</value>
</data>
<data name="CheckBox" xml:space="preserve">
<value>CheckBox</value>
</data>
<data name="CirclePanel" xml:space="preserve">
<value>CirclePanel</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Limpar</value>
</data>
<data name="Click2Count" xml:space="preserve">
<value>Clique para contar</value>
</data>
<data name="Clock" xml:space="preserve">
<value>Clock</value>
</data>
<data name="ColorPicker" xml:space="preserve">
<value>ColorPicker</value>
</data>
<data name="ColumnOffset" xml:space="preserve">
<value>Compensação da coluna</value>
</data>
<data name="ColumnSpacing" xml:space="preserve">
<value>Espaçamento de coluna</value>
</data>
<data name="ComboBox" xml:space="preserve">
<value>ComboBox</value>
</data>
<data name="ComingSoon" xml:space="preserve">
<value>Em breve</value>
</data>
<data name="Comment" xml:space="preserve">
<value>Comentário</value>
</data>
<data name="Common" xml:space="preserve">
<value>Comum</value>
</data>
<data name="CompareSlider" xml:space="preserve">
<value>CompareSlider</value>
</data>
<data name="Complete" xml:space="preserve">
<value>Concluído</value>
</data>
<data name="ContentDemoStr" xml:space="preserve">
<value>Este é o conteúdo</value>
</data>
<data name="Contributors" xml:space="preserve">
<value>Colaboradores</value>
</data>
<data name="Controls" xml:space="preserve">
<value>Controles</value>
</data>
<data name="CoverFlow" xml:space="preserve">
<value>CoverFlow</value>
</data>
<data name="CoverView" xml:space="preserve">
<value>CoverView</value>
</data>
<data name="Danger" xml:space="preserve">
<value>Perigo</value>
</data>
<data name="DataGrid" xml:space="preserve">
<value>DataGrid</value>
</data>
<data name="DatePicker" xml:space="preserve">
<value>DatePicker</value>
</data>
<data name="DateTimePicker" xml:space="preserve">
<value>DateTimePicker</value>
</data>
<data name="Default" xml:space="preserve">
<value>Padrão</value>
</data>
<data name="Demo" xml:space="preserve">
<value>Demonstração</value>
</data>
<data name="Dialog" xml:space="preserve">
<value>Diálogo</value>
</data>
<data name="DialogDemo" xml:space="preserve">
<value>Demonstração de diálogo</value>
</data>
<data name="Divider" xml:space="preserve">
<value>Divisor</value>
</data>
<data name="Documentation" xml:space="preserve">
<value>Documentação</value>
</data>
<data name="Doc_cn" xml:space="preserve">
<value>Documento em chinês</value>
</data>
<data name="Doc_en" xml:space="preserve">
<value>Documento em inglês</value>
</data>
<data name="DragHere" xml:space="preserve">
<value>Arraste aqui</value>
</data>
<data name="Drawer" xml:space="preserve">
<value>Drawer</value>
</data>
<data name="Effects" xml:space="preserve">
<value>Efeitos</value>
</data>
<data name="Email" xml:space="preserve">
<value>Email</value>
</data>
<data name="Error" xml:space="preserve">
<value>Erro</value>
</data>
<data name="Exit" xml:space="preserve">
<value>Sair</value>
</data>
<data name="Expander" xml:space="preserve">
<value>Expander</value>
</data>
<data name="Fatal" xml:space="preserve">
<value>Fatal</value>
</data>
<data name="FlipClock" xml:space="preserve">
<value>FlipClock</value>
</data>
<data name="FloatingBlock" xml:space="preserve">
<value>FloatingBlock</value>
</data>
<data name="FlowDocument" xml:space="preserve">
<value>FlowDocument</value>
</data>
<data name="FlowDocumentPageViewer" xml:space="preserve">
<value>FlowDocumentPageViewer</value>
</data>
<data name="FlowDocumentReader" xml:space="preserve">
<value>FlowDocumentReader</value>
</data>
<data name="FlowDocumentScrollViewer" xml:space="preserve">
<value>FlowDocumentScrollViewer</value>
</data>
<data name="Frame" xml:space="preserve">
<value>Quadro</value>
</data>
<data name="GifImage" xml:space="preserve">
<value>GifImage</value>
</data>
<data name="GotoTop" xml:space="preserve">
<value>GotoTop</value>
</data>
<data name="Gravatar" xml:space="preserve">
<value>Gravatar</value>
</data>
<data name="Grid" xml:space="preserve">
<value>Grid</value>
</data>
<data name="GroupBox" xml:space="preserve">
<value>GroupBox</value>
</data>
<data name="Groups" xml:space="preserve">
<value>Grupos</value>
</data>
<data name="Growl" xml:space="preserve">
<value>Growl</value>
</data>
<data name="GrowlAsk" xml:space="preserve">
<value>Uma nova versão foi detectada! Deseja atualizar?</value>
</data>
<data name="GrowlDemo" xml:space="preserve">
<value>Growl demonstração</value>
</data>
<data name="GrowlError" xml:space="preserve">
<value>A conexão falhou. Verifique as configurações de rede!</value>
</data>
<data name="GrowlFatal" xml:space="preserve">
<value>O programa travou~~~</value>
</data>
<data name="GrowlInfo" xml:space="preserve">
<value>Está um ótimo dia hoje~~~</value>
</data>
<data name="GrowlSuccess" xml:space="preserve">
<value>Arquivo salvo com sucesso!</value>
</data>
<data name="GrowlWarning" xml:space="preserve">
<value>O espaço em disco está acabando!</value>
</data>
<data name="HatchBrushGenerator" xml:space="preserve">
<value>HatchBrushGenerator</value>
</data>
<data name="HoneycombPanel" xml:space="preserve">
<value>HoneycombPanel</value>
</data>
<data name="HybridLayout" xml:space="preserve">
<value>Layout híbrido</value>
</data>
<data name="Ignore" xml:space="preserve">
<value>Ignorar</value>
</data>
<data name="ImageBlock" xml:space="preserve">
<value>ImageBlock</value>
</data>
<data name="ImageBrowser" xml:space="preserve">
<value>ImageBrowser</value>
</data>
<data name="ImageSelector" xml:space="preserve">
<value>ImageSelector</value>
</data>
<data name="Index" xml:space="preserve">
<value>Índice</value>
</data>
<data name="Info" xml:space="preserve">
<value>Informações</value>
</data>
<data name="InteractiveDialog" xml:space="preserve">
<value>Diálogo interativo</value>
</data>
<data name="IsNotPhone" xml:space="preserve">
<value>Não é um número de telefone</value>
</data>
<data name="Label" xml:space="preserve">
<value>Label</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Pesquisa uma cadeia de caracteres localizada semelhante a "{0}".</value>
</data>
<data name="ListBox" xml:space="preserve">
<value>ListBox</value>
</data>
<data name="ListView" xml:space="preserve">
<value>ListView</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Carregando</value>
</data>
<data name="Magnifier" xml:space="preserve">
<value>Magnifier</value>
</data>
<data name="Menu" xml:space="preserve">
<value>Menu</value>
</data>
<data name="MessageBox" xml:space="preserve">
<value>MessageBox</value>
</data>
<data name="Morphing Animation" xml:space="preserve">
<value>Animação Transformação</value>
</data>
<data name="Name" xml:space="preserve">
<value>Nome</value>
</data>
<data name="NewWindow" xml:space="preserve">
<value>Nova janela</value>
</data>
<data name="Next" xml:space="preserve">
<value>Avançar</value>
</data>
<data name="Notification" xml:space="preserve">
<value>Notificação</value>
</data>
<data name="NotifyIcon" xml:space="preserve">
<value>NotifyIcon</value>
</data>
<data name="NumericUpDown" xml:space="preserve">
<value>NumericUpDown</value>
</data>
<data name="Off" xml:space="preserve">
<value>Desligado</value>
</data>
<data name="Ok" xml:space="preserve">
<value>Ok</value>
</data>
<data name="On" xml:space="preserve">
<value>Ligado</value>
</data>
<data name="OpenBlurWindow" xml:space="preserve">
<value>abrir janela borrada</value>
</data>
<data name="OpenCommonWindow" xml:space="preserve">
<value>abrir janela comum</value>
</data>
<data name="OpenCustomContentWindow" xml:space="preserve">
<value>abrir janela de conteúdo personalizado</value>
</data>
<data name="OpenCustomMessageWindow" xml:space="preserve">
<value>abrir janela de mensagem personalizada</value>
</data>
<data name="OpenCustomNonClientAreaWindow" xml:space="preserve">
<value>abrir janela "Non-client Area" personalizada</value>
</data>
<data name="OpenGlowWindow" xml:space="preserve">
<value>Abrir janela com brilho</value>
</data>
<data name="OpenImageBrowser" xml:space="preserve">
<value>Clique para abrir o navegador de imagens</value>
</data>
<data name="OpenMessageWindow" xml:space="preserve">
<value>abrir janela de mensagem</value>
</data>
<data name="OpenMouseFollowWindow" xml:space="preserve">
<value>abra o mouse siga a janela</value>
</data>
<data name="OpenNativeCommonWindow" xml:space="preserve">
<value>Abra a janela comum nativa</value>
</data>
<data name="OpenNavigationWindow" xml:space="preserve">
<value>Abra a janela de navegação</value>
</data>
<data name="OpenNoNonClientAreaDragableWindow" xml:space="preserve">
<value>abrir janela arrastavél não "Non-client Area"</value>
</data>
<data name="OpenPanel" xml:space="preserve">
<value>Abrir Painel</value>
</data>
<data name="OpenSprite" xml:space="preserve">
<value>Abrir sprite</value>
</data>
<data name="OutlineText" xml:space="preserve">
<value>OutlineText</value>
</data>
<data name="Pagination" xml:space="preserve">
<value>Paginação</value>
</data>
<data name="PasswordBox" xml:space="preserve">
<value>PasswordBox</value>
</data>
<data name="PinBox" xml:space="preserve">
<value>PinBox</value>
</data>
<data name="PleaseInput" xml:space="preserve">
<value>Por favor insira...</value>
</data>
<data name="PleaseWait" xml:space="preserve">
<value>Aguarde...</value>
</data>
<data name="PlsEnterContent" xml:space="preserve">
<value>Por favor, insira o texto</value>
</data>
<data name="PlsEnterEmail" xml:space="preserve">
<value>Por favor, informe o e-mail</value>
</data>
<data name="PlsEnterKey" xml:space="preserve">
<value>Por favor, insira uma palavra-chave</value>
</data>
<data name="Poptip" xml:space="preserve">
<value>Poptip</value>
</data>
<data name="PoptipPositionStr" xml:space="preserve">
<value>início superior; topo; extremidade superior; início direito; direita; extremidade direita; extremidade inferior; inferior; início inferior; extremidade esquerda; esquerda; partida esquerda</value>
</data>
<data name="PracticalDemos" xml:space="preserve">
<value>Demonstrações práticas</value>
</data>
<data name="Prev" xml:space="preserve">
<value>Anterior</value>
</data>
<data name="PreviewSlider" xml:space="preserve">
<value>PreviewSlider</value>
</data>
<data name="Primary" xml:space="preserve">
<value>Primário</value>
</data>
<data name="ProgressBar" xml:space="preserve">
<value>ProgressBar</value>
</data>
<data name="ProgressButton" xml:space="preserve">
<value>ProgressButton</value>
</data>
<data name="Project" xml:space="preserve">
<value>Projeto</value>
</data>
<data name="PropertyGrid" xml:space="preserve">
<value>PropertyGrid</value>
</data>
<data name="PushToTalk" xml:space="preserve">
<value>Aperte para falar</value>
</data>
<data name="QQGroup" xml:space="preserve">
<value>Grupo QQ</value>
</data>
<data name="RadioButton" xml:space="preserve">
<value>RadioButton</value>
</data>
<data name="RangeSlider" xml:space="preserve">
<value>RangeSlider</value>
</data>
<data name="Rate" xml:space="preserve">
<value>Rate</value>
</data>
<data name="Recommendation" xml:space="preserve">
<value>Recomendação</value>
</data>
<data name="Register" xml:space="preserve">
<value>Registrar</value>
</data>
<data name="RelativePanel" xml:space="preserve">
<value>RelativePanel</value>
</data>
<data name="Remark" xml:space="preserve">
<value>Comentário</value>
</data>
<data name="RemoveItem" xml:space="preserve">
<value>Remover um item</value>
</data>
<data name="RepeatButton" xml:space="preserve">
<value>RepeatButton</value>
</data>
<data name="Reply" xml:space="preserve">
<value>Responder</value>
</data>
<data name="Repository" xml:space="preserve">
<value>Repositório</value>
</data>
<data name="ResponsiveLayout" xml:space="preserve">
<value>Layout responsivo</value>
</data>
<data name="RichTextBox" xml:space="preserve">
<value>RichTextBox</value>
</data>
<data name="RightClickHere" xml:space="preserve">
<value>Clique com o botão direito aqui</value>
</data>
<data name="RunningBlock" xml:space="preserve">
<value>RunningBlock</value>
</data>
<data name="Screenshot" xml:space="preserve">
<value>Screenshot</value>
</data>
<data name="ScrollViewer" xml:space="preserve">
<value>ScrollViewer</value>
</data>
<data name="SearchBar" xml:space="preserve">
<value>SearchBar</value>
</data>
<data name="Second" xml:space="preserve">
<value>Segs</value>
</data>
<data name="Selected" xml:space="preserve">
<value>Selecionado</value>
</data>
<data name="SendNotification" xml:space="preserve">
<value>Enviar notificação</value>
</data>
<data name="Shield" xml:space="preserve">
<value>Shield</value>
</data>
<data name="ShowInCurrentWindow" xml:space="preserve">
<value>Mostrar na janela atual</value>
</data>
<data name="ShowInMainWindow" xml:space="preserve">
<value>Mostrar na janela principal</value>
</data>
<data name="ShowRowNumber" xml:space="preserve">
<value>ShowRowNumber</value>
</data>
<data name="SideMenu" xml:space="preserve">
<value>SideMenu</value>
</data>
<data name="Slider" xml:space="preserve">
<value>Slider</value>
</data>
<data name="SplitButton" xml:space="preserve">
<value>SplitButton</value>
</data>
<data name="Sprite" xml:space="preserve">
<value>Sprite</value>
</data>
<data name="StartScreenshot" xml:space="preserve">
<value>Iniciar captura de tela</value>
</data>
<data name="StaysOpen" xml:space="preserve">
<value>Permanecer aberto</value>
</data>
<data name="Step" xml:space="preserve">
<value>Step</value>
</data>
<data name="StepBar" xml:space="preserve">
<value>StepBar</value>
</data>
<data name="Styles" xml:space="preserve">
<value>Estilos</value>
</data>
<data name="SubTitle" xml:space="preserve">
<value>Legenda</value>
</data>
<data name="Success" xml:space="preserve">
<value>Sucesso</value>
</data>
<data name="TabControl" xml:space="preserve">
<value>TabControl</value>
</data>
<data name="Tag" xml:space="preserve">
<value>Tag</value>
</data>
<data name="Text" xml:space="preserve">
<value>Texto</value>
</data>
<data name="TextBlock" xml:space="preserve">
<value>TextBlock</value>
</data>
<data name="TextBox" xml:space="preserve">
<value>TextBox</value>
</data>
<data name="TextDialog" xml:space="preserve">
<value>TextDialog</value>
</data>
<data name="TextDialogInControl" xml:space="preserve">
<value>TextDialog (no controle)</value>
</data>
<data name="TextDialogWithTimer" xml:space="preserve">
<value>TextDialog com temporizador</value>
</data>
<data name="TimeBar" xml:space="preserve">
<value>TimeBar</value>
</data>
<data name="TimePicker" xml:space="preserve">
<value>TimePicker</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Perguntar</value>
</data>
<data name="Title" xml:space="preserve">
<value>Título</value>
</data>
<data name="TitleDemoStr1" xml:space="preserve">
<value>Este é o título</value>
</data>
<data name="TitleDemoStr2" xml:space="preserve">
<value>Este item deve ser preenchido</value>
</data>
<data name="TitleDemoStr3" xml:space="preserve">
<value>O título está à esquerda</value>
</data>
<data name="ToggleButton" xml:space="preserve">
<value>ToggleButton</value>
</data>
<data name="ToolBar" xml:space="preserve">
<value>ToolBar</value>
</data>
<data name="Tools" xml:space="preserve">
<value>Ferramentas</value>
</data>
<data name="Transfer" xml:space="preserve">
<value>Transferir</value>
</data>
<data name="TransitioningContentControl" xml:space="preserve">
<value>TransitioningContentControl</value>
</data>
<data name="TreeView" xml:space="preserve">
<value>TreeView</value>
</data>
<data name="Try2CloseApp" xml:space="preserve">
<value>Tentar fehcar o aplicativo?</value>
</data>
<data name="Type" xml:space="preserve">
<value>Tipo</value>
</data>
<data name="UploadFile" xml:space="preserve">
<value>Enviar arquivo</value>
</data>
<data name="UploadStr" xml:space="preserve">
<value>Enviar;Enviando</value>
</data>
<data name="Visibility" xml:space="preserve">
<value>Visibilidade</value>
</data>
<data name="Vsix" xml:space="preserve">
<value>Vsix</value>
</data>
<data name="Warning" xml:space="preserve">
<value>Aviso</value>
</data>
<data name="WaterfallPanel" xml:space="preserve">
<value>WaterfallPanel</value>
</data>
<data name="Website" xml:space="preserve">
<value>Site</value>
</data>
<data name="Window" xml:space="preserve">
<value>Janela</value>
</data>
<data name="Geometry" xml:space="preserve">
<value>Geometry</value>
</data>
<data name="CheckComboBox" xml:space="preserve">
<value>CheckComboBox</value>
</data>
<data name="FlexPanel" xml:space="preserve">
<value>FlexPanel</value>
</data>
<data name="OpenTouchDragMoveWindow" xml:space="preserve">
<value>open touch drag move window</value>
</data>
<data name="UniformSpacingPanel" xml:space="preserve">
<value>UniformSpacingPanel</value>
</data>
<data name="Misc" xml:space="preserve">
<value>Misc</value>
</data>
<data name="Interacting" xml:space="preserve">
<value>Interacting</value>
</data>
<data name="DataEntry" xml:space="preserve">
<value>Data Entry</value>
</data>
<data name="DataDisplay" xml:space="preserve">
<value>Data Display</value>
</data>
<data name="Navigation" xml:space="preserve">
<value>Navigation</value>
</data>
<data name="Layout" xml:space="preserve">
<value>Layout</value>
</data>
<data name="Feedback" xml:space="preserve">
<value>Feedback</value>
</data>
<data name="Empty" xml:space="preserve">
<value>Empty</value>
</data>
<data name="ElementGroup" xml:space="preserve">
<value>ElementGroup</value>
</data>
<data name="AutoCompleteTextBox" xml:space="preserve">
<value>AutoCompleteTextBox</value>
</data>
<data name="Watermark" xml:space="preserve">
<value>Watermark</value>
</data>
<data name="CloseMainWindowDialog" xml:space="preserve">
<value>Close main window dialog</value>
</data>
</root>

View File

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="About" xml:space="preserve">
<value>关于</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>添加项</value>
</data>
<data name="AnimationPath" xml:space="preserve">
<value>动画路径</value>
</data>
<data name="AppClosingTip" xml:space="preserve">
<value>托盘图标已打开,将隐藏窗口而不是关闭程序</value>
</data>
<data name="Ask" xml:space="preserve">
<value>询问</value>
</data>
<data name="AutoCompleteTextBox" xml:space="preserve">
<value>自动补全文本框</value>
</data>
<data name="Badge" xml:space="preserve">
<value>标记</value>
</data>
<data name="BasicInfo" xml:space="preserve">
<value>填写基本信息</value>
</data>
<data name="BasicLayout" xml:space="preserve">
<value>基础布局</value>
</data>
<data name="Blink" xml:space="preserve">
<value>闪烁</value>
</data>
<data name="Blog" xml:space="preserve">
<value>博客</value>
</data>
<data name="Border" xml:space="preserve">
<value>边框</value>
</data>
<data name="Brush" xml:space="preserve">
<value>画刷</value>
</data>
<data name="Button" xml:space="preserve">
<value>按钮</value>
</data>
<data name="ButtonCustom" xml:space="preserve">
<value>自定义按钮</value>
</data>
<data name="ButtonGroup" xml:space="preserve">
<value>按钮组</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>日历</value>
</data>
<data name="CalendarWithClock" xml:space="preserve">
<value>带时钟的日历</value>
</data>
<data name="Card" xml:space="preserve">
<value>卡片</value>
</data>
<data name="Carousel" xml:space="preserve">
<value>轮播</value>
</data>
<data name="ChangeLangAsk" xml:space="preserve">
<value>是否重启以更改语言?</value>
</data>
<data name="ChatBubble" xml:space="preserve">
<value>对话气泡</value>
</data>
<data name="Chatroom" xml:space="preserve">
<value>讨论室</value>
</data>
<data name="CheckBox" xml:space="preserve">
<value>复选框</value>
</data>
<data name="CheckComboBox" xml:space="preserve">
<value>多选组合框</value>
</data>
<data name="CirclePanel" xml:space="preserve">
<value>圆形布局</value>
</data>
<data name="Clear" xml:space="preserve">
<value>清空</value>
</data>
<data name="Click2Count" xml:space="preserve">
<value>点击计数</value>
</data>
<data name="Clock" xml:space="preserve">
<value>时钟</value>
</data>
<data name="CloseMainWindowDialog" xml:space="preserve">
<value>关闭主窗口对话框</value>
</data>
<data name="ColorPicker" xml:space="preserve">
<value>颜色拾取器</value>
</data>
<data name="ColumnOffset" xml:space="preserve">
<value>分栏偏移</value>
</data>
<data name="ColumnSpacing" xml:space="preserve">
<value>分栏间隔</value>
</data>
<data name="ComboBox" xml:space="preserve">
<value>组合框</value>
</data>
<data name="ComingSoon" xml:space="preserve">
<value>敬请期待</value>
</data>
<data name="Comment" xml:space="preserve">
<value>评论</value>
</data>
<data name="Common" xml:space="preserve">
<value>一般</value>
</data>
<data name="CompareSlider" xml:space="preserve">
<value>对比滑块</value>
</data>
<data name="Complete" xml:space="preserve">
<value>完成</value>
</data>
<data name="ContentDemoStr" xml:space="preserve">
<value>这是内容</value>
</data>
<data name="Contributors" xml:space="preserve">
<value>贡献者</value>
</data>
<data name="Controls" xml:space="preserve">
<value>控件</value>
</data>
<data name="CoverFlow" xml:space="preserve">
<value>封面流</value>
</data>
<data name="CoverView" xml:space="preserve">
<value>封面视图</value>
</data>
<data name="Danger" xml:space="preserve">
<value>危险</value>
</data>
<data name="DataDisplay" xml:space="preserve">
<value>数据展示</value>
</data>
<data name="DataEntry" xml:space="preserve">
<value>数据录入</value>
</data>
<data name="DataGrid" xml:space="preserve">
<value>数据表格</value>
</data>
<data name="DatePicker" xml:space="preserve">
<value>日期选择器</value>
</data>
<data name="DateTimePicker" xml:space="preserve">
<value>日期时间选择器</value>
</data>
<data name="Default" xml:space="preserve">
<value>默认</value>
</data>
<data name="Demo" xml:space="preserve">
<value>示例</value>
</data>
<data name="Dialog" xml:space="preserve">
<value>对话框</value>
</data>
<data name="DialogDemo" xml:space="preserve">
<value>对话框示例</value>
</data>
<data name="Divider" xml:space="preserve">
<value>分割线</value>
</data>
<data name="Documentation" xml:space="preserve">
<value>文献资料</value>
</data>
<data name="Doc_cn" xml:space="preserve">
<value>中文文档</value>
</data>
<data name="Doc_en" xml:space="preserve">
<value>英文文档</value>
</data>
<data name="DragHere" xml:space="preserve">
<value>在这里拖拽</value>
</data>
<data name="Drawer" xml:space="preserve">
<value>抽屉</value>
</data>
<data name="Effects" xml:space="preserve">
<value>效果</value>
</data>
<data name="ElementGroup" xml:space="preserve">
<value>元素组</value>
</data>
<data name="Email" xml:space="preserve">
<value>邮箱</value>
</data>
<data name="Empty" xml:space="preserve">
<value>空状态</value>
</data>
<data name="Error" xml:space="preserve">
<value>错误</value>
</data>
<data name="Exit" xml:space="preserve">
<value>退出</value>
</data>
<data name="Expander" xml:space="preserve">
<value>展开框</value>
</data>
<data name="Fatal" xml:space="preserve">
<value>严重</value>
</data>
<data name="Feedback" xml:space="preserve">
<value>反馈</value>
</data>
<data name="FlexPanel" xml:space="preserve">
<value>弹性盒子</value>
</data>
<data name="FlipClock" xml:space="preserve">
<value>翻页时钟</value>
</data>
<data name="FloatingBlock" xml:space="preserve">
<value>漂浮块</value>
</data>
<data name="FlowDocument" xml:space="preserve">
<value>流文档</value>
</data>
<data name="FlowDocumentPageViewer" xml:space="preserve">
<value>流文档单页视图</value>
</data>
<data name="FlowDocumentReader" xml:space="preserve">
<value>流文档查看器</value>
</data>
<data name="FlowDocumentScrollViewer" xml:space="preserve">
<value>流文档滚动视图</value>
</data>
<data name="Frame" xml:space="preserve">
<value>导航框架</value>
</data>
<data name="Geometry" xml:space="preserve">
<value>几何形状</value>
</data>
<data name="GifImage" xml:space="preserve">
<value>Gif图片</value>
</data>
<data name="GotoTop" xml:space="preserve">
<value>回到顶部</value>
</data>
<data name="Gravatar" xml:space="preserve">
<value>头像</value>
</data>
<data name="Grid" xml:space="preserve">
<value>栅格</value>
</data>
<data name="GroupBox" xml:space="preserve">
<value>分组框</value>
</data>
<data name="Groups" xml:space="preserve">
<value>组数</value>
</data>
<data name="Growl" xml:space="preserve">
<value>信息通知</value>
</data>
<data name="GrowlAsk" xml:space="preserve">
<value>检测到有新版本!是否更新?</value>
</data>
<data name="GrowlDemo" xml:space="preserve">
<value>消息通知示例</value>
</data>
<data name="GrowlError" xml:space="preserve">
<value>连接失败,请检查网络!</value>
</data>
<data name="GrowlFatal" xml:space="preserve">
<value>程序已崩溃~~~</value>
</data>
<data name="GrowlInfo" xml:space="preserve">
<value>今天的天气不错~~~</value>
</data>
<data name="GrowlSuccess" xml:space="preserve">
<value>文件保存成功!</value>
</data>
<data name="GrowlWarning" xml:space="preserve">
<value>磁盘空间快要满了!</value>
</data>
<data name="HatchBrushGenerator" xml:space="preserve">
<value>阴影画笔生成器</value>
</data>
<data name="HoneycombPanel" xml:space="preserve">
<value>蜂窝布局</value>
</data>
<data name="HybridLayout" xml:space="preserve">
<value>混合布局</value>
</data>
<data name="Ignore" xml:space="preserve">
<value>忽略</value>
</data>
<data name="ImageBlock" xml:space="preserve">
<value>图片块</value>
</data>
<data name="ImageBrowser" xml:space="preserve">
<value>图片浏览器</value>
</data>
<data name="ImageSelector" xml:space="preserve">
<value>图片选择器</value>
</data>
<data name="Index" xml:space="preserve">
<value>索引</value>
</data>
<data name="Info" xml:space="preserve">
<value>信息</value>
</data>
<data name="Interacting" xml:space="preserve">
<value>交互</value>
</data>
<data name="InteractiveDialog" xml:space="preserve">
<value>可交互对话框</value>
</data>
<data name="IsNotPhone" xml:space="preserve">
<value>不是手机号码</value>
</data>
<data name="Label" xml:space="preserve">
<value>标签</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>查找类似 {0} 的本地化字符串。</value>
</data>
<data name="Layout" xml:space="preserve">
<value>布局</value>
</data>
<data name="ListBox" xml:space="preserve">
<value>列表框</value>
</data>
<data name="ListView" xml:space="preserve">
<value>列表视图</value>
</data>
<data name="Loading" xml:space="preserve">
<value>加载条</value>
</data>
<data name="Magnifier" xml:space="preserve">
<value>放大镜</value>
</data>
<data name="Menu" xml:space="preserve">
<value>菜单</value>
</data>
<data name="MessageBox" xml:space="preserve">
<value>消息框</value>
</data>
<data name="Misc" xml:space="preserve">
<value>杂项</value>
</data>
<data name="Morphing Animation" xml:space="preserve">
<value>变形动画</value>
</data>
<data name="Name" xml:space="preserve">
<value>名称</value>
</data>
<data name="Navigation" xml:space="preserve">
<value>导航</value>
</data>
<data name="NewWindow" xml:space="preserve">
<value>新建窗口</value>
</data>
<data name="Next" xml:space="preserve">
<value>下一步</value>
</data>
<data name="Notification" xml:space="preserve">
<value>桌面通知</value>
</data>
<data name="NotifyIcon" xml:space="preserve">
<value>托盘图标</value>
</data>
<data name="NumericUpDown" xml:space="preserve">
<value>数值选择控件</value>
</data>
<data name="Off" xml:space="preserve">
<value>关</value>
</data>
<data name="Ok" xml:space="preserve">
<value>确定</value>
</data>
<data name="On" xml:space="preserve">
<value>开</value>
</data>
<data name="OpenBlurWindow" xml:space="preserve">
<value>点击打开背景模糊窗口</value>
</data>
<data name="OpenCommonWindow" xml:space="preserve">
<value>点击打开常规窗口</value>
</data>
<data name="OpenCustomContentWindow" xml:space="preserve">
<value>点击打开自定义内容窗口</value>
</data>
<data name="OpenCustomMessageWindow" xml:space="preserve">
<value>点击打开自定义消息窗口</value>
</data>
<data name="OpenCustomNonClientAreaWindow" xml:space="preserve">
<value>点击打开自定义非客户端区域窗口</value>
</data>
<data name="OpenGlowWindow" xml:space="preserve">
<value>点击打开辉光窗口</value>
</data>
<data name="OpenImageBrowser" xml:space="preserve">
<value>点击打开图片浏览器</value>
</data>
<data name="OpenMessageWindow" xml:space="preserve">
<value>点击打开消息窗口</value>
</data>
<data name="OpenMouseFollowWindow" xml:space="preserve">
<value>点击打开鼠标跟随窗口</value>
</data>
<data name="OpenNativeCommonWindow" xml:space="preserve">
<value>点击打开原生常规窗口</value>
</data>
<data name="OpenNavigationWindow" xml:space="preserve">
<value>点击打开导航窗口</value>
</data>
<data name="OpenNoNonClientAreaDragableWindow" xml:space="preserve">
<value>打开无非客户端区域可拖拽窗口</value>
</data>
<data name="OpenPanel" xml:space="preserve">
<value>打开面板</value>
</data>
<data name="OpenSprite" xml:space="preserve">
<value>打开精灵</value>
</data>
<data name="OpenTouchDragMoveWindow" xml:space="preserve">
<value>点击打开触摸拖动窗口</value>
</data>
<data name="OutlineText" xml:space="preserve">
<value>轮廓文本</value>
</data>
<data name="Pagination" xml:space="preserve">
<value>页码条</value>
</data>
<data name="PasswordBox" xml:space="preserve">
<value>密码框</value>
</data>
<data name="PinBox" xml:space="preserve">
<value>PIN码框</value>
</data>
<data name="PleaseInput" xml:space="preserve">
<value>请输入...</value>
</data>
<data name="PleaseWait" xml:space="preserve">
<value>请稍后...</value>
</data>
<data name="PlsEnterContent" xml:space="preserve">
<value>请输入内容</value>
</data>
<data name="PlsEnterEmail" xml:space="preserve">
<value>请输入邮箱</value>
</data>
<data name="PlsEnterKey" xml:space="preserve">
<value>请输入关键字</value>
</data>
<data name="Poptip" xml:space="preserve">
<value>气泡提示</value>
</data>
<data name="PoptipPositionStr" xml:space="preserve">
<value>上左;上边;上右;右上;右边;右下;下右;下边;下左;左下;左边;左上</value>
</data>
<data name="PracticalDemos" xml:space="preserve">
<value>实用例子</value>
</data>
<data name="Prev" xml:space="preserve">
<value>上一步</value>
</data>
<data name="PreviewSlider" xml:space="preserve">
<value>预览滑块</value>
</data>
<data name="Primary" xml:space="preserve">
<value>主要</value>
</data>
<data name="ProgressBar" xml:space="preserve">
<value>进度条</value>
</data>
<data name="ProgressButton" xml:space="preserve">
<value>进度按钮</value>
</data>
<data name="Project" xml:space="preserve">
<value>项目</value>
</data>
<data name="PropertyGrid" xml:space="preserve">
<value>属性编辑器</value>
</data>
<data name="PushToTalk" xml:space="preserve">
<value>按住说话</value>
</data>
<data name="QQGroup" xml:space="preserve">
<value>QQ群</value>
</data>
<data name="RadioButton" xml:space="preserve">
<value>单选按钮</value>
</data>
<data name="RangeSlider" xml:space="preserve">
<value>范围滑块</value>
</data>
<data name="Rate" xml:space="preserve">
<value>评分</value>
</data>
<data name="Recommendation" xml:space="preserve">
<value>群友推荐</value>
</data>
<data name="Register" xml:space="preserve">
<value>注册</value>
</data>
<data name="RelativePanel" xml:space="preserve">
<value>相对布局</value>
</data>
<data name="Remark" xml:space="preserve">
<value>备注</value>
</data>
<data name="RemoveItem" xml:space="preserve">
<value>删除项</value>
</data>
<data name="RepeatButton" xml:space="preserve">
<value>重复按钮</value>
</data>
<data name="Reply" xml:space="preserve">
<value>回复</value>
</data>
<data name="Repository" xml:space="preserve">
<value>代码仓库</value>
</data>
<data name="ResponsiveLayout" xml:space="preserve">
<value>响应式布局</value>
</data>
<data name="RichTextBox" xml:space="preserve">
<value>富文本框</value>
</data>
<data name="RightClickHere" xml:space="preserve">
<value>在这里右击</value>
</data>
<data name="RunningBlock" xml:space="preserve">
<value>滚动块</value>
</data>
<data name="Screenshot" xml:space="preserve">
<value>截图</value>
</data>
<data name="ScrollViewer" xml:space="preserve">
<value>滚动视图</value>
</data>
<data name="SearchBar" xml:space="preserve">
<value>搜索栏</value>
</data>
<data name="Second" xml:space="preserve">
<value>秒</value>
</data>
<data name="Selected" xml:space="preserve">
<value>选中</value>
</data>
<data name="SendNotification" xml:space="preserve">
<value>发送通知</value>
</data>
<data name="Shield" xml:space="preserve">
<value>徽章</value>
</data>
<data name="ShowInCurrentWindow" xml:space="preserve">
<value>在当前窗口显示</value>
</data>
<data name="ShowInMainWindow" xml:space="preserve">
<value>在主窗口显示</value>
</data>
<data name="ShowRowNumber" xml:space="preserve">
<value>显示行号</value>
</data>
<data name="SideMenu" xml:space="preserve">
<value>侧边菜单</value>
</data>
<data name="Slider" xml:space="preserve">
<value>滑块</value>
</data>
<data name="SplitButton" xml:space="preserve">
<value>分割按钮</value>
</data>
<data name="Sprite" xml:space="preserve">
<value>精灵</value>
</data>
<data name="StartScreenshot" xml:space="preserve">
<value>开始截图</value>
</data>
<data name="StaysOpen" xml:space="preserve">
<value>保持打开</value>
</data>
<data name="Step" xml:space="preserve">
<value>步骤</value>
</data>
<data name="StepBar" xml:space="preserve">
<value>步骤条</value>
</data>
<data name="Styles" xml:space="preserve">
<value>样式模板</value>
</data>
<data name="SubTitle" xml:space="preserve">
<value>子标题</value>
</data>
<data name="Success" xml:space="preserve">
<value>成功</value>
</data>
<data name="TabControl" xml:space="preserve">
<value>选项卡控件</value>
</data>
<data name="Tag" xml:space="preserve">
<value>标签</value>
</data>
<data name="Text" xml:space="preserve">
<value>正文</value>
</data>
<data name="TextBlock" xml:space="preserve">
<value>文本块</value>
</data>
<data name="TextBox" xml:space="preserve">
<value>文本框</value>
</data>
<data name="TextDialog" xml:space="preserve">
<value>文本对话框</value>
</data>
<data name="TextDialogInControl" xml:space="preserve">
<value>文本对话框(控件中)</value>
</data>
<data name="TextDialogWithTimer" xml:space="preserve">
<value>文本对话框,带计时器</value>
</data>
<data name="TimeBar" xml:space="preserve">
<value>时间条</value>
</data>
<data name="TimePicker" xml:space="preserve">
<value>时间选择器</value>
</data>
<data name="Tip" xml:space="preserve">
<value>提示</value>
</data>
<data name="Title" xml:space="preserve">
<value>标题</value>
</data>
<data name="TitleDemoStr1" xml:space="preserve">
<value>这是标题</value>
</data>
<data name="TitleDemoStr2" xml:space="preserve">
<value>此项必填</value>
</data>
<data name="TitleDemoStr3" xml:space="preserve">
<value>标题在左侧</value>
</data>
<data name="ToggleButton" xml:space="preserve">
<value>切换按钮</value>
</data>
<data name="ToolBar" xml:space="preserve">
<value>工具条</value>
</data>
<data name="Tools" xml:space="preserve">
<value>工具</value>
</data>
<data name="Transfer" xml:space="preserve">
<value>穿梭框</value>
</data>
<data name="TransitioningContentControl" xml:space="preserve">
<value>内容过渡控件</value>
</data>
<data name="TreeView" xml:space="preserve">
<value>树视图</value>
</data>
<data name="Try2CloseApp" xml:space="preserve">
<value>试试关闭程序吧?</value>
</data>
<data name="Type" xml:space="preserve">
<value>类型</value>
</data>
<data name="UniformSpacingPanel" xml:space="preserve">
<value>等间距布局</value>
</data>
<data name="UploadFile" xml:space="preserve">
<value>上传文件</value>
</data>
<data name="UploadStr" xml:space="preserve">
<value>上传;上传中</value>
</data>
<data name="Visibility" xml:space="preserve">
<value>可见性</value>
</data>
<data name="Vsix" xml:space="preserve">
<value>VS 插件</value>
</data>
<data name="Warning" xml:space="preserve">
<value>警告</value>
</data>
<data name="WaterfallPanel" xml:space="preserve">
<value>瀑布流</value>
</data>
<data name="Watermark" xml:space="preserve">
<value>水印</value>
</data>
<data name="Website" xml:space="preserve">
<value>网站</value>
</data>
<data name="Window" xml:space="preserve">
<value>窗口</value>
</data>
</root>

View File

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Controls" xml:space="preserve">
<value>Controls</value>
</data>
<data name="Styles" xml:space="preserve">
<value>Styles</value>
</data>
<data name="Growl" xml:space="preserve">
<value>Growl</value>
</data>
<data name="GrowlInfo" xml:space="preserve">
<value>It's a nice day today~~~</value>
</data>
<data name="GrowlSuccess" xml:space="preserve">
<value>File saved successfully!</value>
</data>
<data name="GrowlWarning" xml:space="preserve">
<value>Disk space is running out!</value>
</data>
<data name="GrowlError" xml:space="preserve">
<value>Connection failed. please check your network!</value>
</data>
<data name="GrowlFatal" xml:space="preserve">
<value>The program has crashed~~~</value>
</data>
<data name="GrowlAsk" xml:space="preserve">
<value>A new version has been detected!Do you want to update?</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Loading</value>
</data>
<data name="ImageBrowser" xml:space="preserve">
<value>ImageBrowser</value>
</data>
<data name="ColorPicker" xml:space="preserve">
<value>ColorPicker</value>
</data>
<data name="Carousel" xml:space="preserve">
<value>Carousel</value>
</data>
<data name="CompareSlider" xml:space="preserve">
<value>CompareSlider</value>
</data>
<data name="TimeBar" xml:space="preserve">
<value>TimeBar</value>
</data>
<data name="Expander" xml:space="preserve">
<value>Expander</value>
</data>
<data name="Pagination" xml:space="preserve">
<value>Pagination</value>
</data>
<data name="OpenImageBrowser" xml:space="preserve">
<value>Click to open image browser</value>
</data>
<data name="ProgressBar" xml:space="preserve">
<value>ProgressBar</value>
</data>
<data name="AnimationPath" xml:space="preserve">
<value>AnimationPath</value>
</data>
<data name="Button" xml:space="preserve">
<value>Button</value>
</data>
<data name="ToggleButton" xml:space="preserve">
<value>ToggleButton</value>
</data>
<data name="TabControl" xml:space="preserve">
<value>TabControl</value>
</data>
<data name="CheckBox" xml:space="preserve">
<value>CheckBox</value>
</data>
<data name="TextBlock" xml:space="preserve">
<value>TextBlock</value>
</data>
<data name="Default" xml:space="preserve">
<value>Default</value>
</data>
<data name="Primary" xml:space="preserve">
<value>Primary</value>
</data>
<data name="Success" xml:space="preserve">
<value>Success</value>
</data>
<data name="Info" xml:space="preserve">
<value>Info</value>
</data>
<data name="Warning" xml:space="preserve">
<value>Warning</value>
</data>
<data name="Danger" xml:space="preserve">
<value>Danger</value>
</data>
<data name="ButtonCustom" xml:space="preserve">
<value>Custom button</value>
</data>
<data name="Title" xml:space="preserve">
<value>Title</value>
</data>
<data name="StepBar" xml:space="preserve">
<value>StepBar</value>
</data>
<data name="Prev" xml:space="preserve">
<value>Prev</value>
</data>
<data name="Next" xml:space="preserve">
<value>Next</value>
</data>
<data name="Register" xml:space="preserve">
<value>Register</value>
</data>
<data name="BasicInfo" xml:space="preserve">
<value>Fill in the basic information</value>
</data>
<data name="UploadFile" xml:space="preserve">
<value>Upload file</value>
</data>
<data name="Complete" xml:space="preserve">
<value>Complete</value>
</data>
<data name="Clock" xml:space="preserve">
<value>Clock</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>Calendar</value>
</data>
<data name="DatePicker" xml:space="preserve">
<value>DatePicker</value>
</data>
<data name="TimePicker" xml:space="preserve">
<value>TimePicker</value>
</data>
<data name="TextBox" xml:space="preserve">
<value>TextBox</value>
</data>
<data name="ContentDemoStr" xml:space="preserve">
<value>This is the content</value>
</data>
<data name="TitleDemoStr1" xml:space="preserve">
<value>This is the title</value>
</data>
<data name="TitleDemoStr2" xml:space="preserve">
<value>This item must be filled in</value>
</data>
<data name="PlsEnterContent" xml:space="preserve">
<value>Please enter content</value>
</data>
<data name="TitleDemoStr3" xml:space="preserve">
<value>The title is on the left</value>
</data>
<data name="Text" xml:space="preserve">
<value>Text</value>
</data>
<data name="SubTitle" xml:space="preserve">
<value>Subtitle</value>
</data>
<data name="PasswordBox" xml:space="preserve">
<value>PasswordBox</value>
</data>
<data name="CirclePanel" xml:space="preserve">
<value>CirclePanel</value>
</data>
<data name="ComboBox" xml:space="preserve">
<value>ComboBox</value>
</data>
<data name="NumericUpDown" xml:space="preserve">
<value>NumericUpDown</value>
</data>
<data name="DataGrid" xml:space="preserve">
<value>DataGrid</value>
</data>
<data name="Index" xml:space="preserve">
<value>Index</value>
</data>
<data name="Name" xml:space="preserve">
<value>Name</value>
</data>
<data name="Type" xml:space="preserve">
<value>Type</value>
</data>
<data name="Remark" xml:space="preserve">
<value>Remark</value>
</data>
<data name="Selected" xml:space="preserve">
<value>Selected</value>
</data>
<data name="ListBox" xml:space="preserve">
<value>ListBox</value>
</data>
<data name="TreeView" xml:space="preserve">
<value>TreeView</value>
</data>
<data name="ScrollViewer" xml:space="preserve">
<value>ScrollViewer</value>
</data>
<data name="Window" xml:space="preserve">
<value>Window</value>
</data>
<data name="Menu" xml:space="preserve">
<value>Menu</value>
</data>
<data name="RightClickHere" xml:space="preserve">
<value>Right click here</value>
</data>
<data name="RadioButton" xml:space="preserve">
<value>RadioButton</value>
</data>
<data name="OpenMessageWindow" xml:space="preserve">
<value>open message window</value>
</data>
<data name="OpenCommonWindow" xml:space="preserve">
<value>open common window</value>
</data>
<data name="OpenCustomNonClientAreaWindow" xml:space="preserve">
<value>open custom Non-client Area window</value>
</data>
<data name="OpenMouseFollowWindow" xml:space="preserve">
<value>open mouse follow window</value>
</data>
<data name="OpenCustomContentWindow" xml:space="preserve">
<value>open custom content window</value>
</data>
<data name="Ignore" xml:space="preserve">
<value>Ignore</value>
</data>
<data name="Error" xml:space="preserve">
<value>Error</value>
</data>
<data name="Ask" xml:space="preserve">
<value>Ask</value>
</data>
<data name="Fatal" xml:space="preserve">
<value>Fatal</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Clear</value>
</data>
<data name="ChangeLangAsk" xml:space="preserve">
<value>Whether to restart to change the language?</value>
</data>
<data name="About" xml:space="preserve">
<value>About</value>
</data>
<data name="Repository" xml:space="preserve">
<value>Repository</value>
</data>
<data name="Email" xml:space="preserve">
<value>Email</value>
</data>
<data name="Chatroom" xml:space="preserve">
<value>Chatroom</value>
</data>
<data name="Blog" xml:space="preserve">
<value>Blog</value>
</data>
<data name="Brush" xml:space="preserve">
<value>Brush</value>
</data>
<data name="PreviewSlider" xml:space="preserve">
<value>PreviewSlider</value>
</data>
<data name="Contributors" xml:space="preserve">
<value>Contributors</value>
</data>
<data name="Slider" xml:space="preserve">
<value>Slider</value>
</data>
<data name="IsNotPhone" xml:space="preserve">
<value>It's not a phone number</value>
</data>
<data name="PlsEnterEmail" xml:space="preserve">
<value>please enter email</value>
</data>
<data name="Step" xml:space="preserve">
<value>Step</value>
</data>
<data name="CalendarWithClock" xml:space="preserve">
<value>CalendarWithClock</value>
</data>
<data name="DateTimePicker" xml:space="preserve">
<value>DateTimePicker</value>
</data>
<data name="GroupBox" xml:space="preserve">
<value>GroupBox</value>
</data>
<data name="ListView" xml:space="preserve">
<value>ListView</value>
</data>
<data name="RichTextBox" xml:space="preserve">
<value>RichTextBox</value>
</data>
<data name="ToolBar" xml:space="preserve">
<value>ToolBar</value>
</data>
<data name="Common" xml:space="preserve">
<value>Common</value>
</data>
<data name="ShowRowNumber" xml:space="preserve">
<value>ShowRowNumber</value>
</data>
<data name="SearchBar" xml:space="preserve">
<value>SearchBar</value>
</data>
<data name="Tag" xml:space="preserve">
<value>Tag</value>
</data>
<data name="GifImage" xml:space="preserve">
<value>GifImage</value>
</data>
<data name="OutlineText" xml:space="preserve">
<value>OutlineText</value>
</data>
<data name="QQGroup" xml:space="preserve">
<value>QQ Group</value>
</data>
<data name="FlipClock" xml:space="preserve">
<value>FlipClock</value>
</data>
<data name="OpenBlurWindow" xml:space="preserve">
<value>open blur window</value>
</data>
<data name="Rate" xml:space="preserve">
<value>Rate</value>
</data>
<data name="Shield" xml:space="preserve">
<value>Shield</value>
</data>
<data name="WaterfallPanel" xml:space="preserve">
<value>WaterfallPanel</value>
</data>
<data name="Groups" xml:space="preserve">
<value>Groups</value>
</data>
<data name="CoverView" xml:space="preserve">
<value>CoverView</value>
</data>
<data name="CoverFlow" xml:space="preserve">
<value>CoverFlow</value>
</data>
<data name="PlsEnterKey" xml:space="preserve">
<value>Please input a keyword</value>
</data>
<data name="OpenNoNonClientAreaDragableWindow" xml:space="preserve">
<value>open no Non-client Area dragable window</value>
</data>
<data name="DragHere" xml:space="preserve">
<value>Drag here</value>
</data>
<data name="MessageBox" xml:space="preserve">
<value>MessageBox</value>
</data>
<data name="ProgressButton" xml:space="preserve">
<value>ProgressButton</value>
</data>
<data name="UploadStr" xml:space="preserve">
<value>Upload;Uploading</value>
</data>
<data name="OpenCustomMessageWindow" xml:space="preserve">
<value>open custom message window</value>
</data>
<data name="Transfer" xml:space="preserve">
<value>Transfer</value>
</data>
<data name="ChatBubble" xml:space="preserve">
<value>ChatBubble</value>
</data>
<data name="PushToTalk" xml:space="preserve">
<value>Push to talk</value>
</data>
<data name="Second" xml:space="preserve">
<value>Sec</value>
</data>
<data name="Label" xml:space="preserve">
<value>Label</value>
</data>
<data name="GotoTop" xml:space="preserve">
<value>GotoTop</value>
</data>
<data name="NotifyIcon" xml:space="preserve">
<value>NotifyIcon</value>
</data>
<data name="Badge" xml:space="preserve">
<value>Badge</value>
</data>
<data name="Gravatar" xml:space="preserve">
<value>Gravatar</value>
</data>
<data name="ComingSoon" xml:space="preserve">
<value>Coming Soon</value>
</data>
<data name="Comment" xml:space="preserve">
<value>Comment</value>
</data>
<data name="Reply" xml:space="preserve">
<value>Reply</value>
</data>
<data name="Dialog" xml:space="preserve">
<value>Dialog</value>
</data>
<data name="TextDialog" xml:space="preserve">
<value>TextDialog</value>
</data>
<data name="PleaseWait" xml:space="preserve">
<value>Please wait...</value>
</data>
<data name="GrowlDemo" xml:space="preserve">
<value>Growl demo</value>
</data>
<data name="NewWindow" xml:space="preserve">
<value>New window</value>
</data>
<data name="Visibility" xml:space="preserve">
<value>Visibility</value>
</data>
<data name="Blink" xml:space="preserve">
<value>Blink</value>
</data>
<data name="Exit" xml:space="preserve">
<value>Exit</value>
</data>
<data name="OpenPanel" xml:space="preserve">
<value>Open Panel</value>
</data>
<data name="AppClosingTip" xml:space="preserve">
<value>The tray icon is open and will hide the window instead of closing the program</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Prompt</value>
</data>
<data name="Try2CloseApp" xml:space="preserve">
<value>Try to close app?</value>
</data>
<data name="InteractiveDialog" xml:space="preserve">
<value>Interactive Dialog</value>
</data>
<data name="Ok" xml:space="preserve">
<value>Ok</value>
</data>
<data name="PleaseInput" xml:space="preserve">
<value>Please input...</value>
</data>
<data name="Click2Count" xml:space="preserve">
<value>Click to count</value>
</data>
<data name="RepeatButton" xml:space="preserve">
<value>RepeatButton</value>
</data>
<data name="DialogDemo" xml:space="preserve">
<value>Dialog demo</value>
</data>
<data name="ShowInCurrentWindow" xml:space="preserve">
<value>Show in the current window</value>
</data>
<data name="ShowInMainWindow" xml:space="preserve">
<value>Show in the main window</value>
</data>
<data name="SideMenu" xml:space="preserve">
<value>SideMenu</value>
</data>
<data name="Grid" xml:space="preserve">
<value>Grid</value>
</data>
<data name="BasicLayout" xml:space="preserve">
<value>Basic layout</value>
</data>
<data name="ColumnSpacing" xml:space="preserve">
<value>Column spacing</value>
</data>
<data name="HybridLayout" xml:space="preserve">
<value>Hybrid layout</value>
</data>
<data name="ColumnOffset" xml:space="preserve">
<value>Column offset</value>
</data>
<data name="ResponsiveLayout" xml:space="preserve">
<value>Responsive layout</value>
</data>
<data name="Border" xml:space="preserve">
<value>Border</value>
</data>
<data name="Poptip" xml:space="preserve">
<value>Poptip</value>
</data>
<data name="Recommendation" xml:space="preserve">
<value>Recommendation</value>
</data>
<data name="Project" xml:space="preserve">
<value>Project</value>
</data>
<data name="RangeSlider" xml:space="preserve">
<value>RangeSlider</value>
</data>
<data name="RelativePanel" xml:space="preserve">
<value>RelativePanel</value>
</data>
<data name="On" xml:space="preserve">
<value>On</value>
</data>
<data name="Off" xml:space="preserve">
<value>Off</value>
</data>
<data name="ButtonGroup" xml:space="preserve">
<value>ButtonGroup</value>
</data>
<data name="Card" xml:space="preserve">
<value>Card</value>
</data>
<data name="TextDialogWithTimer" xml:space="preserve">
<value>TextDialog with timer</value>
</data>
<data name="Magnifier" xml:space="preserve">
<value>Magnifier</value>
</data>
<data name="ImageBlock" xml:space="preserve">
<value>ImageBlock</value>
</data>
<data name="RunningBlock" xml:space="preserve">
<value>RunningBlock</value>
</data>
<data name="HoneycombPanel" xml:space="preserve">
<value>HoneycombPanel</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>Add an item</value>
</data>
<data name="RemoveItem" xml:space="preserve">
<value>Remove an item</value>
</data>
<data name="Sprite" xml:space="preserve">
<value>Sprite</value>
</data>
<data name="OpenSprite" xml:space="preserve">
<value>Open sprite</value>
</data>
<data name="Notification" xml:space="preserve">
<value>Notification</value>
</data>
<data name="SendNotification" xml:space="preserve">
<value>Send notification</value>
</data>
<data name="StaysOpen" xml:space="preserve">
<value>Stays open</value>
</data>
<data name="FloatingBlock" xml:space="preserve">
<value>FloatingBlock</value>
</data>
<data name="SplitButton" xml:space="preserve">
<value>SplitButton</value>
</data>
<data name="Tools" xml:space="preserve">
<value>Tools</value>
</data>
<data name="HatchBrushGenerator" xml:space="preserve">
<value>HatchBrushGenerator</value>
</data>
<data name="Morphing Animation" xml:space="preserve">
<value>Morphing Animation</value>
</data>
<data name="Divider" xml:space="preserve">
<value>Divider</value>
</data>
<data name="PoptipPositionStr" xml:space="preserve">
<value>top-start;top;top-end;right-start;right;right-end;bottom-end;bottom;bottom-start;left-end;left;left-start</value>
</data>
<data name="TransitioningContentControl" xml:space="preserve">
<value>TransitioningContentControl</value>
</data>
<data name="Drawer" xml:space="preserve">
<value>Drawer</value>
</data>
<data name="Documentation" xml:space="preserve">
<value>Documentation</value>
</data>
<data name="Effects" xml:space="preserve">
<value>Effects</value>
</data>
<data name="Website" xml:space="preserve">
<value>Website</value>
</data>
<data name="Vsix" xml:space="preserve">
<value>Vsix</value>
</data>
<data name="Doc_en" xml:space="preserve">
<value>English document</value>
</data>
<data name="Doc_cn" xml:space="preserve">
<value>Chinese document</value>
</data>
<data name="Demo" xml:space="preserve">
<value>Demo</value>
</data>
<data name="PinBox" xml:space="preserve">
<value>PinBox</value>
</data>
<data name="FlowDocumentScrollViewer" xml:space="preserve">
<value>FlowDocumentScrollViewer</value>
</data>
<data name="OpenGlowWindow" xml:space="preserve">
<value>Open glowWindow</value>
</data>
<data name="FlowDocument" xml:space="preserve">
<value>FlowDocument</value>
</data>
<data name="FlowDocumentPageViewer" xml:space="preserve">
<value>FlowDocumentPageViewer</value>
</data>
<data name="FlowDocumentReader" xml:space="preserve">
<value>FlowDocumentReader</value>
</data>
<data name="OpenNativeCommonWindow" xml:space="preserve">
<value>Open native common window</value>
</data>
<data name="OpenNavigationWindow" xml:space="preserve">
<value>Open navigation window</value>
</data>
<data name="Frame" xml:space="preserve">
<value>Frame</value>
</data>
<data name="PracticalDemos" xml:space="preserve">
<value>Practical demos</value>
</data>
<data name="StartScreenshot" xml:space="preserve">
<value>Start screenshot</value>
</data>
<data name="Screenshot" xml:space="preserve">
<value>Screenshot</value>
</data>
<data name="TextDialogInControl" xml:space="preserve">
<value>TextDialog(In control)</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="PropertyGrid" xml:space="preserve">
<value>PropertyGrid</value>
</data>
<data name="ImageSelector" xml:space="preserve">
<value>ImageSelector</value>
</data>
<data name="Geometry" xml:space="preserve">
<value>Geometry</value>
</data>
<data name="CheckComboBox" xml:space="preserve">
<value>CheckComboBox</value>
</data>
<data name="FlexPanel" xml:space="preserve">
<value>FlexPanel</value>
</data>
<data name="OpenTouchDragMoveWindow" xml:space="preserve">
<value>open touch drag move window</value>
</data>
<data name="UniformSpacingPanel" xml:space="preserve">
<value>UniformSpacingPanel</value>
</data>
<data name="Misc" xml:space="preserve">
<value>Misc</value>
</data>
<data name="DataEntry" xml:space="preserve">
<value>Data Entry</value>
</data>
<data name="Interacting" xml:space="preserve">
<value>Interacting</value>
</data>
<data name="DataDisplay" xml:space="preserve">
<value>Data Display</value>
</data>
<data name="Navigation" xml:space="preserve">
<value>Navigation</value>
</data>
<data name="Layout" xml:space="preserve">
<value>Layout</value>
</data>
<data name="Feedback" xml:space="preserve">
<value>Feedback</value>
</data>
<data name="Empty" xml:space="preserve">
<value>Empty</value>
</data>
<data name="ElementGroup" xml:space="preserve">
<value>ElementGroup</value>
</data>
<data name="AutoCompleteTextBox" xml:space="preserve">
<value>AutoCompleteTextBox</value>
</data>
<data name="Watermark" xml:space="preserve">
<value>Watermark</value>
</data>
<data name="CloseMainWindowDialog" xml:space="preserve">
<value>Close main window dialog</value>
</data>
</root>

View File

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Controls" xml:space="preserve">
<value>Kontroller</value>
</data>
<data name="Styles" xml:space="preserve">
<value>Stiller</value>
</data>
<data name="Growl" xml:space="preserve">
<value>Homurtu</value>
</data>
<data name="GrowlInfo" xml:space="preserve">
<value>Bugün güzel bir gün~~~</value>
</data>
<data name="GrowlSuccess" xml:space="preserve">
<value>Dosya başarıyla kaydedildi!</value>
</data>
<data name="GrowlWarning" xml:space="preserve">
<value>Disk alanı azalıyor!</value>
</data>
<data name="GrowlError" xml:space="preserve">
<value>Bağlantı başarısız. Lütfen ağınızı kontrol edin!</value>
</data>
<data name="GrowlFatal" xml:space="preserve">
<value>Program çöktü ~~~</value>
</data>
<data name="GrowlAsk" xml:space="preserve">
<value>Yeni bir sürüm algılandı! Güncellemek istiyor musunuz?</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Yükleniyor</value>
</data>
<data name="ImageBrowser" xml:space="preserve">
<value>GörüntüTarayıcı</value>
</data>
<data name="ColorPicker" xml:space="preserve">
<value>RenkSeçici</value>
</data>
<data name="Carousel" xml:space="preserve">
<value>Atlıkarınca</value>
</data>
<data name="CompareSlider" xml:space="preserve">
<value>KaydırıcıKarşılaştırıcı</value>
</data>
<data name="TimeBar" xml:space="preserve">
<value>ZamanÇubuğu</value>
</data>
<data name="Expander" xml:space="preserve">
<value>Genişletme</value>
</data>
<data name="Pagination" xml:space="preserve">
<value>Sayfalama</value>
</data>
<data name="OpenImageBrowser" xml:space="preserve">
<value>Görüntü tarayıcısını açmak için tıklayın</value>
</data>
<data name="ProgressBar" xml:space="preserve">
<value>İlerlemeÇubuğu</value>
</data>
<data name="AnimationPath" xml:space="preserve">
<value>AnimasyonYolu</value>
</data>
<data name="Button" xml:space="preserve">
<value>Düğme</value>
</data>
<data name="ToggleButton" xml:space="preserve">
<value>Geçiş Düğmesi</value>
</data>
<data name="TabControl" xml:space="preserve">
<value>SekmeDenetimi</value>
</data>
<data name="CheckBox" xml:space="preserve">
<value>OnayKutusu</value>
</data>
<data name="TextBlock" xml:space="preserve">
<value>MetinBloğu</value>
</data>
<data name="Default" xml:space="preserve">
<value>Varsayılan</value>
</data>
<data name="Primary" xml:space="preserve">
<value>Birincil</value>
</data>
<data name="Success" xml:space="preserve">
<value>Başarı</value>
</data>
<data name="Info" xml:space="preserve">
<value>Bilgi</value>
</data>
<data name="Warning" xml:space="preserve">
<value>Uyarı</value>
</data>
<data name="Danger" xml:space="preserve">
<value>Tehlike</value>
</data>
<data name="ButtonCustom" xml:space="preserve">
<value>Özel düğme</value>
</data>
<data name="Title" xml:space="preserve">
<value>Başlık</value>
</data>
<data name="StepBar" xml:space="preserve">
<value>AdımÇubuğu</value>
</data>
<data name="Prev" xml:space="preserve">
<value>Önceki</value>
</data>
<data name="Next" xml:space="preserve">
<value>Sonraki</value>
</data>
<data name="Register" xml:space="preserve">
<value>Kayıt olma</value>
</data>
<data name="BasicInfo" xml:space="preserve">
<value>Temel bilgileri doldurma</value>
</data>
<data name="UploadFile" xml:space="preserve">
<value>Dosya yükleme</value>
</data>
<data name="Complete" xml:space="preserve">
<value>Tamamlama</value>
</data>
<data name="Clock" xml:space="preserve">
<value>Saat</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>Takvim</value>
</data>
<data name="DatePicker" xml:space="preserve">
<value>TarihSeçici</value>
</data>
<data name="TimePicker" xml:space="preserve">
<value>ZamanSeçici</value>
</data>
<data name="TextBox" xml:space="preserve">
<value>MetinKutusu</value>
</data>
<data name="ContentDemoStr" xml:space="preserve">
<value>Bu içerik</value>
</data>
<data name="TitleDemoStr1" xml:space="preserve">
<value>Bu başlık</value>
</data>
<data name="TitleDemoStr2" xml:space="preserve">
<value>Bu öğe doldurulmalıdır</value>
</data>
<data name="PlsEnterContent" xml:space="preserve">
<value>Lütfen içerik girin</value>
</data>
<data name="TitleDemoStr3" xml:space="preserve">
<value>Başlık solda</value>
</data>
<data name="Text" xml:space="preserve">
<value>Metin</value>
</data>
<data name="SubTitle" xml:space="preserve">
<value>Altyazı</value>
</data>
<data name="PasswordBox" xml:space="preserve">
<value>ŞifreKutusu</value>
</data>
<data name="CirclePanel" xml:space="preserve">
<value>DairePanel</value>
</data>
<data name="ComboBox" xml:space="preserve">
<value>AçılanKutu</value>
</data>
<data name="NumericUpDown" xml:space="preserve">
<value>SayısalYukarıAşağı</value>
</data>
<data name="DataGrid" xml:space="preserve">
<value>VeriŞebekesi</value>
</data>
<data name="Index" xml:space="preserve">
<value>Dizin</value>
</data>
<data name="Name" xml:space="preserve">
<value>Adı</value>
</data>
<data name="Type" xml:space="preserve">
<value>Türü</value>
</data>
<data name="Remark" xml:space="preserve">
<value>Açıklama</value>
</data>
<data name="Selected" xml:space="preserve">
<value>Seçilmiş</value>
</data>
<data name="ListBox" xml:space="preserve">
<value>ListeKutusu</value>
</data>
<data name="TreeView" xml:space="preserve">
<value>AğaçGörünümü</value>
</data>
<data name="ScrollViewer" xml:space="preserve">
<value>KaydırmaGörüntüleyicisi</value>
</data>
<data name="Window" xml:space="preserve">
<value>Pencere</value>
</data>
<data name="Menu" xml:space="preserve">
<value>Menü</value>
</data>
<data name="RightClickHere" xml:space="preserve">
<value>Buraya sağ tıklayın</value>
</data>
<data name="RadioButton" xml:space="preserve">
<value>RadyoDüğmesi</value>
</data>
<data name="OpenMessageWindow" xml:space="preserve">
<value>mesaj penceresini aç</value>
</data>
<data name="OpenCommonWindow" xml:space="preserve">
<value>ortak pencereyi aç</value>
</data>
<data name="OpenCustomNonClientAreaWindow" xml:space="preserve">
<value>özel istemci olmayan alan penceresini aç</value>
</data>
<data name="OpenMouseFollowWindow" xml:space="preserve">
<value>fare takip penceresini aç</value>
</data>
<data name="OpenCustomContentWindow" xml:space="preserve">
<value>özel içerik penceresini aç</value>
</data>
<data name="Ignore" xml:space="preserve">
<value>Yoksay</value>
</data>
<data name="Error" xml:space="preserve">
<value>Hata</value>
</data>
<data name="Ask" xml:space="preserve">
<value>Sor</value>
</data>
<data name="Fatal" xml:space="preserve">
<value>Ölümcül</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Temizle</value>
</data>
<data name="ChangeLangAsk" xml:space="preserve">
<value>Dilin değişmesi için yeniden başlatılsın mı?</value>
</data>
<data name="About" xml:space="preserve">
<value>Hakkında</value>
</data>
<data name="Repository" xml:space="preserve">
<value>Depo</value>
</data>
<data name="Email" xml:space="preserve">
<value>E-posta</value>
</data>
<data name="Chatroom" xml:space="preserve">
<value>Sohbet odası</value>
</data>
<data name="Blog" xml:space="preserve">
<value>Blog</value>
</data>
<data name="Brush" xml:space="preserve">
<value>Fırça</value>
</data>
<data name="PreviewSlider" xml:space="preserve">
<value>KaydırıcıÖnizlemesi</value>
</data>
<data name="Contributors" xml:space="preserve">
<value>Katılımcılar</value>
</data>
<data name="Slider" xml:space="preserve">
<value>Kaydırıcı</value>
</data>
<data name="IsNotPhone" xml:space="preserve">
<value>Bu bir telefon numarası değil</value>
</data>
<data name="PlsEnterEmail" xml:space="preserve">
<value>lütfen e-posta giriniz</value>
</data>
<data name="Step" xml:space="preserve">
<value>Adım</value>
</data>
<data name="CalendarWithClock" xml:space="preserve">
<value>SaatliTakvim</value>
</data>
<data name="DateTimePicker" xml:space="preserve">
<value>TarihZamanSeçici</value>
</data>
<data name="GroupBox" xml:space="preserve">
<value>GrupKutusu</value>
</data>
<data name="ListView" xml:space="preserve">
<value>ListeGörünümü</value>
</data>
<data name="RichTextBox" xml:space="preserve">
<value>ZenginMetinKutusu</value>
</data>
<data name="ToolBar" xml:space="preserve">
<value>AraçÇubuğu</value>
</data>
<data name="Common" xml:space="preserve">
<value>Yaygın</value>
</data>
<data name="ShowRowNumber" xml:space="preserve">
<value>SatırNumarasınıGöster</value>
</data>
<data name="SearchBar" xml:space="preserve">
<value>AramaÇubuğu</value>
</data>
<data name="Tag" xml:space="preserve">
<value>Etiket</value>
</data>
<data name="GifImage" xml:space="preserve">
<value>GifResmi</value>
</data>
<data name="OutlineText" xml:space="preserve">
<value>AnahatMetni</value>
</data>
<data name="QQGroup" xml:space="preserve">
<value>QQ Grubu</value>
</data>
<data name="FlipClock" xml:space="preserve">
<value>DeğişenSaat</value>
</data>
<data name="OpenBlurWindow" xml:space="preserve">
<value>bulanıklık penceresini aç</value>
</data>
<data name="Rate" xml:space="preserve">
<value>Derece</value>
</data>
<data name="Shield" xml:space="preserve">
<value>Kalkan</value>
</data>
<data name="WaterfallPanel" xml:space="preserve">
<value>ŞelalePaneli</value>
</data>
<data name="Groups" xml:space="preserve">
<value>Gruplar</value>
</data>
<data name="CoverView" xml:space="preserve">
<value>KapakGörünümü</value>
</data>
<data name="CoverFlow" xml:space="preserve">
<value>KapakAkışı</value>
</data>
<data name="PlsEnterKey" xml:space="preserve">
<value>Lütfen bir anahtar kelime girin</value>
</data>
<data name="OpenNoNonClientAreaDragableWindow" xml:space="preserve">
<value>istemci olmayan sürüklenebilir alan penceresini aç</value>
</data>
<data name="DragHere" xml:space="preserve">
<value>Buradan sürükle</value>
</data>
<data name="MessageBox" xml:space="preserve">
<value>MesajKutusu</value>
</data>
<data name="ProgressButton" xml:space="preserve">
<value>İlerlemeDüğmesi</value>
</data>
<data name="UploadStr" xml:space="preserve">
<value>Yükle;Yükleniyor</value>
</data>
<data name="OpenCustomMessageWindow" xml:space="preserve">
<value>özel mesaj penceresini aç</value>
</data>
<data name="Transfer" xml:space="preserve">
<value>Aktarma</value>
</data>
<data name="ChatBubble" xml:space="preserve">
<value>SohbetBalonu</value>
</data>
<data name="PushToTalk" xml:space="preserve">
<value>Konuşmak için bas</value>
</data>
<data name="Second" xml:space="preserve">
<value>San</value>
</data>
<data name="Label" xml:space="preserve">
<value>Etiket</value>
</data>
<data name="GotoTop" xml:space="preserve">
<value>ÜsteDön</value>
</data>
<data name="NotifyIcon" xml:space="preserve">
<value>BildirimSimgesi</value>
</data>
<data name="Badge" xml:space="preserve">
<value>Rozet</value>
</data>
<data name="Gravatar" xml:space="preserve">
<value>Gravatar</value>
</data>
<data name="ComingSoon" xml:space="preserve">
<value>Çok Yakında</value>
</data>
<data name="Comment" xml:space="preserve">
<value>Yorum Yap</value>
</data>
<data name="Reply" xml:space="preserve">
<value>Yanıt</value>
</data>
<data name="Dialog" xml:space="preserve">
<value>İletişim</value>
</data>
<data name="TextDialog" xml:space="preserve">
<value>Metinİletişimi</value>
</data>
<data name="PleaseWait" xml:space="preserve">
<value>Lütfen bekleyin...</value>
</data>
<data name="GrowlDemo" xml:space="preserve">
<value>Homurtu demosu</value>
</data>
<data name="NewWindow" xml:space="preserve">
<value>Yeni pencere</value>
</data>
<data name="Visibility" xml:space="preserve">
<value>Görünürlük</value>
</data>
<data name="Blink" xml:space="preserve">
<value>Kırpmak</value>
</data>
<data name="Exit" xml:space="preserve">
<value>Çıkış</value>
</data>
<data name="OpenPanel" xml:space="preserve">
<value>Paneli Aç</value>
</data>
<data name="AppClosingTip" xml:space="preserve">
<value>Tepsi simgesi açık ve programı kapatmak yerine pencereyi gizleyecek</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Komut istemi</value>
</data>
<data name="Try2CloseApp" xml:space="preserve">
<value>Uygulamayı kapatmaya mı çalışıyorsunuz?</value>
</data>
<data name="InteractiveDialog" xml:space="preserve">
<value>Etkileşimli İletişim Kutusu</value>
</data>
<data name="Ok" xml:space="preserve">
<value>Tamam</value>
</data>
<data name="PleaseInput" xml:space="preserve">
<value>Lütfen girin...</value>
</data>
<data name="Click2Count" xml:space="preserve">
<value>Saymak için tıklayın</value>
</data>
<data name="RepeatButton" xml:space="preserve">
<value>TekrarlaDüğmesi</value>
</data>
<data name="DialogDemo" xml:space="preserve">
<value>İletişim demosu</value>
</data>
<data name="ShowInCurrentWindow" xml:space="preserve">
<value>Geçerli pencerede göster</value>
</data>
<data name="ShowInMainWindow" xml:space="preserve">
<value>Ana pencerede göster</value>
</data>
<data name="SideMenu" xml:space="preserve">
<value>KayanMenü</value>
</data>
<data name="Grid" xml:space="preserve">
<value>Kafes</value>
</data>
<data name="BasicLayout" xml:space="preserve">
<value>Temel düzen</value>
</data>
<data name="ColumnSpacing" xml:space="preserve">
<value>Sütun aralığı</value>
</data>
<data name="HybridLayout" xml:space="preserve">
<value>Hibrit yerleşim</value>
</data>
<data name="ColumnOffset" xml:space="preserve">
<value>Sütun uzaklığı</value>
</data>
<data name="ResponsiveLayout" xml:space="preserve">
<value>Duyarlı düzen</value>
</data>
<data name="Border" xml:space="preserve">
<value>Kenar</value>
</data>
<data name="Poptip" xml:space="preserve">
<value>İpucu</value>
</data>
<data name="Recommendation" xml:space="preserve">
<value>Öneri</value>
</data>
<data name="Project" xml:space="preserve">
<value>Proje</value>
</data>
<data name="RangeSlider" xml:space="preserve">
<value>MenzilKaydırıcı</value>
</data>
<data name="RelativePanel" xml:space="preserve">
<value>BağılPanel</value>
</data>
<data name="On" xml:space="preserve">
<value>Açık</value>
</data>
<data name="Off" xml:space="preserve">
<value>Kapalı</value>
</data>
<data name="ButtonGroup" xml:space="preserve">
<value>DüğmeGrubu</value>
</data>
<data name="Card" xml:space="preserve">
<value>Kart</value>
</data>
<data name="TextDialogWithTimer" xml:space="preserve">
<value>Zamanlayıcılı Metin İletişim Kutusu</value>
</data>
<data name="Magnifier" xml:space="preserve">
<value>Büyüteç</value>
</data>
<data name="ImageBlock" xml:space="preserve">
<value>GörüntüBloğu</value>
</data>
<data name="RunningBlock" xml:space="preserve">
<value>KayanYazı</value>
</data>
<data name="HoneycombPanel" xml:space="preserve">
<value>PetekPanel</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>Öğe ekle</value>
</data>
<data name="RemoveItem" xml:space="preserve">
<value>Öğe sil</value>
</data>
<data name="Sprite" xml:space="preserve">
<value>Peri</value>
</data>
<data name="OpenSprite" xml:space="preserve">
<value>Periyi aç</value>
</data>
<data name="Notification" xml:space="preserve">
<value>Bildirim</value>
</data>
<data name="SendNotification" xml:space="preserve">
<value>Bildirim gönder</value>
</data>
<data name="StaysOpen" xml:space="preserve">
<value>Açık kalır</value>
</data>
<data name="FloatingBlock" xml:space="preserve">
<value>KayanBlok</value>
</data>
<data name="SplitButton" xml:space="preserve">
<value>BölmeDüğmesi</value>
</data>
<data name="Tools" xml:space="preserve">
<value>Araçlar</value>
</data>
<data name="HatchBrushGenerator" xml:space="preserve">
<value>ÇizimFırçasıJeneratörü</value>
</data>
<data name="Morphing Animation" xml:space="preserve">
<value>Morphing Animasyonu</value>
</data>
<data name="Divider" xml:space="preserve">
<value>Bölücü</value>
</data>
<data name="PoptipPositionStr" xml:space="preserve">
<value>yukarı-başlangıç;yukarı;yukarı-bitiş;sağ-başlangıç;sağ;sağ-bitiş;alt-bitiş;alt;alt-başlangıç;sol-bitiş;sol;sol-başlangıç</value>
</data>
<data name="TransitioningContentControl" xml:space="preserve">
<value>GeçişİçerikKontrolü</value>
</data>
<data name="Drawer" xml:space="preserve">
<value>Çekmece</value>
</data>
<data name="Documentation" xml:space="preserve">
<value>Döküman</value>
</data>
<data name="Effects" xml:space="preserve">
<value>Efektler</value>
</data>
<data name="Website" xml:space="preserve">
<value>İnternet sitesi</value>
</data>
<data name="Vsix" xml:space="preserve">
<value>Vsix</value>
</data>
<data name="Doc_en" xml:space="preserve">
<value>İngilizce döküman</value>
</data>
<data name="Doc_cn" xml:space="preserve">
<value>Çince döküman</value>
</data>
<data name="Demo" xml:space="preserve">
<value>Demo</value>
</data>
<data name="PinBox" xml:space="preserve">
<value>PinKutusu</value>
</data>
<data name="FlowDocumentScrollViewer" xml:space="preserve">
<value>AkışBelgesiKaydırmaGörüntüleyicisi</value>
</data>
<data name="OpenGlowWindow" xml:space="preserve">
<value>IşımaPenceresini Aç</value>
</data>
<data name="FlowDocument" xml:space="preserve">
<value>AkışBelgesi</value>
</data>
<data name="FlowDocumentPageViewer" xml:space="preserve">
<value>AkışBelgesiSayfaGörüntüleyicisi</value>
</data>
<data name="FlowDocumentReader" xml:space="preserve">
<value>AkışBelgesiOkuyucu</value>
</data>
<data name="OpenNativeCommonWindow" xml:space="preserve">
<value>Yerel ortak pencereyi aç</value>
</data>
<data name="OpenNavigationWindow" xml:space="preserve">
<value>Gezinme penceresini aç</value>
</data>
<data name="Frame" xml:space="preserve">
<value>Çerçeve</value>
</data>
<data name="PracticalDemos" xml:space="preserve">
<value>Pratik Demolar</value>
</data>
<data name="StartScreenshot" xml:space="preserve">
<value>Ekran görüntüsünü al</value>
</data>
<data name="Screenshot" xml:space="preserve">
<value>EkranGörüntüsü</value>
</data>
<data name="TextDialogInControl" xml:space="preserve">
<value>TextDialog(In control)</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="PropertyGrid" xml:space="preserve">
<value>PropertyGrid</value>
</data>
<data name="ImageSelector" xml:space="preserve">
<value>ImageSelector</value>
</data>
<data name="Geometry" xml:space="preserve">
<value>Geometry</value>
</data>
<data name="CheckComboBox" xml:space="preserve">
<value>CheckComboBox</value>
</data>
<data name="FlexPanel" xml:space="preserve">
<value>FlexPanel</value>
</data>
<data name="OpenTouchDragMoveWindow" xml:space="preserve">
<value>open touch drag move window</value>
</data>
<data name="UniformSpacingPanel" xml:space="preserve">
<value>UniformSpacingPanel</value>
</data>
<data name="Misc" xml:space="preserve">
<value>Misc</value>
</data>
<data name="DataEntry" xml:space="preserve">
<value>Data Entry</value>
</data>
<data name="Interacting" xml:space="preserve">
<value>Interacting</value>
</data>
<data name="DataDisplay" xml:space="preserve">
<value>Data Display</value>
</data>
<data name="Navigation" xml:space="preserve">
<value>Navigation</value>
</data>
<data name="Layout" xml:space="preserve">
<value>Layout</value>
</data>
<data name="Feedback" xml:space="preserve">
<value>Feedback</value>
</data>
<data name="Empty" xml:space="preserve">
<value>Empty</value>
</data>
<data name="ElementGroup" xml:space="preserve">
<value>ElementGroup</value>
</data>
<data name="AutoCompleteTextBox" xml:space="preserve">
<value>AutoCompleteTextBox</value>
</data>
<data name="Watermark" xml:space="preserve">
<value>Watermark</value>
</data>
<data name="CloseMainWindowDialog" xml:space="preserve">
<value>Close main window dialog</value>
</data>
</root>

View File

@ -1,6 +1,7 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ResourceDictionary.MergedDictionaries>
<MergeResourceInclude Source="Brushes.axaml"/>
<MergeResourceInclude Source="Brushes.axaml" />
<MergeResourceInclude Source="Geometries.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>

View File

@ -0,0 +1,30 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Geometry x:Key="NewGeometry">M512 0h1216a512 512 0 1 1 0 1024H512A512 512 0 1 1 512 0zM420.16 311.04V768h74.88V433.92h2.56l228.48 334.08h72.96V311.04h-75.52v329.6h-2.56l-225.92-329.6h-74.88z m468.48 0V768h340.48v-64h-265.6V565.76h239.36v-64h-239.36V375.04h254.72v-64h-329.6z m369.28 0l131.2 456.96h80l89.6-343.68h2.56l88.96 343.68h79.36l131.84-456.96h-84.48l-85.76 347.52h-2.56l-90.24-347.52h-77.44l-90.24 347.52h-2.56l-85.76-347.52h-84.48z</Geometry>
<Geometry x:Key="LogoGeometry">M40.493382,19.001303 C36.637875,19.06448 33.938568,21.421986 33.948524,25.271919 L34.068279,71.56765 34.066906,71.598007 34.068745,71.747833 34.18895,118.21758 C34.202225,123.35083 39.026951,129.19344 44.965271,131.2674 50.903587,133.34137 55.706783,130.86133 55.693504,125.72808 L55.589508,85.524513 93.866371,85.524513 93.950943,118.21758 C93.964218,123.35083 98.788948,129.19344 104.72726,131.2674 110.66558,133.34137 115.46878,130.86133 115.4555,125.72808 L115.33575,79.432381 115.33712,79.401993 115.33528,79.252007 115.21507,32.782413 C115.2018,27.64917 110.37708,21.806566 104.43876,19.732603 98.500435,17.658638 93.697243,20.138674 93.710518,25.271919 L93.814514,65.475487 55.537647,65.475487 55.453079,32.782413 C55.439804,27.64917 50.615082,21.806566 44.676762,19.732603 43.192181,19.214111 41.778549,18.980244 40.493382,19.001303 z M9.999999,0 L140,0 C145.52284,0 150,4.4771523 150,9.999999 L150,140 C150,145.52284 145.52284,150 140,150 L9.999999,150 C4.4771523,150 0,145.52284 0,140 L0,9.999999 C0,4.4771523 4.4771523,0 9.999999,0 z</Geometry>
<Geometry x:Key="CirclePanelDemoGeometry">M28.677037,-2.2499313E-22 C38.75065,24.740243 38.50705,52.437974 27.999852,77.000001 L-1.7053028E-13,65.206651 C7.3550318,48.013234 7.5255431,28.624822 0.4740567,11.306663 z</Geometry>
<Geometry x:Key="CirclePanelRightGeometry">M267.287478 892.162257c0 45.149912 59.597884 71.336861 93.008818 37.925926L740.458554 549.925926c21.671958-21.671958 21.671958-54.179894 0-75.851852L360.296296 93.911817c-33.410935-33.410935-93.008818-5.417989-93.008818 38.828924v759.421516z m0 0</Geometry>
<Geometry x:Key="GithubGeometry">M512 0C229.12 0 0 229.12 0 512c0 226.56 146.56 417.92 350.08 485.76 25.6 4.48 35.2-10.88 35.2-24.32 0-12.16-0.64-52.48-0.64-95.36-128.64 23.68-161.92-31.36-172.16-60.16-5.76-14.72-30.72-60.16-52.48-72.32-17.92-9.6-43.52-33.28-0.64-33.92 40.32-0.64 69.12 37.12 78.72 52.48 46.08 77.44 119.68 55.68 149.12 42.24 4.48-33.28 17.92-55.68 32.64-68.48-113.92-12.8-232.96-56.96-232.96-252.8 0-55.68 19.84-101.76 52.48-137.6-5.12-12.8-23.04-65.28 5.12-135.68 0 0 42.88-13.44 140.8 52.48 40.96-11.52 84.48-17.28 128-17.28 43.52 0 87.04 5.76 128 17.28 97.92-66.56 140.8-52.48 140.8-52.48 28.16 70.4 10.24 122.88 5.12 135.68 32.64 35.84 52.48 81.28 52.48 137.6 0 196.48-119.68 240-233.6 252.8 18.56 16 34.56 46.72 34.56 94.72 0 68.48-0.64 123.52-0.64 140.8 0 13.44 9.6 29.44 35.2 24.32A512.832 512.832 0 0 0 1024 512c0-282.88-229.12-512-512-512z</Geometry>
<Geometry x:Key="NugetGeometry">M449.722947 199.412211H706.021053c130.967579 0 237.136842 106.169263 237.136842 237.136842v256.298105c0 130.967579-106.169263 237.136842-237.136842 237.136842H449.722947c-130.965895 0-237.136842-106.169263-237.136842-237.136842V436.549053c0-130.967579 106.170947-237.136842 237.136842-237.136842z m-201.205894-21.557895c0-64.299789-70.085053-104.704-125.850948-72.55579s-55.764211 112.96 0 145.111579 125.850947-8.257684 125.850948-72.555789z m239.528421 234.74021c0-68.003368-74.088421-110.736842-133.037474-76.734315s-58.950737 119.467789 0 153.470315 133.039158-8.730947 133.039158-76.736zM835.368421 692.847158c0-117.596632-128.154947-191.494737-230.123789-132.695579s-101.970526 206.593684 0 265.391158S835.368421 810.443789 835.368421 692.847158z</Geometry>
<Geometry x:Key="EmailGeometry">M430.079734 481.464543c45.196365 45.596478 118.486578 45.596478 163.68499 0l360.684736-324.939627c0.547469 3.751441 1.13894 7.490601 1.13894 11.401678l0 404.753417 0 116.754121c0 42.995233-34.547841 77.838809-77.145008 77.838809L145.397996 767.272941c-42.597167 0-77.145008-34.844599-77.145008-77.838809L68.252988 494.839155 68.252988 167.926594c0-3.911076 0.593518-7.65126 1.139963-11.401678L430.079734 481.464543zM910.960992 74.226538 562.044278 387.28558c-38.470173 38.811957-62.276369 38.811957-100.770078 0L112.538611 74.408687c10.011005-4.789073 21.069875-7.673773 32.859385-7.673773l733.044372 0C890.095779 66.735937 901.065622 69.539796 910.960992 74.226538z</Geometry>
<Geometry x:Key="WebsiteGeometry">M698.026667 597.333333C701.44 569.173333 704 541.013333 704 512 704 482.986667 701.44 454.826667 698.026667 426.666667L842.24 426.666667C849.066667 453.973333 853.333333 482.56 853.333333 512 853.333333 541.44 849.066667 570.026667 842.24 597.333333M622.506667 834.56C648.106667 787.2 667.733333 736 681.386667 682.666667L807.253333 682.666667C766.293333 753.066667 701.013333 807.68 622.506667 834.56M611.84 597.333333 412.16 597.333333C407.893333 569.173333 405.333333 541.013333 405.333333 512 405.333333 482.986667 407.893333 454.4 412.16 426.666667L611.84 426.666667C615.68 454.4 618.666667 482.986667 618.666667 512 618.666667 541.013333 615.68 569.173333 611.84 597.333333M512 851.626667C476.586667 800.426667 448 743.68 430.506667 682.666667L593.493333 682.666667C576 743.68 547.413333 800.426667 512 851.626667M341.333333 341.333333 216.746667 341.333333C257.28 270.506667 322.986667 215.893333 401.066667 189.44 375.466667 236.8 356.266667 288 341.333333 341.333333M216.746667 682.666667 341.333333 682.666667C356.266667 736 375.466667 787.2 401.066667 834.56 322.986667 807.68 257.28 753.066667 216.746667 682.666667M181.76 597.333333C174.933333 570.026667 170.666667 541.44 170.666667 512 170.666667 482.56 174.933333 453.973333 181.76 426.666667L325.973333 426.666667C322.56 454.826667 320 482.986667 320 512 320 541.013333 322.56 569.173333 325.973333 597.333333M512 171.946667C547.413333 223.146667 576 280.32 593.493333 341.333333L430.506667 341.333333C448 280.32 476.586667 223.146667 512 171.946667M807.253333 341.333333 681.386667 341.333333C667.733333 288 648.106667 236.8 622.506667 189.44 701.013333 216.32 766.293333 270.506667 807.253333 341.333333M512 85.333333C276.053333 85.333333 85.333333 277.333333 85.333333 512 85.333333 747.52 276.48 938.666667 512 938.666667 747.52 938.666667 938.666667 747.52 938.666667 512 938.666667 276.48 747.52 85.333333 512 85.333333Z</Geometry>
<Geometry x:Key="FaceBookGeometry">m 41.416254,90 c -0.327378,-7.4702 0.20833,-32.7284 0,-39.901 -5.386902,-0.2083 -4.521603,0.3274 -9.848987,0 0.20833,-5.50595 0.36436,-7.66666 0.126269,-13.32142 4.646472,0.0181 3.439989,-0.009 9.848987,-0.1894 0.09586,-3.7736 0.133082,-3.0791 0.126269,-7.38674 0.18259,-3.73943 -0.486609,-10.54308 4.293149,-14.96288 4.779758,-4.4198 13.606811,-3.64808 22.223356,-3.53554 -0.04417,5.73754 -0.03936,9.37986 0,12.87945 -5.049924,0.46388 -7.309188,-0.33689 -10.85914,1.26269 -1.403378,3.17794 -1.569601,4.80531 -1.262691,11.93242 3.147964,-0.13336 8.201788,-0.1378 12.626907,0 -0.995158,6.00899 -0.948285,7.62376 -1.767767,13.06882 -3.676625,0.088 -5.605721,-0.1488 -11.111678,0 -0.148814,6.756 0.357147,33.0107 0,40.1536 -6.428576,0.1786 -8.174438,-0.03 -14.394674,0 z</Geometry>
<Geometry x:Key="TwitterGeometry">m 10.44335,90 c 11.073313,0.3952 19.483106,-1.8358 23.901837,-7.1603 -7.9736,-1.4292 -11.832311,-4.1933 -15.078321,-11.0837 3.459698,0.8219 5.795894,0.6358 7.606781,-0.607 -7.19593,-1.719 -12.734543,-6.7971 -13.741664,-15.836 2.766355,1.55307 5.466848,2.66623 7.828682,2.0203 -4.336544,-2.92911 -9.838998,-10.47636 -5.555839,-22.47589 8.400675,11.87052 23.824269,17.67568 33.840111,17.67767 -0.936406,-9.74688 5.88057,-19.46521 15.302849,-19.97853 8.13118,-0.50719 10.57457,4.01944 12.476346,4.82624 3.644547,0.13419 7.393301,-1.74401 10.354063,-3.53553 -1.380842,4.47157 -5.06769,5.62903 -6.313453,8.58629 5.42317,0.41513 5.891376,-1.53111 8.333758,-2.0203 -2.071414,3.75017 -5.393863,5.00034 -7.323606,8.08122 -1.633654,16.12573 -5.16049,27.57123 -14.647212,36.36553 -13.825764,11.3764 -34.755458,17.369 -56.984332,5.14 z</Geometry>
<Geometry x:Key="ThumbsUpGeometry">M68.191078 915.462005l161.384597 0L229.575676 431.30719 68.191078 431.30719 68.191078 915.462005zM955.808922 471.653083c0-44.582381-36.109406-80.69281-80.69281-80.69281L620.329241 390.960273 658.859789 206.578915c0.807389-4.034896 1.412163-8.271384 1.412163-12.709463 0-16.743336-6.859221-31.873941-17.752316-42.767036l-42.968627-42.565445L333.871043 374.216937c-14.524808 14.7264-23.602557 34.899858-23.602557 57.090253l0 403.462005c0 44.582381 36.109406 80.69281 80.69281 80.69281l363.116111 0c33.487695 0 62.133106-20.37505 74.236771-49.222051l121.643478-284.441261c3.63069-9.279341 5.850242-19.164478 5.850242-29.452799L955.807898 475.083206l-0.403183-0.403183L955.808922 471.653083z</Geometry>
<Geometry x:Key="ImageGeometry">M736 224H288a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V288a64 64 0 0 0-64-64z m-416 160a64 64 0 1 1 128.032 0.032A64 64 0 0 1 320 384z m416 320a32 32 0 0 1-32 32H384a32 32 0 0 1-32-32l96-160c26.432-2.048 68.128 6.016 128 64l128-224a32 32 0 0 1 32 32v288z</Geometry>
<Geometry x:Key="KeyboardGeometry">M19.692308 512A25 25 0 1 1 19.692308 531.692308ZM512 303.027832C512 286.548884 524.86564 273.174666 540.717948 273.174666L598.153846 273.174666C614.006154 273.174666 626.871794 286.548884 626.871794 303.027832L626.871794 362.734167C626.871794 379.213115 614.006154 392.587333 598.153846 392.587333L540.717948 392.587333C524.86564 392.587333 512 379.213115 512 362.734167L512 303.027832 512 303.027832ZM512 482.146834 512 541.853166C512 558.332115 499.13436 571.706335 483.282052 571.706335L425.846154 571.706335C409.993846 571.706335 397.128206 558.332115 397.128206 541.853166L397.128206 482.146834C397.128206 465.667885 409.993846 452.293665 425.846154 452.293665L483.282052 452.293665C499.13436 452.293665 512 465.667885 512 482.146834L512 482.146834ZM339.692308 303.027832C339.692308 286.548884 352.557948 273.174666 368.410256 273.174666L425.846154 273.174666C441.698462 273.174666 454.564102 286.548884 454.564102 303.027832L454.564102 362.734167C454.564102 379.213115 441.698462 392.587333 425.846154 392.587333L368.410256 392.587333C352.557948 392.587333 339.692308 379.213115 339.692308 362.734167L339.692308 303.027832 339.692308 303.027832ZM167.384615 303.027832C167.384615 286.548884 180.250256 273.174666 196.102564 273.174666L253.538462 273.174666C269.390769 273.174666 282.25641 286.548884 282.25641 303.027832L282.25641 362.734167C282.25641 379.213115 269.390769 392.587333 253.538462 392.587333L196.102564 392.587333C180.250256 392.587333 167.384615 379.213115 167.384615 362.734167L167.384615 303.027832 167.384615 303.027832ZM282.25641 720.972168C282.25641 737.451116 269.390769 750.825334 253.538462 750.825334L196.102564 750.825334C180.250256 750.825334 167.384615 737.451116 167.384615 720.972168L167.384615 661.265833C167.384615 644.786885 180.250256 631.412667 196.102564 631.412667L253.538462 631.412667C269.390769 631.412667 282.25641 644.786885 282.25641 661.265833L282.25641 720.972168 282.25641 720.972168ZM310.97436 571.706335 253.538462 571.706335C237.686154 571.706335 224.820513 558.332115 224.820513 541.853166L224.820513 482.146834C224.820513 465.667885 237.686154 452.293665 253.538462 452.293665L310.97436 452.293665C326.826667 452.293665 339.692308 465.667885 339.692308 482.146834L339.692308 541.853166C339.692308 558.332115 326.826667 571.706335 310.97436 571.706335L310.97436 571.706335ZM569.435898 720.972168C569.435898 737.451116 556.570256 750.825334 540.717948 750.825334L368.410256 750.825334C352.557948 750.825334 339.692308 737.451116 339.692308 720.972168L339.692308 661.265833C339.692308 644.786885 352.557948 631.412667 368.410256 631.412667L540.717948 631.412667C556.570256 631.412667 569.435898 644.786885 569.435898 661.265833L569.435898 720.972168 569.435898 720.972168ZM569.435898 541.853166 569.435898 482.146834C569.435898 465.667885 582.301538 452.293665 598.153846 452.293665L655.589744 452.293665C671.442052 452.293665 684.307692 465.667885 684.307692 482.146834L684.307692 541.853166C684.307692 558.332115 671.442052 571.706335 655.589744 571.706335L598.153846 571.706335C582.301538 571.706335 569.435898 558.332115 569.435898 541.853166L569.435898 541.853166ZM856.615385 720.972168C856.615385 737.451116 843.749744 750.825334 827.897437 750.825334L655.589744 750.825334C639.737437 750.825334 626.871794 737.451116 626.871794 720.972168L626.871794 661.265833C626.871794 644.786885 639.737437 631.412667 655.589744 631.412667L713.02564 631.412667C728.877948 631.412667 741.74359 618.038449 741.74359 601.559501L741.74359 482.146834C741.74359 465.667885 754.609231 452.293665 770.461538 452.293665L827.897437 452.293665C843.749744 452.293665 856.615385 465.667885 856.615385 482.146834L856.615385 720.972168 856.615385 720.972168ZM856.615385 362.734167C856.615385 379.213115 843.749744 392.587333 827.897437 392.587333L713.02564 392.587333C697.173333 392.587333 684.307692 379.213115 684.307692 362.734167L684.307692 303.027832C684.307692 286.548884 697.173333 273.174666 713.02564 273.174666L827.897437 273.174666C843.749744 273.174666 856.615385 286.548884 856.615385 303.027832L856.615385 362.734167 856.615385 362.734167Z</Geometry>
<Geometry x:Key="LoveGeometry">M890.2 208.2c-91.8-91.9-242.1-91.9-334 0L544.4 220c-18.2 18.2-47.6 18.2-65.8 0l-11.8-11.8c-91.9-91.9-242.1-91.9-334 0C41 300 24.7 533.9 203.6 722.1 304 827.8 412.4 882.3 470 905.9c26.6 10.9 56.5 10.9 83 0 57.6-23.6 166-78.1 266.4-183.8 178.9-188.2 162.6-422 70.8-513.9z</Geometry>
<Geometry x:Key="CnblogsGeometry">M512 0C229.234472 0 0 229.226146 0 512 0 794.765528 229.234472 1024 512 1024S1024 794.765528 1024 512C1024 229.226146 794.765528 0 512 0zM228.776585 836.066862c-63.163317 0-114.371642-51.208325-114.371642-114.371642S165.613268 607.323577 228.776585 607.323577s114.371642 51.208325 114.371643 114.371643c0 63.171642-51.208325 114.371642-114.371643 114.371642z m420.555968-89.612488a391.867317 391.867317 0 0 1-1.989724 16.975089c-7.259577 30.203837-33.950179 52.898341-66.376845 52.898342-38.104455 0-68.990959-34.158309-68.99096-72.204488 0-5.877593 0.81587-11.463805 2.206179-16.775284-1.756618-131.096976-103.981789-237.867707-233.205593-246.883903l-6.343805-0.740943-1.015675-0.041626c-5.453008-0.216455-10.930992-0.732618-16.142569-2.331057a67.958634 67.958634 0 0 1-47.91987-65.078114c0-37.604943 30.245463-68.091837 67.550699-68.091837 0.299707 0 0.591089 0.041626 0.890797 0.049951l0.124878-0.049951c205.707447 2.139577 371.836878 169.484488 371.836878 375.699772 0 7.717463-0.341333 15.34335-0.824195 22.94426 0.066602 1.207154 0.19148 2.397659 0.199805 3.629789z m254.085203-63.329821c-10.856065 45.172553-25.80813 104.114992-74.310764 104.114992-56.994341 0-48.236228-66.085463-48.236228-122.996553 0-8.791415 1.223805-17.149919 3.296781-25.100488-2.639089-196.108488-169.834146-387.812943-363.137041-401.291447l-35.806699-5.827642c-42.117203-7.492683-111.715902-3.255154-111.715903-49.193626 0-56.253398 50.234276-81.861724 106.038114-81.861724 0.449561 0 0.882472 0.058276 1.332033 0.066602l0.183154-0.066602c307.724488 3.180228 526.252748 208.546341 526.252748 517.028423a538.474146 538.474146 0 0 1-1.23213 34.316488c0.108228 1.806569 0.291382 3.596488 0.308033 5.428032a542.72 542.72 0 0 1-2.972098 25.383545z</Geometry>
<Geometry x:Key="ConfigGeometry">M827.904 541.184a278.592 278.592 0 0 0 0-58.368l73.728-58.368c15.872-13.056 20.224-35.584 9.728-53.504l-78.592-137.728c-9.984-17.408-31.232-25.856-51.712-18.176l-86.528 35.072c-15.872-11.52-32.512-21.248-49.664-29.184l-12.8-92.928c-3.072-20.224-20.736-35.584-41.216-35.584h-157.44c-20.736 0-38.144 14.848-41.216 35.84L378.88 221.44c-17.152 7.936-33.792 17.92-49.664 29.184L242.688 215.296c-18.688-7.168-41.216 0.768-51.2 18.176L112.64 371.2c-10.24 17.92-6.144 40.448 10.24 53.76l73.472 58.112c-1.024 9.472-1.536 19.2-1.536 29.184 0 9.728 0.512 19.456 1.536 29.184l-73.984 58.368c-15.872 13.056-19.968 35.584-9.728 53.248l78.848 137.728c9.984 17.408 32 25.856 51.456 17.92l86.528-35.072c15.872 11.52 32.512 21.248 49.664 29.184l13.056 93.696c3.328 20.48 20.48 35.328 41.216 35.328h157.44c20.48 0 38.144-15.36 41.216-35.84l13.056-93.184c17.152-7.936 33.792-17.664 49.664-29.184l86.784 35.328c4.864 1.792 9.984 2.816 15.104 2.816 14.848 0 28.672-7.936 36.096-20.992l78.592-137.728c10.24-17.664 6.4-40.192-9.984-53.76l-73.472-58.112z m-25.344 231.168l-99.584-40.448c-7.424-3.072-15.872-1.792-22.272 3.072-19.712 15.36-40.704 27.648-62.464 36.608-7.424 3.072-12.544 9.728-13.568 17.664l-14.592 104.96-155.392 2.304-15.104-107.264c-1.024-7.936-6.4-14.592-13.568-17.664-21.76-8.96-42.752-21.504-62.464-36.608-4.096-3.072-8.96-4.608-13.824-4.608-2.816 0-5.888 0.512-8.448 1.536l-96.256 41.472-80.896-137.216 84.48-66.816c6.144-4.864 9.472-12.8 8.448-20.48-1.536-12.032-2.56-24.32-2.56-36.608 0-12.288 1.024-24.576 2.56-36.608 1.024-7.936-2.048-15.616-8.448-20.48l-83.712-64 76.544-139.264 99.584 40.448c7.424 3.072 15.872 1.792 22.272-3.072 19.712-15.36 40.96-27.648 62.72-36.864 7.424-3.072 12.544-9.728 13.568-17.664l12.544-104.704 157.696-2.304 15.104 107.264c1.024 7.936 6.4 14.592 13.568 17.664 21.76 8.96 42.752 21.504 62.464 36.864 6.4 4.864 14.848 6.144 22.272 3.072l96.256-41.472 80.896 137.216-84.48 66.816c-6.144 4.864-9.472 12.544-8.448 20.48 1.536 12.032 2.56 24.32 2.56 36.608 0 12.288-1.024 24.576-2.56 36.608-1.024 7.936 2.304 15.616 8.448 20.48l83.712 63.744-77.056 139.264zM512 345.6c-91.136 0-165.12 74.752-165.12 166.4s73.984 166.4 165.12 166.4 165.12-74.752 165.12-166.4-73.984-166.4-165.12-166.4z m0 297.216c-71.168 0-129.28-58.624-129.28-130.816 0-72.192 58.112-130.816 129.28-130.816s129.28 58.624 129.28 130.816c0 72.192-57.856 130.816-129.28 130.816z</Geometry>
<Geometry x:Key="ContributorsGeometry">M657.486769 287.744c5.671385 0 11.264-5.671385 16.935385-5.671385l186.289231-124.140307c5.592615-5.592615 16.935385-16.935385 16.935384-28.199385V73.334154A74.673231 74.673231 0 0 0 804.233846 0H606.680615v220.002462c0 22.606769-16.935385 33.870769-39.463384 33.870769H454.262154c-22.528 0-39.463385-16.935385-39.463385-33.870769V5.671385H222.838154c-45.134769 0-79.005538 33.870769-79.005539 73.255384v56.477539c0 11.264 5.671385 22.528 16.935385 28.199384l186.289231 124.140308h16.935384C200.310154 349.735385 98.697846 507.746462 121.304615 693.878154c22.528 169.275077 169.353846 310.350769 344.221539 327.207384 237.095385 28.199385 440.32-152.339692 440.32-377.934769 0-158.011077-101.612308-299.008-248.359385-355.406769z m-146.747077 671.271385C335.793231 959.015385 189.046154 818.018462 189.046154 643.150769c0-174.867692 146.747077-310.350769 321.693538-310.350769 174.946462 0 321.693538 141.075692 321.693539 315.943385s-146.747077 310.350769-321.693539 310.350769zM670.798769 572.967385l-68.371692-11.185231a31.507692 31.507692 0 0 1-28.514462-16.777846l-28.514461-55.926154c-17.092923-27.963077-51.278769-27.963077-68.371692 0l-28.514462 55.926154a31.507692 31.507692 0 0 1-28.514462 16.777846l-68.371692 11.185231c-28.514462 5.592615-39.936 39.148308-17.092923 61.44l45.528615 39.227077c5.750154 11.185231 17.171692 22.370462 11.421539 33.555692l-11.421539 67.111384c-5.671385 27.963077 28.514462 50.333538 51.357539 33.555693l62.700308-27.963077a37.021538 37.021538 0 0 1 34.185846 0l62.700307 33.555692c28.514462 16.777846 57.028923-5.592615 51.27877-33.555692l-11.421539-67.111385c0-16.777846 5.750154-27.963077 11.421539-33.555692l51.278769-44.740923a38.596923 38.596923 0 0 0-22.843077-61.518769z</Geometry>
<Geometry x:Key="GitHubStrGeometry">M1185.92 769.92h-1.28c0.576 0 0.96 0.64 1.536 0.704h0.384l-0.64-0.64z m0.256 0.704c-5.952 0.064-20.928 3.2-36.736 3.2-49.92 0-67.2-23.04-67.2-53.12V520.32h101.76c5.76 0 10.24-5.12 10.24-12.16v-108.8c0-5.76-5.12-10.88-10.24-10.88h-101.76V253.44c0-5.12-3.2-8.32-8.96-8.32h-138.24c-5.76 0-8.96 3.2-8.96 8.32v138.88s-69.76 17.28-74.24 17.92c-5.12 1.28-8.32 5.76-8.32 10.88v87.04c0 7.04 5.12 12.16 10.88 12.16h71.04v209.92c0 156.16 108.8 172.16 183.04 172.16 33.92 0 74.88-10.88 81.28-14.08 3.84-1.28 5.76-5.76 5.76-10.24v-96a11.328 11.328 0 0 0-9.344-11.52z m1516.544-140.8c0-115.84-46.72-131.2-96-126.08-38.4 2.56-69.12 21.76-69.12 21.76v225.28s31.36 21.76 78.08 23.04c65.92 1.92 87.04-21.76 87.04-144z m155.52-10.24c0 219.52-71.04 282.24-195.2 282.24-104.96 0-161.28-53.12-161.28-53.12s-2.56 29.44-5.76 33.28c-1.92 3.84-5.12 5.12-8.96 5.12h-94.72c-6.4 0-12.16-5.12-12.16-10.88l1.28-711.04c0-5.76 5.12-10.88 10.88-10.88h136.32c5.76 0 10.88 5.12 10.88 10.88v241.28s52.48-33.92 129.28-33.92l-0.64-1.28c76.8 0 190.08 28.8 190.08 248.32z m-558.08-231.04H2165.76c-7.04 0-10.88 5.12-10.88 12.16v348.16s-35.2 24.96-83.2 24.96-62.08-21.76-62.08-69.76V400c0-5.76-5.12-10.88-10.88-10.88h-136.96c-5.76 0-10.88 5.12-10.88 10.88v327.04c0 140.8 78.72 176 186.88 176 88.96 0 161.28-49.28 161.28-49.28s3.2 24.96 5.12 28.8c1.28 3.2 5.76 5.76 10.24 5.76h85.76c7.04 0 10.88-5.12 10.88-10.88l1.28-478.08c0-5.76-5.12-10.88-12.16-10.88z m-1516.8-0.64h-136.32c-5.76 0-10.88 5.76-10.88 12.8v469.76c0 12.8 8.32 17.28 19.2 17.28h122.88c12.8 0 16-5.76 16-17.28V398.72c0-5.76-5.12-10.88-10.88-10.88z m-67.2-216.32c-49.28 0-88.32 39.04-88.32 88.32 0 49.28 39.04 88.32 88.32 88.32 48 0 87.04-39.04 87.04-88.32 0-49.28-39.04-88.32-87.04-88.32z m1055.36-16h-135.04c-5.76 0-10.88 5.12-10.88 10.88v261.76h-211.84V166.4c0-5.76-5.12-10.88-10.88-10.88h-136.32c-5.76 0-10.88 5.12-10.88 10.88v711.04c0 5.76 5.76 10.88 10.88 10.88h136.32c5.76 0 10.88-5.12 10.88-10.88V573.44h211.84l-1.28 304c0 5.76 5.12 10.88 10.88 10.88h136.32c5.76 0 10.88-5.12 10.88-10.88V166.4c0-5.76-5.12-10.88-10.88-10.88zM563.84 470.4v367.36c0 2.56-0.64 7.04-3.84 8.32 0 0-80 56.96-211.84 56.96-159.36 0-348.16-49.92-348.16-378.88S165.12 127.36 326.4 128c139.52 0 195.84 31.36 204.8 37.12 2.56 3.2 3.84 5.76 3.84 8.96L508.16 288c0 5.76-5.76 12.8-12.8 10.88-23.04-7.04-57.6-21.12-138.88-21.12-94.08 0-195.2 26.88-195.2 238.72s96 236.8 165.12 236.8c58.88 0 80-7.04 80-7.04v-147.2H312.32c-7.04 0-12.16-5.12-12.16-10.88V470.4c0-5.76 5.12-10.88 12.16-10.88h239.36c7.04 0 12.16 5.12 12.16 10.88z</Geometry>
<Geometry x:Key="ProjectGeometry">M838.4 325.12 554.24 479.36C528 493.44 512 521.6 512 552.96l0 298.24c0 32 31.36 53.12 57.6 38.4l284.16-154.24c25.6-14.08 42.24-42.24 42.24-73.6L896 364.16C896 331.52 864.64 311.04 838.4 325.12zM405.76 478.72 121.6 325.12C95.36 311.04 64 331.52 64 363.52l0 299.52c0 31.36 16 59.52 42.24 73.6l284.16 153.6C416.64 904.32 448 883.2 448 851.2L448 552.32C448 520.96 432 492.8 405.76 478.72zM812.16 255.36c13.44-7.04 19.84-19.2 18.56-30.72 1.28-12.16-5.12-23.68-18.56-30.72L522.88 42.88c-12.8-7.04-28.16-10.24-43.52-10.24-15.36 0-30.72 3.2-43.52 10.24L146.56 193.28C133.12 200.32 127.36 212.48 128 224 127.36 236.16 133.12 248.32 146.56 255.36l289.28 150.4c12.8 7.04 28.16 10.24 43.52 10.24 15.36 0 30.72-3.2 43.52-10.24L812.16 255.36z</Geometry>
<Geometry x:Key="BlogGeometry">M1137.575865 0l0 795.939663-267.130435 228.060337-870.44543 0 0-1024 1137.575865 0zM795.939663 682.363798l-626.030169 0 0 113.575865 626.030169 0 0-113.575865zM966.757764 455.212067l-796.84827 0 0 113.575865 796.84827 0 0-113.575865zM966.757764 227.15173l-796.84827 0 0 114.484472 796.84827 0 0-114.484472z</Geometry>
<Geometry x:Key="VisualStudioGeometry">M23.063,0L11,12L3,6L0,7v15l3,2l8-6l11.875,12L30,27V2.938L23.063,0z M3,19v-8l5,4L3,19z M23,21l-8-6l8-6V21z</Geometry>
<Geometry x:Key="CodeGeometry">M288.752 319.495c-12.497-12.497-32.758-12.497-45.255 0L73.619 489.372a32 32 0 0 0 0 45.254l169.878 169.879c6.249 6.248 14.438 9.372 22.627 9.372s16.379-3.124 22.627-9.372c12.497-12.497 12.497-32.759 0-45.255L141.502 512l147.25-147.25c12.497-12.497 12.497-32.758 0-45.255zM950.38 489.372L780.504 319.495c-12.498-12.497-32.759-12.497-45.255 0-12.497 12.497-12.497 32.758 0 45.255L882.499 512l-147.25 147.251c-12.496 12.496-12.496 32.758 0.001 45.255 6.248 6.248 14.438 9.372 22.627 9.372s16.379-3.124 22.628-9.373l169.877-169.878c12.496-12.497 12.496-32.758-0.002-45.255zM600.417 312.63c-16.289-6.858-35.052 0.785-41.91 17.074L415.451 669.46c-6.858 16.288 0.786 35.052 17.074 41.91a31.892 31.892 0 0 0 12.404 2.517c12.488 0 24.355-7.359 29.506-19.591L617.491 354.54c6.858-16.288-0.786-35.052-17.074-41.91z</Geometry>
<Geometry x:Key="WikiGeometry">M638.72 808.533333 529.493333 551.253333C485.973333 636.16 438.186667 725.333333 397.226667 808.533333 396.8 808.96 377.173333 808.533333 377.173333 808.533333 314.453333 661.333333 249.6 516.266667 186.453333 370.346667 171.946667 334.506667 120.746667 277.333333 85.333333 277.333333 85.333333 273.066667 85.333333 263.68 85.333333 258.133333L301.226667 258.133333 301.226667 277.333333C275.626667 277.333333 232.106667 294.4 243.2 322.133333 273.92 387.84 381.44 642.56 410.88 707.413333 430.933333 667.306667 487.68 561.493333 512 516.693333 492.8 479.146667 432.213333 338.346667 414.293333 303.36 400.64 280.32 366.08 277.333333 339.626667 277.333333 339.626667 270.933333 340.053333 266.666667 339.626667 258.56L529.92 258.986667 529.92 276.053333C503.893333 277.333333 479.573333 286.293333 490.666667 311.04 516.266667 363.946667 531.2 401.92 554.666667 450.986667 561.92 436.48 600.32 357.546667 618.666667 316.16 629.76 288.426667 613.12 277.333333 567.04 277.333333 567.466667 272.213333 567.466667 263.253333 567.466667 258.986667 626.773333 258.56 715.946667 258.56 731.733333 258.133333L731.733333 276.053333C701.44 277.333333 670.293333 293.546667 654.08 318.293333L576 482.133333C583.68 503.893333 659.626667 672.426667 667.733333 691.2L832 314.453333C819.2 283.733333 782.506667 277.333333 768 277.333333 768 271.786667 768 264.533333 768 258.133333L938.666667 259.413333 938.666667 260.266667 938.666667 277.333333C901.12 277.333333 877.653333 298.666667 864 330.666667 829.866667 407.04 725.333333 650.24 657.066667 808.533333 657.066667 808.533333 638.72 808.533333 638.72 808.533333Z</Geometry>
<Geometry x:Key="DocGeometry">M173.826977 510.432295c0-122.019031-0.050142-244.038062 0.022513-366.057093 0.032746-54.232159 27.618011-81.962733 81.740676-82.012875 117.26475-0.10847 234.532571-0.400113 351.790158 0.567935 10.968819 0.090051 24.65554 5.861498 32.362059 13.658068 66.276473 67.050092 131.747603 134.908596 196.58633 203.352431 7.161097 7.559163 12.495592 20.287045 12.535501 30.641881 0.738827 189.363835 0.623193 378.731764 0.480954 568.098669-0.036839 49.259914-28.894074 77.959559-78.538751 78.007655-172.727946 0.166799-345.455893 0.165776-518.183839 0.002047-50.561559-0.048095-78.714759-28.893051-78.760808-80.201623C173.752276 754.470357 173.826977 632.451326 173.826977 510.432295zM425.726078 715.13242c-0.409322 52.42193 32.43983 88.344071 81.254605 88.856747 48.829102 0.512676 83.016739-35.294854 83.205027-87.148849 0.190335-52.300156-32.965809-88.35942-81.524758-88.665389C459.317127 627.863844 426.136424 662.654208 425.726078 715.13242zM265.914302 633.581056c0 56.69935 0 110.830201 0 166.16446 23.783683 0 45.88505 0.218988 67.980277-0.049119 36.362162-0.441045 61.114916-17.009396 71.76958-47.599088 13.557784-38.924521 4.252861-85.525885-22.836101-104.649432-9.880021-6.974855-22.768563-12.386098-34.668591-13.255908C321.448106 632.240525 294.495244 633.581056 265.914302 633.581056zM758.306732 689.51088c-9.967002-45.812395-41.170678-66.920132-86.082564-60.683081-42.587957 5.913687-71.66418 46.171576-67.992557 94.137007 3.773953 49.296753 35.82902 80.999802 81.923848 81.025385 42.137703 0.023536 68.915579-25.63382 71.465658-69.621661-10.092869 0-20.128433 0-30.109762 0-16.044418 36.365232-36.768415 47.330982-62.482053 33.178657-19.942191-10.975982-28.691459-39.623439-21.979594-69.791529 4.77884-21.481244 16.022928-36.523845 39.027875-38.340213 21.590737-1.704828 35.721573 9.087982 40.968064 30.095435C735.017306 689.51088 745.964636 689.51088 758.306732 689.51088zM635.406634 159.644977c0 32.664957-0.671289 69.714781 0.62524 106.695021 0.230244 6.566556 8.422833 18.209734 13.30912 18.408255 37.929868 1.542122 75.950809 0.851391 113.944122 0.851391 1.113357-2.461051 2.226714-4.92108 3.340071-7.382131C722.585159 238.422158 678.54513 198.626803 635.406634 159.644977zM553.603537 717.1381c-0.353041 34.149774-17.751293 55.144948-45.725414 55.175647-29.049616 0.031722-45.502333-21.023826-44.98454-57.571207 0.49528-34.968419 17.328667-55.873542 44.977377-55.858192C535.765263 658.899698 553.965787 682.0827 553.603537 717.1381zM298.449299 770.413468c0-37.08564 0-71.501474 0-107.650789 25.056676-1.242294 50.77236-6.163373 66.627467 18.401092 13.642718 21.135366 14.034645 45.815465 2.095731 67.677379C352.412328 775.868713 325.439 771.676228 298.449299 770.413468z</Geometry>
<Geometry x:Key="DocumentGeometry">M979.478261 706.381913a44.521739 44.521739 0 0 1-11.842783 57.967304l-4.36313 2.849392-393.794783 227.862261-5.38713 4.763826a84.012522 84.012522 0 0 1-43.942957 17.808695l-8.102956 0.400696c-19.055304 0-37.309217-6.544696-52.045913-18.253913l-5.431652-4.719304-393.750261-227.862261a44.521739 44.521739 0 0 1-18.610087-56.186435l2.359652-4.630261a44.521739 44.521739 0 0 1 60.816696-16.250435l405.325913 234.540522 1.335652 1.513739 1.335652-1.513739 405.281391-234.540522a44.521739 44.521739 0 0 1 60.861218 16.250435z m0-222.608696a44.521739 44.521739 0 0 1-11.842783 57.967305l-4.36313 2.849391-393.794783 227.862261-5.38713 4.763826a84.012522 84.012522 0 0 1-43.942957 17.808696l-8.102956 0.400695c-19.055304 0-37.309217-6.544696-52.045913-18.253913l-5.431652-4.719304-393.750261-227.862261a44.521739 44.521739 0 0 1-18.610087-56.186435l2.359652-4.630261a44.521739 44.521739 0 0 1 60.816696-16.250434l405.325913 234.540521 1.335652 1.513739 1.335652-1.513739 405.281391-234.540521a44.521739 44.521739 0 0 1 60.861218 16.250434zM512 0c18.788174 0 36.864 6.099478 51.645217 17.185391l4.58574 3.739826 403.500521 199.68 5.609739 6.144c32.50087 35.439304 32.50087 89.889391 0 125.328696l-5.609739 6.144-403.500521 199.590957-4.541218 3.784347a86.238609 86.238609 0 0 1-43.675826 16.829218L512 578.782609c-18.788174 0-36.864-6.099478-51.645217-17.185392l-4.630261-3.784347L52.268522 358.221913l-5.609739-6.144a92.738783 92.738783 0 0 1 0-125.328696l5.609739-6.144L455.724522 20.925217l4.585739-3.739826c12.688696-9.48313 27.826087-15.315478 43.675826-16.829217z m0 90.37913l-3.561739 3.873392L114.064696 289.391304l394.462608 195.138783 3.517218 3.82887 3.561739-3.82887L909.935304 289.391304l-394.462608-195.138782L512 90.37913z</Geometry>
</ResourceDictionary>

View File

@ -0,0 +1,95 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using HandyControl.Tools;
using HandyControlDemo.Data;
using Newtonsoft.Json;
namespace HandyControlDemo.Service;
public class DataService
{
internal List<DemoInfoModel> GetDemoInfo()
{
var infoList = new List<DemoInfoModel>();
string jsonStr = ReadEmbeddedJsonFile("HandyControlDemo.Data.DemoInfo.json");
var jsonObj = JsonConvert.DeserializeObject<dynamic>(jsonStr);
if (jsonObj is null)
{
return new List<DemoInfoModel>();
}
foreach (var item in jsonObj)
{
var titleKey = (string) item.title;
var title = titleKey;
List<DemoItemModel> list = Convert2DemoItemList(item.demoItemList);
var demoInfoModel = new DemoInfoModel
{
Key = titleKey,
Title = title,
DemoItemList = list,
SelectedIndex = (int) item.selectedIndex,
IsGroupEnabled = (bool) item.group
};
infoList.Add(demoInfoModel);
}
return infoList;
}
private string ReadEmbeddedJsonFile(string resourceName)
{
var assembly = Assembly.GetExecutingAssembly();
var resourceNameWithNamespace = assembly.GetManifestResourceNames()
.FirstOrDefault(n => n.EndsWith(resourceName, StringComparison.OrdinalIgnoreCase));
if (resourceNameWithNamespace is null)
{
throw new InvalidOperationException($"Resource '{resourceName}' not found.");
}
using var stream = assembly.GetManifestResourceStream(resourceNameWithNamespace);
if (stream is null)
{
throw new InvalidOperationException($"Resource '{resourceName}' not found.");
}
using var reader = new StreamReader(stream, Encoding.UTF8);
return reader.ReadToEnd();
}
private List<DemoItemModel> Convert2DemoItemList(dynamic list)
{
var resultList = new List<DemoItemModel>();
foreach (var item in list)
{
var name = (string) item[0];
string targetCtlName = item[1];
string imageBrushName = item[2];
var isNew = !string.IsNullOrEmpty((string) item[3]);
var groupName = (string) item[4];
if (string.IsNullOrEmpty(groupName))
{
groupName = "Misc";
}
resultList.Add(new DemoItemModel
{
Name = name,
TargetCtlName = targetCtlName,
ImageBrush = ResourceHelper.GetResource<object>(imageBrushName),
IsNew = isNew,
GroupName = groupName
});
}
return resultList;
}
}

View File

@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
namespace HandyControlDemo.Tools;
internal class AssemblyHelper
{
private static readonly string NameSpaceStr = typeof(AssemblyHelper).Assembly.GetName().Name!;
private static readonly Dictionary<string, object> CacheDic = [];
public static void Register(string name, object instance) => CacheDic[name] = instance;
public static object? ResolveByKey(string key)
{
if (CacheDic.TryGetValue(key, out var value))
{
return value;
}
return null;
}
public static object? CreateInternalInstance(string className)
{
try
{
var type = Type.GetType($"{NameSpaceStr}.{className}");
return type == null ? null : Activator.CreateInstance(type);
}
catch
{
return null;
}
}
}

View File

@ -0,0 +1,51 @@
<UserControl x:Class="HandyControlDemo.UserControl.LeftMainContent"
Background="{DynamicResource RegionBrush}"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:data="clr-namespace:HandyControlDemo.Data"
Margin="16,16,0,16"
CornerRadius="10"
Effect="{StaticResource EffectShadow4}">
<TabControl BorderThickness="0 1 0 0"
SelectionChanged="TabControl_OnSelectionChanged"
ItemsSource="{Binding DemoInfoCollection}"
Background="Transparent"
SelectedIndex="0">
<TabControl.ItemTemplate>
<DataTemplate DataType="data:DemoInfoModel">
<TextBlock Text="{Binding Title}" />
</DataTemplate>
</TabControl.ItemTemplate>
<TabControl.ContentTemplate>
<DataTemplate DataType="data:DemoInfoModel">
<Panel Margin="10">
<ListBox SelectionMode="Single"
Padding="0"
BorderThickness="0"
SelectedIndex="{Binding SelectedIndex}"
ItemsSource="{Binding DemoItemList}">
<ListBox.ItemTemplate>
<DataTemplate DataType="data:DemoItemModel">
<StackPanel Orientation="Horizontal">
<Rectangle Width="16"
Height="16"
Fill="{Binding ImageBrush}" />
<TextBlock Margin="6,0,0,0"
Text="{Binding Name}" />
<Path IsVisible="{Binding IsNew}"
VerticalAlignment="Center"
Data="{StaticResource NewGeometry}"
Stretch="Uniform"
Margin="10,0,0,0"
Width="30"
Height="14"
Fill="{DynamicResource AccentBrush}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Panel>
</DataTemplate>
</TabControl.ContentTemplate>
</TabControl>
</UserControl>

View File

@ -0,0 +1,26 @@
using Avalonia.Controls;
using CommunityToolkit.Mvvm.Messaging;
using HandyControlDemo.Data;
namespace HandyControlDemo.UserControl;
public partial class LeftMainContent : Avalonia.Controls.UserControl
{
public LeftMainContent()
{
InitializeComponent();
}
private void TabControl_OnSelectionChanged(object? _, SelectionChangedEventArgs e)
{
if (e.AddedItems.Count == 0)
{
return;
}
if (e.AddedItems[0] is DemoItemModel demoItem)
{
WeakReferenceMessenger.Default.Send(demoItem, MessageToken.SwitchDemo);
}
}
}

View File

@ -0,0 +1,35 @@
<UserControl x:Class="HandyControlDemo.UserControl.MainContent"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Panel>
<Border Margin="16">
<Grid MinHeight="300"
MinWidth="200"
HorizontalAlignment="Center"
VerticalAlignment="Center"
RowDefinitions="Auto,*">
<Border Grid.RowSpan="2"
Background="{DynamicResource RegionBrush}"
CornerRadius="10"
Effect="{StaticResource EffectShadow4}" />
<Border Height="32"
Grid.Row="0"
CornerRadius="10,10,0,0"
Background="{DynamicResource TitleBrush}"
Classes="clip">
<Panel>
<TextBlock Foreground="White"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Text="{Binding ContentTitle}" />
</Panel>
</Border>
<Border Grid.Row="1"
ClipToBounds="True">
<ContentControl Margin="0,0,0,10"
Content="{Binding SubContent}" />
</Border>
</Grid>
</Border>
</Panel>
</UserControl>

View File

@ -0,0 +1,9 @@
namespace HandyControlDemo.UserControl;
public partial class MainContent : Avalonia.Controls.UserControl
{
public MainContent()
{
InitializeComponent();
}
}

View File

@ -0,0 +1,23 @@
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:HandyControlDemo.UserControl"
BorderThickness="0,1,0,0"
BorderBrush="{DynamicResource BorderBrush}"
Background="{StaticResource CloudDrawingBrush}"
x:Class="HandyControlDemo.UserControl.MainWindowContent">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="240"
MinWidth="240"
MaxWidth="400" />
<ColumnDefinition MinWidth="200" />
</Grid.ColumnDefinitions>
<controls:MainContent Grid.Column="1" />
<controls:LeftMainContent Grid.Column="0" />
<GridSplitter Margin="0,26,0,26"
Grid.Column="0"
HorizontalAlignment="Right"
Width="4"
Background="Transparent" />
</Grid>
</UserControl>

View File

@ -0,0 +1,9 @@
namespace HandyControlDemo.UserControl;
public partial class MainWindowContent : Avalonia.Controls.UserControl
{
public MainWindowContent()
{
InitializeComponent();
}
}

View File

@ -0,0 +1,28 @@
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignWidth="800"
d:DesignHeight="450"
x:Class="HandyControlDemo.UserControl.ButtonDemoCtl"
Background="{DynamicResource RegionBrush}">
<ScrollViewer>
<StackPanel Orientation="Horizontal"
VerticalAlignment="Top"
Spacing="4"
Margin="32">
<Button Content="default" />
<Button Content="primary"
Classes="primary" />
<Button Content="success"
Classes="success" />
<Button Content="info"
Classes="info" />
<Button Content="warning"
Classes="warning" />
<Button Content="danger"
Classes="danger" />
</StackPanel>
</ScrollViewer>
</UserControl>

View File

@ -0,0 +1,9 @@
namespace HandyControlDemo.UserControl;
public partial class ButtonDemoCtl : Avalonia.Controls.UserControl
{
public ButtonDemoCtl()
{
InitializeComponent();
}
}

View File

@ -0,0 +1,15 @@
using System.Collections.Generic;
using CommunityToolkit.Mvvm.ComponentModel;
namespace HandyControlDemo.ViewModel;
public class DemoViewModelBase<T> : ObservableObject
{
private IList<T> _dataList = [];
public IList<T> DataList
{
get => _dataList;
set => SetProperty(ref _dataList, value);
}
}

View File

@ -0,0 +1,98 @@
using System;
using System.Collections.ObjectModel;
using Avalonia.Threading;
using CommunityToolkit.Mvvm.Messaging;
using HandyControlDemo.Data;
using HandyControlDemo.Properties.Langs;
using HandyControlDemo.Service;
using HandyControlDemo.Tools;
namespace HandyControlDemo.ViewModel;
public class MainViewModel : DemoViewModelBase<DemoDataModel>
{
private readonly DataService _dataService;
private object? _contentTitle;
private object? _subContent;
public MainViewModel(DataService dataService)
{
_dataService = dataService;
UpdateMainContent();
UpdateLeftContent();
}
public DemoItemModel? DemoItemCurrent { get; private set; }
public DemoInfoModel? DemoInfoCurrent { get; set; }
public object? SubContent
{
get => _subContent;
set => SetProperty(ref _subContent, value);
}
public object? ContentTitle
{
get => _contentTitle;
set => SetProperty(ref _contentTitle, value);
}
public ObservableCollection<DemoInfoModel> DemoInfoCollection { get; set; } = [];
private void UpdateMainContent()
{
WeakReferenceMessenger.Default.Register<DemoItemModel, string>(this, MessageToken.SwitchDemo, (_, message) =>
{
SwitchDemo(message);
});
}
private void UpdateLeftContent()
{
//clear status
WeakReferenceMessenger.Default.Register<object, string>(this, MessageToken.ClearLeftSelected, (_, _) =>
{
DemoItemCurrent = null;
foreach (var item in DemoInfoCollection)
{
item.SelectedIndex = -1;
}
});
WeakReferenceMessenger.Default.Register<object, string>(this, MessageToken.LangUpdated, (_, _) =>
{
if (DemoItemCurrent == null)
{
return;
}
ContentTitle = Lang.ResourceManager.GetString(DemoItemCurrent.Name);
});
//load items
DemoInfoCollection = [];
foreach (var item in _dataService.GetDemoInfo())
{
Dispatcher.UIThread.InvokeAsync(() =>
{
DemoInfoCollection.Add(item);
}, DispatcherPriority.ApplicationIdle);
}
}
private void SwitchDemo(DemoItemModel item)
{
if (SubContent is IDisposable disposable)
{
disposable.Dispose();
}
DemoItemCurrent = item;
ContentTitle = Lang.ResourceManager.GetString(item.Name);
object? demoControl = AssemblyHelper.ResolveByKey(item.TargetCtlName) ?? AssemblyHelper.CreateInternalInstance($"UserControl.{item.TargetCtlName}");
SubContent = demoControl;
}
}

View File

@ -0,0 +1,26 @@
using System;
using HandyControlDemo.Service;
using Microsoft.Extensions.DependencyInjection;
namespace HandyControlDemo.ViewModel;
public class ViewModelLocator
{
private static readonly Lazy<ViewModelLocator> InstanceInternal = new(() => new ViewModelLocator(), isThreadSafe: true);
public static ViewModelLocator Instance => InstanceInternal.Value;
private readonly IServiceProvider _serviceProvider;
private ViewModelLocator()
{
var services = new ServiceCollection();
services.AddSingleton<DataService>();
services.AddTransient<MainViewModel>();
_serviceProvider = services.BuildServiceProvider();
}
public MainViewModel Main => _serviceProvider.GetService<MainViewModel>()!;
}

View File

@ -1,22 +0,0 @@
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:views="clr-namespace:HandyControlDemo.Views"
mc:Ignorable="d"
d:DesignWidth="800"
d:DesignHeight="450"
Background="{StaticResource CloudDrawingBrush}"
x:Class="HandyControlDemo.Views.MainWindowContent">
<Grid MinHeight="300" MinWidth="200" HorizontalAlignment="Center" VerticalAlignment="Center">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition/>
</Grid.RowDefinitions>
<Border Grid.RowSpan="2" CornerRadius="10" Background="{DynamicResource RegionBrush}" Effect="{StaticResource EffectShadow4}"/>
<Border Grid.Row="0" Height="32" CornerRadius="10 10 0 0" Background="{DynamicResource TitleBrush}">
<TextBlock Text="Button" Foreground="{DynamicResource TextIconBrush}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Border>
<views:ButtonDemoCtrl Grid.Row="1"/>
</Grid>
</UserControl>

View File

@ -1,11 +0,0 @@
using Avalonia.Controls;
namespace HandyControlDemo.Views;
public partial class MainWindowContent : UserControl
{
public MainWindowContent()
{
InitializeComponent();
}
}

View File

@ -1,17 +0,0 @@
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignWidth="800"
d:DesignHeight="450"
x:Class="HandyControlDemo.Views.ButtonDemoCtrl">
<StackPanel Orientation="Horizontal" VerticalAlignment="Top" Spacing="4" Margin="32">
<Button Content="default" />
<Button Content="primary" Classes="primary"/>
<Button Content="success" Classes="success"/>
<Button Content="info" Classes="info"/>
<Button Content="warning" Classes="warning"/>
<Button Content="danger" Classes="danger"/>
</StackPanel>
</UserControl>

View File

@ -1,11 +0,0 @@
using Avalonia.Controls;
namespace HandyControlDemo.Views;
public partial class ButtonDemoCtrl : UserControl
{
public ButtonDemoCtrl()
{
InitializeComponent();
}
}

View File

@ -0,0 +1,375 @@
// ReSharper disable InconsistentNaming
namespace HandyControl.Data;
public class ResourceToken
{
#region Basic
#region Geometry
public const string CalendarGeometry = nameof(CalendarGeometry);
public const string DeleteGeometry = nameof(DeleteGeometry);
public const string DeleteFillCircleGeometry = nameof(DeleteFillCircleGeometry);
public const string CloseGeometry = nameof(CloseGeometry);
public const string UpGeometry = nameof(UpGeometry);
public const string DownGeometry = nameof(DownGeometry);
public const string ClockGeometry = nameof(ClockGeometry);
public const string LeftGeometry = nameof(LeftGeometry);
public const string RightGeometry = nameof(RightGeometry);
public const string RotateLeftGeometry = nameof(RotateLeftGeometry);
public const string EnlargeGeometry = nameof(EnlargeGeometry);
public const string ReduceGeometry = nameof(ReduceGeometry);
public const string DownloadGeometry = nameof(DownloadGeometry);
public const string SaveGeometry = nameof(SaveGeometry);
public const string WindowsGeometry = nameof(WindowsGeometry);
public const string FullScreenGeometry = nameof(FullScreenGeometry);
public const string FullScreenReturnGeometry = nameof(FullScreenReturnGeometry);
public const string SearchGeometry = nameof(SearchGeometry);
public const string UpDownGeometry = nameof(UpDownGeometry);
public const string WindowMinGeometry = nameof(WindowMinGeometry);
public const string CheckedGeometry = nameof(CheckedGeometry);
public const string EyeOpenGeometry = nameof(EyeOpenGeometry);
public const string EyeCloseGeometry = nameof(EyeCloseGeometry);
public const string WindowRestoreGeometry = nameof(WindowRestoreGeometry);
public const string WindowMaxGeometry = nameof(WindowMaxGeometry);
public const string AudioGeometry = nameof(AudioGeometry);
public const string BubbleTailGeometry = nameof(BubbleTailGeometry);
public const string StarGeometry = nameof(StarGeometry);
public const string AddGeometry = nameof(AddGeometry);
public const string SubGeometry = nameof(SubGeometry);
public const string AllGeometry = nameof(AllGeometry);
public const string DragGeometry = nameof(DragGeometry);
public const string DropperGeometry = nameof(DropperGeometry);
public const string SuccessGeometry = nameof(SuccessGeometry);
public const string InfoGeometry = nameof(InfoGeometry);
public const string ErrorGeometry = nameof(ErrorGeometry);
public const string WarningGeometry = nameof(WarningGeometry);
public const string AskGeometry = nameof(AskGeometry);
public const string FatalGeometry = nameof(FatalGeometry);
#endregion
#region Brush
public const string PrimaryBrush = nameof(PrimaryBrush);
public const string DarkPrimaryBrush = nameof(DarkPrimaryBrush);
public const string SuccessBrush = nameof(SuccessBrush);
public const string DarkSuccessBrush = nameof(DarkSuccessBrush);
public const string InfoBrush = nameof(InfoBrush);
public const string DarkInfoBrush = nameof(DarkInfoBrush);
public const string DangerBrush = nameof(DangerBrush);
public const string DarkDangerBrush = nameof(DarkDangerBrush);
public const string WarningBrush = nameof(WarningBrush);
public const string DarkWarningBrush = nameof(DarkWarningBrush);
public const string AccentBrush = nameof(AccentBrush);
public const string DarkAccentBrush = nameof(DarkAccentBrush);
public const string PrimaryTextBrush = nameof(PrimaryTextBrush);
public const string SecondaryTextBrush = nameof(SecondaryTextBrush);
public const string ThirdlyTextBrush = nameof(ThirdlyTextBrush);
public const string ReverseTextBrush = nameof(ReverseTextBrush);
public const string TextIconBrush = nameof(TextIconBrush);
public const string BorderBrush = nameof(BorderBrush);
public const string SecondaryBorderBrush = nameof(SecondaryBorderBrush);
public const string BackgroundBrush = nameof(BackgroundBrush);
public const string RegionBrush = nameof(RegionBrush);
public const string SecondaryRegionBrush = nameof(SecondaryRegionBrush);
public const string ThirdlyRegionBrush = nameof(ThirdlyRegionBrush);
public const string TitleBrush = nameof(TitleBrush);
public const string DefaultBrush = nameof(DefaultBrush);
public const string DarkDefaultBrush = nameof(DarkDefaultBrush);
public const string DarkMaskBrush = nameof(DarkMaskBrush);
public const string DarkOpacityBrush = nameof(DarkOpacityBrush);
#endregion
#region Converter
public const string Boolean2BooleanReConverter = nameof(Boolean2BooleanReConverter);
public const string Boolean2VisibilityReConverter = nameof(Boolean2VisibilityReConverter);
public const string BooleanArr2VisibilityConverter = nameof(BooleanArr2VisibilityConverter);
public const string Long2FileSizeConverter = nameof(Long2FileSizeConverter);
public const string String2VisibilityConverter = nameof(String2VisibilityConverter);
public const string String2VisibilityReConverter = nameof(String2VisibilityReConverter);
public const string Boolean2VisibilityConverter = nameof(Boolean2VisibilityConverter);
public const string TreeViewItemMarginConverter = nameof(TreeViewItemMarginConverter);
public const string Color2HexStringConverter = nameof(Color2HexStringConverter);
public const string Object2BooleanConverter = nameof(Object2BooleanConverter);
public const string Boolean2StringConverter = nameof(Boolean2StringConverter);
public const string Int2StringConverter = nameof(Int2StringConverter);
public const string BorderClipConverter = nameof(BorderClipConverter);
public const string BorderCircularClipConverter = nameof(BorderCircularClipConverter);
public const string BorderCircularConverter = nameof(BorderCircularConverter);
public const string Object2VisibilityConverter = nameof(Object2VisibilityConverter);
public const string Number2PercentageConverter = nameof(Number2PercentageConverter);
public const string RectangleCircularConverter = nameof(RectangleCircularConverter);
public const string ThicknessSplitConverter = nameof(ThicknessSplitConverter);
public const string CornerRadiusSplitConverter = nameof(CornerRadiusSplitConverter);
public const string MenuScrollingVisibilityConverter = nameof(MenuScrollingVisibilityConverter);
public const string Double2GridLengthConverter = nameof(Double2GridLengthConverter);
public const string DoubleMinConverter = nameof(DoubleMinConverter);
#endregion
#region Effect
public const string EffectShadowColor = nameof(EffectShadowColor);
public const string EffectShadow1 = nameof(EffectShadow1);
public const string EffectShadow2 = nameof(EffectShadow2);
public const string EffectShadow3 = nameof(EffectShadow3);
public const string EffectShadow4 = nameof(EffectShadow4);
public const string EffectShadow5 = nameof(EffectShadow5);
#endregion
#region Color
public const string PrimaryColor = nameof(PrimaryColor);
public const string DarkPrimaryColor = nameof(DarkPrimaryColor);
public const string DangerColor = nameof(DangerColor);
public const string DarkDangerColor = nameof(DarkDangerColor);
public const string WarningColor = nameof(WarningColor);
public const string DarkWarningColor = nameof(DarkWarningColor);
public const string InfoColor = nameof(InfoColor);
public const string DarkInfoColor = nameof(DarkInfoColor);
public const string SuccessColor = nameof(SuccessColor);
public const string DarkSuccessColor = nameof(DarkSuccessColor);
public const string PrimaryTextColor = nameof(PrimaryTextColor);
public const string SecondaryTextColor = nameof(SecondaryTextColor);
public const string ThirdlyTextColor = nameof(ThirdlyTextColor);
public const string ReverseTextColor = nameof(ReverseTextColor);
public const string TextIconColor = nameof(TextIconColor);
public const string BorderColor = nameof(BorderColor);
public const string SecondaryBorderColor = nameof(SecondaryBorderColor);
public const string BackgroundColor = nameof(BackgroundColor);
public const string RegionColor = nameof(RegionColor);
public const string SecondaryRegionColor = nameof(SecondaryRegionColor);
public const string ThirdlyRegionColor = nameof(ThirdlyRegionColor);
public const string TitleColor = nameof(TitleColor);
public const string SecondaryTitleColor = nameof(SecondaryTitleColor);
public const string DefaultColor = nameof(DefaultColor);
public const string DarkDefaultColor = nameof(DarkDefaultColor);
public const string AccentColor = nameof(AccentColor);
public const string DarkAccentColor = nameof(DarkAccentColor);
public const string DarkMaskColor = nameof(DarkMaskColor);
public const string DarkOpacityColor = nameof(DarkOpacityColor);
#endregion
#region Behavior
public const string BehaviorXY200 = nameof(BehaviorXY200);
public const string BehaviorX200 = nameof(BehaviorX200);
public const string BehaviorY200 = nameof(BehaviorY200);
public const string BehaviorXY400 = nameof(BehaviorXY400);
public const string BehaviorX400 = nameof(BehaviorX400);
public const string BehaviorY400 = nameof(BehaviorY400);
#endregion
#endregion
#region Internal
internal const string BlurGradientValue = nameof(BlurGradientValue);
internal const string ButtonCustom = nameof(ButtonCustom);
internal const string PaginationButtonStyle = nameof(PaginationButtonStyle);
internal const string WindowWin10 = nameof(WindowWin10);
internal const string WindowBlur = nameof(WindowBlur);
internal const string WindowGlow = nameof(WindowGlow);
internal const string Window4ScreenshotStyle = nameof(Window4ScreenshotStyle);
internal const string AddTagButtonStyle = nameof(AddTagButtonStyle);
internal const string RadioGroupItemDefault = nameof(RadioGroupItemDefault);
internal const string RadioGroupItemSingle = nameof(RadioGroupItemSingle);
internal const string RadioGroupItemHorizontalFirst = nameof(RadioGroupItemHorizontalFirst);
internal const string RadioGroupItemHorizontalLast = nameof(RadioGroupItemHorizontalLast);
internal const string RadioGroupItemVerticalFirst = nameof(RadioGroupItemVerticalFirst);
internal const string RadioGroupItemVerticalLast = nameof(RadioGroupItemVerticalLast);
internal const string ButtonGroupItemDefault = nameof(ButtonGroupItemDefault);
internal const string ButtonGroupItemSingle = nameof(ButtonGroupItemSingle);
internal const string ButtonGroupItemHorizontalFirst = nameof(ButtonGroupItemHorizontalFirst);
internal const string ButtonGroupItemHorizontalLast = nameof(ButtonGroupItemHorizontalLast);
internal const string ButtonGroupItemVerticalFirst = nameof(ButtonGroupItemVerticalFirst);
internal const string ButtonGroupItemVerticalLast = nameof(ButtonGroupItemVerticalLast);
internal const string ToggleButtonGroupItemDefault = nameof(ToggleButtonGroupItemDefault);
internal const string ToggleButtonGroupItemSingle = nameof(ToggleButtonGroupItemSingle);
internal const string ToggleButtonGroupItemHorizontalFirst = nameof(ToggleButtonGroupItemHorizontalFirst);
internal const string ToggleButtonGroupItemHorizontalLast = nameof(ToggleButtonGroupItemHorizontalLast);
internal const string ToggleButtonGroupItemVerticalFirst = nameof(ToggleButtonGroupItemVerticalFirst);
internal const string ToggleButtonGroupItemVerticalLast = nameof(ToggleButtonGroupItemVerticalLast);
internal const string TabItemCapsuleDefault = nameof(TabItemCapsuleDefault);
internal const string TabItemCapsuleSingle = nameof(TabItemCapsuleSingle);
internal const string TabItemCapsuleHorizontalFirst = nameof(TabItemCapsuleHorizontalFirst);
internal const string TabItemCapsuleHorizontalLast = nameof(TabItemCapsuleHorizontalLast);
internal const string TabItemCapsuleVerticalFirst = nameof(TabItemCapsuleVerticalFirst);
internal const string TabItemCapsuleVerticalLast = nameof(TabItemCapsuleVerticalLast);
internal const string ComboBoxItemCapsuleDefault = nameof(ComboBoxItemCapsuleDefault);
internal const string ComboBoxItemCapsuleSingle = nameof(ComboBoxItemCapsuleSingle);
internal const string ComboBoxItemCapsuleHorizontalFirst = nameof(ComboBoxItemCapsuleHorizontalFirst);
internal const string ComboBoxItemCapsuleHorizontalLast = nameof(ComboBoxItemCapsuleHorizontalLast);
internal const string ComboBoxItemCapsuleVerticalFirst = nameof(ComboBoxItemCapsuleVerticalFirst);
internal const string ComboBoxItemCapsuleVerticalLast = nameof(ComboBoxItemCapsuleVerticalLast);
#endregion
}

View File

@ -10,4 +10,23 @@
<ItemGroup>
<PackageReference Include="Avalonia" Version="$(AvaloniaVersion)" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Langs\Lang.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Lang.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Langs\Lang.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Lang.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
</Project>

View File

@ -1,4 +1,15 @@
using Avalonia.Metadata;
[assembly: XmlnsDefinition("https://handyorg.github.io/handycontrol", "HandyControl.Controls")]
[assembly: XmlnsDefinition("https://handyorg.github.io/handycontrol", "HandyControl.Tools")]
[assembly: XmlnsDefinition("https://handyorg.github.io/handycontrol", "HandyControl.Tools.Converter")]
[assembly: XmlnsDefinition("https://handyorg.github.io/handycontrol", "HandyControl.Tools.Extension")]
[assembly: XmlnsDefinition("https://handyorg.github.io/handycontrol", "HandyControl.Interactivity")]
[assembly: XmlnsDefinition("https://handyorg.github.io/handycontrol", "HandyControl.Expression.Shapes")]
[assembly: XmlnsDefinition("https://handyorg.github.io/handycontrol", "HandyControl.Expression.Media")]
[assembly: XmlnsDefinition("https://handyorg.github.io/handycontrol", "HandyControl.Media.Animation")]
[assembly: XmlnsDefinition("https://handyorg.github.io/handycontrol", "HandyControl.Media.Effects")]
[assembly: XmlnsDefinition("https://handyorg.github.io/handycontrol", "HandyControl.Data")]
[assembly: XmlnsDefinition("https://handyorg.github.io/handycontrol", "HandyControl.Properties.Langs")]
[assembly: XmlnsDefinition("https://handyorg.github.io/handycontrol", "HandyControl.Themes")]
[assembly: XmlnsPrefix("https://handyorg.github.io/handycontrol", "hc")]

View File

@ -0,0 +1,423 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace HandyControl.Properties.Langs {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Lang {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Lang() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HandyControl.Properties.Langs.Lang", typeof(Lang).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to 全部.
/// </summary>
public static string All {
get {
return ResourceManager.GetString("All", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 上午.
/// </summary>
public static string Am {
get {
return ResourceManager.GetString("Am", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 取消.
/// </summary>
public static string Cancel {
get {
return ResourceManager.GetString("Cancel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 清空.
/// </summary>
public static string Clear {
get {
return ResourceManager.GetString("Clear", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 关闭.
/// </summary>
public static string Close {
get {
return ResourceManager.GetString("Close", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 关闭所有.
/// </summary>
public static string CloseAll {
get {
return ResourceManager.GetString("CloseAll", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 关闭其他.
/// </summary>
public static string CloseOther {
get {
return ResourceManager.GetString("CloseOther", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 确定.
/// </summary>
public static string Confirm {
get {
return ResourceManager.GetString("Confirm", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 错误的图片路径.
/// </summary>
public static string ErrorImgPath {
get {
return ResourceManager.GetString("ErrorImgPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 非法的图片尺寸.
/// </summary>
public static string ErrorImgSize {
get {
return ResourceManager.GetString("ErrorImgSize", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 查找.
/// </summary>
public static string Find {
get {
return ResourceManager.GetString("Find", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 格式错误.
/// </summary>
public static string FormatError {
get {
return ResourceManager.GetString("FormatError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 间隔10分钟.
/// </summary>
public static string Interval10m {
get {
return ResourceManager.GetString("Interval10m", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 间隔1小时.
/// </summary>
public static string Interval1h {
get {
return ResourceManager.GetString("Interval1h", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 间隔1分钟.
/// </summary>
public static string Interval1m {
get {
return ResourceManager.GetString("Interval1m", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 间隔2小时.
/// </summary>
public static string Interval2h {
get {
return ResourceManager.GetString("Interval2h", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 间隔30分钟.
/// </summary>
public static string Interval30m {
get {
return ResourceManager.GetString("Interval30m", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 间隔30秒.
/// </summary>
public static string Interval30s {
get {
return ResourceManager.GetString("Interval30s", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 间隔5分钟.
/// </summary>
public static string Interval5m {
get {
return ResourceManager.GetString("Interval5m", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 不能为空.
/// </summary>
public static string IsNecessary {
get {
return ResourceManager.GetString("IsNecessary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 跳转.
/// </summary>
public static string Jump {
get {
return ResourceManager.GetString("Jump", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 查找类似 {0} 的本地化字符串。.
/// </summary>
public static string LangComment {
get {
return ResourceManager.GetString("LangComment", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 杂项.
/// </summary>
public static string Miscellaneous {
get {
return ResourceManager.GetString("Miscellaneous", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 下一页.
/// </summary>
public static string NextPage {
get {
return ResourceManager.GetString("NextPage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 否.
/// </summary>
public static string No {
get {
return ResourceManager.GetString("No", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 暂无数据.
/// </summary>
public static string NoData {
get {
return ResourceManager.GetString("NoData", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 不在范围内.
/// </summary>
public static string OutOfRange {
get {
return ResourceManager.GetString("OutOfRange", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 页面模式.
/// </summary>
public static string PageMode {
get {
return ResourceManager.GetString("PageMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 下午.
/// </summary>
public static string Pm {
get {
return ResourceManager.GetString("Pm", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PNG图片.
/// </summary>
public static string PngImg {
get {
return ResourceManager.GetString("PngImg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 上一页.
/// </summary>
public static string PreviousPage {
get {
return ResourceManager.GetString("PreviousPage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 滚动模式.
/// </summary>
public static string ScrollMode {
get {
return ResourceManager.GetString("ScrollMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 提示.
/// </summary>
public static string Tip {
get {
return ResourceManager.GetString("Tip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 过大.
/// </summary>
public static string TooLarge {
get {
return ResourceManager.GetString("TooLarge", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 双页模式.
/// </summary>
public static string TwoPageMode {
get {
return ResourceManager.GetString("TwoPageMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 未知.
/// </summary>
public static string Unknown {
get {
return ResourceManager.GetString("Unknown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 未知大小.
/// </summary>
public static string UnknownSize {
get {
return ResourceManager.GetString("UnknownSize", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 是.
/// </summary>
public static string Yes {
get {
return ResourceManager.GetString("Yes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 放大.
/// </summary>
public static string ZoomIn {
get {
return ResourceManager.GetString("ZoomIn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 缩小.
/// </summary>
public static string ZoomOut {
get {
return ResourceManager.GetString("ZoomOut", resourceCulture);
}
}
}
}

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Confirm" xml:space="preserve">
<value>Confirmar</value>
</data>
<data name="Cancel" xml:space="preserve">
<value>Cancel·lar</value>
</data>
<data name="PngImg" xml:space="preserve">
<value>Imatge PNG</value>
</data>
<data name="ErrorImgPath" xml:space="preserve">
<value>Ruta d'imatge incorrecte</value>
</data>
<data name="ErrorImgSize" xml:space="preserve">
<value>Mida de la imatge incorrecta</value>
</data>
<data name="UnknownSize" xml:space="preserve">
<value>Mida desconeguda</value>
</data>
<data name="TooLarge" xml:space="preserve">
<value>Massa gran</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>Desconegut</value>
</data>
<data name="Interval30s" xml:space="preserve">
<value>Interval de 30 segons</value>
</data>
<data name="Interval1m" xml:space="preserve">
<value>Interval de 1 minut</value>
</data>
<data name="Interval5m" xml:space="preserve">
<value>Interval de 5 minuts</value>
</data>
<data name="Interval10m" xml:space="preserve">
<value>Interval de 10 minuts</value>
</data>
<data name="Interval30m" xml:space="preserve">
<value>Interval de 30 minuts</value>
</data>
<data name="Interval1h" xml:space="preserve">
<value>Interval de 1 hora</value>
</data>
<data name="Interval2h" xml:space="preserve">
<value>Interval de 2 hores</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Esborrar</value>
</data>
<data name="Close" xml:space="preserve">
<value>Tancar</value>
</data>
<data name="CloseAll" xml:space="preserve">
<value>Tancar tots</value>
</data>
<data name="CloseOther" xml:space="preserve">
<value>Tancar les altres</value>
</data>
<data name="Am" xml:space="preserve">
<value>Am</value>
</data>
<data name="Pm" xml:space="preserve">
<value>Pm</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Preguntar</value>
</data>
<data name="IsNecessary" xml:space="preserve">
<value>No pot ser buit</value>
</data>
<data name="OutOfRange" xml:space="preserve">
<value>Fora de rang</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>error de format</value>
</data>
<data name="Yes" xml:space="preserve">
<value>Si</value>
</data>
<data name="No" xml:space="preserve">
<value>No</value>
</data>
<data name="ZoomIn" xml:space="preserve">
<value>Més zoom</value>
</data>
<data name="ZoomOut" xml:space="preserve">
<value>Menys zoom</value>
</data>
<data name="PreviousPage" xml:space="preserve">
<value>Pàgina anterior</value>
</data>
<data name="NextPage" xml:space="preserve">
<value>Pàgina següent</value>
</data>
<data name="PageMode" xml:space="preserve">
<value>Mode de pàgina</value>
</data>
<data name="TwoPageMode" xml:space="preserve">
<value>Mode de dues pàgines</value>
</data>
<data name="ScrollMode" xml:space="preserve">
<value>Mode de desplaçament</value>
</data>
<data name="Find" xml:space="preserve">
<value>Buscar</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Cerqueu una cadena localitzada similar a "{0}".</value>
</data>
<data name="Jump" xml:space="preserve">
<value>Saltar</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>General</value>
</data>
<data name="All" xml:space="preserve">
<value>Tots</value>
</data>
<data name="NoData" xml:space="preserve">
<value>No Data</value>
</data>
</root>

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="All" xml:space="preserve">
<value>Vše</value>
</data>
<data name="Am" xml:space="preserve">
<value>dop.</value>
</data>
<data name="Cancel" xml:space="preserve">
<value>Zrušit</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Smazat</value>
</data>
<data name="Close" xml:space="preserve">
<value>Zavřít</value>
</data>
<data name="CloseAll" xml:space="preserve">
<value>Zavřít vše</value>
</data>
<data name="CloseOther" xml:space="preserve">
<value>Zavřít ostatní</value>
</data>
<data name="Confirm" xml:space="preserve">
<value>Potvrdit</value>
</data>
<data name="ErrorImgPath" xml:space="preserve">
<value>Nesprávná cesta k obrázku</value>
</data>
<data name="ErrorImgSize" xml:space="preserve">
<value>Nesprávná velikost obrázku</value>
</data>
<data name="Find" xml:space="preserve">
<value>Hledat</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>nesprávný formát</value>
</data>
<data name="Interval10m" xml:space="preserve">
<value>desetiminutový interval</value>
</data>
<data name="Interval1h" xml:space="preserve">
<value>hodinový interval</value>
</data>
<data name="Interval1m" xml:space="preserve">
<value>minutový interval</value>
</data>
<data name="Interval2h" xml:space="preserve">
<value>dvouhodinový interval</value>
</data>
<data name="Interval30m" xml:space="preserve">
<value>půlhodinový interval</value>
</data>
<data name="Interval30s" xml:space="preserve">
<value>půlminutový interval</value>
</data>
<data name="Interval5m" xml:space="preserve">
<value>pětiminutový interval</value>
</data>
<data name="IsNecessary" xml:space="preserve">
<value>nesmí být prázdný</value>
</data>
<data name="Jump" xml:space="preserve">
<value>Skočit</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Hledám řetězec podobný „{0}“.</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>Různé</value>
</data>
<data name="NextPage" xml:space="preserve">
<value>Další stránka</value>
</data>
<data name="No" xml:space="preserve">
<value>Ne</value>
</data>
<data name="NoData" xml:space="preserve">
<value>Žádná data</value>
</data>
<data name="OutOfRange" xml:space="preserve">
<value>mimo rozsah</value>
</data>
<data name="PageMode" xml:space="preserve">
<value>Režim stránky</value>
</data>
<data name="Pm" xml:space="preserve">
<value>odp.</value>
</data>
<data name="PngImg" xml:space="preserve">
<value>obrázek PNG</value>
</data>
<data name="PreviousPage" xml:space="preserve">
<value>Předchozí stránka</value>
</data>
<data name="ScrollMode" xml:space="preserve">
<value>Režim rolování</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Nápověda</value>
</data>
<data name="TooLarge" xml:space="preserve">
<value>Příliš velké</value>
</data>
<data name="TwoPageMode" xml:space="preserve">
<value>Dvoustránkový režim</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>Neznámý</value>
</data>
<data name="UnknownSize" xml:space="preserve">
<value>Neznámá velikost</value>
</data>
<data name="Yes" xml:space="preserve">
<value>Ano</value>
</data>
<data name="ZoomIn" xml:space="preserve">
<value>Oddálit</value>
</data>
<data name="ZoomOut" xml:space="preserve">
<value>Přiblížit</value>
</data>
</root>

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Confirm" xml:space="preserve">
<value>Confirm</value>
</data>
<data name="Cancel" xml:space="preserve">
<value>Cancel</value>
</data>
<data name="PngImg" xml:space="preserve">
<value>PNG image</value>
</data>
<data name="ErrorImgPath" xml:space="preserve">
<value>Wrong picture path</value>
</data>
<data name="ErrorImgSize" xml:space="preserve">
<value>Wrong picture size</value>
</data>
<data name="UnknownSize" xml:space="preserve">
<value>Unknown size</value>
</data>
<data name="TooLarge" xml:space="preserve">
<value>Too large</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>Unknown</value>
</data>
<data name="Interval30s" xml:space="preserve">
<value>30 seconds interval</value>
</data>
<data name="Interval1m" xml:space="preserve">
<value>1 minute interval</value>
</data>
<data name="Interval5m" xml:space="preserve">
<value>5 minutes interval</value>
</data>
<data name="Interval10m" xml:space="preserve">
<value>10 minutes interval</value>
</data>
<data name="Interval30m" xml:space="preserve">
<value>30 minutes interval</value>
</data>
<data name="Interval1h" xml:space="preserve">
<value>1 hour interval</value>
</data>
<data name="Interval2h" xml:space="preserve">
<value>2 hour interval</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Clear</value>
</data>
<data name="Close" xml:space="preserve">
<value>Close</value>
</data>
<data name="CloseAll" xml:space="preserve">
<value>Close all</value>
</data>
<data name="CloseOther" xml:space="preserve">
<value>Close other</value>
</data>
<data name="Am" xml:space="preserve">
<value>Am</value>
</data>
<data name="Pm" xml:space="preserve">
<value>Pm</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Prompt</value>
</data>
<data name="IsNecessary" xml:space="preserve">
<value>cannot be empty</value>
</data>
<data name="OutOfRange" xml:space="preserve">
<value>out of range</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>format error</value>
</data>
<data name="Yes" xml:space="preserve">
<value>Yes</value>
</data>
<data name="No" xml:space="preserve">
<value>No</value>
</data>
<data name="ZoomIn" xml:space="preserve">
<value>Zoom in</value>
</data>
<data name="ZoomOut" xml:space="preserve">
<value>Zoom out</value>
</data>
<data name="PreviousPage" xml:space="preserve">
<value>Previous page</value>
</data>
<data name="NextPage" xml:space="preserve">
<value>Next page</value>
</data>
<data name="PageMode" xml:space="preserve">
<value>Page mode</value>
</data>
<data name="TwoPageMode" xml:space="preserve">
<value>Two page mode</value>
</data>
<data name="ScrollMode" xml:space="preserve">
<value>Scroll mode</value>
</data>
<data name="Find" xml:space="preserve">
<value>Find</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="Jump" xml:space="preserve">
<value>Jump</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>Miscellaneous</value>
</data>
<data name="All" xml:space="preserve">
<value>All</value>
</data>
<data name="NoData" xml:space="preserve">
<value>No Data</value>
</data>
</root>

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Confirm" xml:space="preserve">
<value>Confirmar</value>
</data>
<data name="Cancel" xml:space="preserve">
<value>Cancelar</value>
</data>
<data name="PngImg" xml:space="preserve">
<value>Imagen PNG</value>
</data>
<data name="ErrorImgPath" xml:space="preserve">
<value>Ruta de imagen incorrecta</value>
</data>
<data name="ErrorImgSize" xml:space="preserve">
<value>Tamaño de imagen incorrecto</value>
</data>
<data name="UnknownSize" xml:space="preserve">
<value>Tamaño desconocido</value>
</data>
<data name="TooLarge" xml:space="preserve">
<value>Muy grande</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>Desconocido</value>
</data>
<data name="Interval30s" xml:space="preserve">
<value>Intervalo de 30 segundos</value>
</data>
<data name="Interval1m" xml:space="preserve">
<value>Intervalo de 1 minuto</value>
</data>
<data name="Interval5m" xml:space="preserve">
<value>Intervalo de 5 minutos</value>
</data>
<data name="Interval10m" xml:space="preserve">
<value>Intervalo de 10 minutos</value>
</data>
<data name="Interval30m" xml:space="preserve">
<value>Intervalo de 30 minutos</value>
</data>
<data name="Interval1h" xml:space="preserve">
<value>Intervalo de 1 hora</value>
</data>
<data name="Interval2h" xml:space="preserve">
<value>Intervalo de 2 horas</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Borrar</value>
</data>
<data name="Close" xml:space="preserve">
<value>Cerrar</value>
</data>
<data name="CloseAll" xml:space="preserve">
<value>Cerrar todo</value>
</data>
<data name="CloseOther" xml:space="preserve">
<value>Cerrar las demás</value>
</data>
<data name="Am" xml:space="preserve">
<value>AM</value>
</data>
<data name="Pm" xml:space="preserve">
<value>PM</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Prompt</value>
</data>
<data name="IsNecessary" xml:space="preserve">
<value>El campo es requerido</value>
</data>
<data name="OutOfRange" xml:space="preserve">
<value>Fuera de rango</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>Error de formato</value>
</data>
<data name="Yes" xml:space="preserve">
<value>Sí</value>
</data>
<data name="No" xml:space="preserve">
<value>No</value>
</data>
<data name="ZoomIn" xml:space="preserve">
<value>Ampliar</value>
</data>
<data name="ZoomOut" xml:space="preserve">
<value>Reducir</value>
</data>
<data name="PreviousPage" xml:space="preserve">
<value>Página anterior</value>
</data>
<data name="NextPage" xml:space="preserve">
<value>Página siguiente</value>
</data>
<data name="PageMode" xml:space="preserve">
<value>Vista de una página</value>
</data>
<data name="TwoPageMode" xml:space="preserve">
<value>Vista de dos páginas</value>
</data>
<data name="ScrollMode" xml:space="preserve">
<value>Vista de ajuste de página</value>
</data>
<data name="Find" xml:space="preserve">
<value>Buscar</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="Jump" xml:space="preserve">
<value>Ir</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>Misceláneas</value>
</data>
<data name="All" xml:space="preserve">
<value>Todo</value>
</data>
<data name="NoData" xml:space="preserve">
<value>Nada para mostrar</value>
</data>
</root>

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Confirm" xml:space="preserve">
<value>تایید</value>
</data>
<data name="Cancel" xml:space="preserve">
<value>انصراف</value>
</data>
<data name="PngImg" xml:space="preserve">
<value>تصویر PNG</value>
</data>
<data name="ErrorImgPath" xml:space="preserve">
<value>مسیر عکس اشتباه است</value>
</data>
<data name="ErrorImgSize" xml:space="preserve">
<value>اندازه تصویر اشتباه است</value>
</data>
<data name="UnknownSize" xml:space="preserve">
<value>اندازه ناشناخته</value>
</data>
<data name="TooLarge" xml:space="preserve">
<value>خیلی بزرگ</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>ناشناس</value>
</data>
<data name="Interval30s" xml:space="preserve">
<value>فاصله 30 ثانیه ای</value>
</data>
<data name="Interval1m" xml:space="preserve">
<value>فاصله 1 دقیقه ای</value>
</data>
<data name="Interval5m" xml:space="preserve">
<value>فاصله 5 دقیقه ای</value>
</data>
<data name="Interval10m" xml:space="preserve">
<value>فاصله 10 دقیقه ای</value>
</data>
<data name="Interval30m" xml:space="preserve">
<value>فاصله 30 دقیقه ای</value>
</data>
<data name="Interval1h" xml:space="preserve">
<value>فاصله 1 ساعته</value>
</data>
<data name="Interval2h" xml:space="preserve">
<value>فاصله 2 ساعته</value>
</data>
<data name="Clear" xml:space="preserve">
<value>پاک کردن</value>
</data>
<data name="Close" xml:space="preserve">
<value>بستن</value>
</data>
<data name="CloseAll" xml:space="preserve">
<value>بستن همه</value>
</data>
<data name="CloseOther" xml:space="preserve">
<value>بستن بقیه</value>
</data>
<data name="Am" xml:space="preserve">
<value>صبح</value>
</data>
<data name="Pm" xml:space="preserve">
<value>عصر</value>
</data>
<data name="Tip" xml:space="preserve">
<value>بی درنک</value>
</data>
<data name="IsNecessary" xml:space="preserve">
<value>نمی تواند خالی باشد</value>
</data>
<data name="OutOfRange" xml:space="preserve">
<value>خارج از محدوده</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>فرمت ورودی اشتباه است</value>
</data>
<data name="Yes" xml:space="preserve">
<value>بله</value>
</data>
<data name="No" xml:space="preserve">
<value>خیر</value>
</data>
<data name="ZoomIn" xml:space="preserve">
<value>بزرگنمایی</value>
</data>
<data name="ZoomOut" xml:space="preserve">
<value>کوچکنمایی</value>
</data>
<data name="PreviousPage" xml:space="preserve">
<value>صفحه قبلی</value>
</data>
<data name="NextPage" xml:space="preserve">
<value>صفحه بعدی</value>
</data>
<data name="PageMode" xml:space="preserve">
<value>حالت صفحه</value>
</data>
<data name="TwoPageMode" xml:space="preserve">
<value>حالت دو صفحه ای</value>
</data>
<data name="ScrollMode" xml:space="preserve">
<value>حالت اسکرول</value>
</data>
<data name="Find" xml:space="preserve">
<value>پیدا کردن</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="Jump" xml:space="preserve">
<value>Jump</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>Miscellaneous</value>
</data>
<data name="All" xml:space="preserve">
<value>All</value>
</data>
<data name="NoData" xml:space="preserve">
<value>No Data</value>
</data>
</root>

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Confirm" xml:space="preserve">
<value>Confirmer</value>
</data>
<data name="Cancel" xml:space="preserve">
<value>Annuler</value>
</data>
<data name="PngImg" xml:space="preserve">
<value>Image PNG</value>
</data>
<data name="ErrorImgPath" xml:space="preserve">
<value>Chemin d'image incorrect</value>
</data>
<data name="ErrorImgSize" xml:space="preserve">
<value>Taille d'image incorrect</value>
</data>
<data name="UnknownSize" xml:space="preserve">
<value>Taille inconnue</value>
</data>
<data name="TooLarge" xml:space="preserve">
<value>Trop large</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>Inconnu</value>
</data>
<data name="Interval30s" xml:space="preserve">
<value>Intervale de 30 secondes</value>
</data>
<data name="Interval1m" xml:space="preserve">
<value>Intervale de de 1 minute</value>
</data>
<data name="Interval5m" xml:space="preserve">
<value>Intervale de 5 minutes</value>
</data>
<data name="Interval10m" xml:space="preserve">
<value>Intervale de 10 minutes</value>
</data>
<data name="Interval30m" xml:space="preserve">
<value>Intervale de 30 minutes</value>
</data>
<data name="Interval1h" xml:space="preserve">
<value>Intervale de 1 heure</value>
</data>
<data name="Interval2h" xml:space="preserve">
<value>Intervale de 2 heures</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Effacer</value>
</data>
<data name="Close" xml:space="preserve">
<value>Fermer</value>
</data>
<data name="CloseAll" xml:space="preserve">
<value>Fermer tout</value>
</data>
<data name="CloseOther" xml:space="preserve">
<value>Fermer les autres</value>
</data>
<data name="Am" xml:space="preserve">
<value>Am</value>
</data>
<data name="Pm" xml:space="preserve">
<value>Pm</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Prompt</value>
</data>
<data name="IsNecessary" xml:space="preserve">
<value>Ne peut pas être vide</value>
</data>
<data name="OutOfRange" xml:space="preserve">
<value>En dehors des limites</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>Erreur de format</value>
</data>
<data name="Yes" xml:space="preserve">
<value>Oui</value>
</data>
<data name="No" xml:space="preserve">
<value>Non</value>
</data>
<data name="ZoomIn" xml:space="preserve">
<value>Zoom in</value>
</data>
<data name="ZoomOut" xml:space="preserve">
<value>Zoom out</value>
</data>
<data name="PreviousPage" xml:space="preserve">
<value>Previous page</value>
</data>
<data name="NextPage" xml:space="preserve">
<value>Next page</value>
</data>
<data name="PageMode" xml:space="preserve">
<value>Page mode</value>
</data>
<data name="TwoPageMode" xml:space="preserve">
<value>Two page mode</value>
</data>
<data name="ScrollMode" xml:space="preserve">
<value>Scroll mode</value>
</data>
<data name="Find" xml:space="preserve">
<value>Find</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="Jump" xml:space="preserve">
<value>Jump</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>Miscellaneous</value>
</data>
<data name="All" xml:space="preserve">
<value>All</value>
</data>
<data name="NoData" xml:space="preserve">
<value>No Data</value>
</data>
</root>

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Confirm" xml:space="preserve">
<value>確定</value>
</data>
<data name="Cancel" xml:space="preserve">
<value>キャンセル</value>
</data>
<data name="PngImg" xml:space="preserve">
<value>PNG画像</value>
</data>
<data name="ErrorImgPath" xml:space="preserve">
<value>画像の場所が正しくありません</value>
</data>
<data name="ErrorImgSize" xml:space="preserve">
<value>画像のサイズが正しくありません</value>
</data>
<data name="UnknownSize" xml:space="preserve">
<value>不明なサイズ</value>
</data>
<data name="TooLarge" xml:space="preserve">
<value>大きすぎます</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>不明</value>
</data>
<data name="Interval30s" xml:space="preserve">
<value>30秒間隔</value>
</data>
<data name="Interval1m" xml:space="preserve">
<value>1分間隔</value>
</data>
<data name="Interval5m" xml:space="preserve">
<value>5分間隔</value>
</data>
<data name="Interval10m" xml:space="preserve">
<value>10分間隔</value>
</data>
<data name="Interval30m" xml:space="preserve">
<value>30分間隔</value>
</data>
<data name="Interval1h" xml:space="preserve">
<value>1時間間隔</value>
</data>
<data name="Interval2h" xml:space="preserve">
<value>2時間間隔</value>
</data>
<data name="Clear" xml:space="preserve">
<value>クリア</value>
</data>
<data name="Close" xml:space="preserve">
<value>閉じる</value>
</data>
<data name="CloseAll" xml:space="preserve">
<value>全て閉じる</value>
</data>
<data name="CloseOther" xml:space="preserve">
<value>他を閉じる</value>
</data>
<data name="Am" xml:space="preserve">
<value>午前</value>
</data>
<data name="Pm" xml:space="preserve">
<value>午後</value>
</data>
<data name="Tip" xml:space="preserve">
<value>プロンプト</value>
</data>
<data name="IsNecessary" xml:space="preserve">
<value>空欄にできません</value>
</data>
<data name="OutOfRange" xml:space="preserve">
<value>範囲外</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>書式エラー</value>
</data>
<data name="Yes" xml:space="preserve">
<value>はい</value>
</data>
<data name="No" xml:space="preserve">
<value>いいえ</value>
</data>
<data name="ZoomIn" xml:space="preserve">
<value>ズームイン</value>
</data>
<data name="ZoomOut" xml:space="preserve">
<value>ズームアウト</value>
</data>
<data name="PreviousPage" xml:space="preserve">
<value>前へ</value>
</data>
<data name="NextPage" xml:space="preserve">
<value>次へ</value>
</data>
<data name="PageMode" xml:space="preserve">
<value>Page mode</value>
</data>
<data name="TwoPageMode" xml:space="preserve">
<value>見開きモード</value>
</data>
<data name="ScrollMode" xml:space="preserve">
<value>スクロールモード</value>
</data>
<data name="Find" xml:space="preserve">
<value>検索</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="Jump" xml:space="preserve">
<value>移動</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>Miscellaneous</value>
</data>
<data name="All" xml:space="preserve">
<value>All</value>
</data>
<data name="NoData" xml:space="preserve">
<value>データなし</value>
</data>
</root>

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Am" xml:space="preserve">
<value>오전</value>
</data>
<data name="Cancel" xml:space="preserve">
<value>취소</value>
</data>
<data name="Clear" xml:space="preserve">
<value>삭제</value>
</data>
<data name="Close" xml:space="preserve">
<value>닫기</value>
</data>
<data name="CloseAll" xml:space="preserve">
<value>모두 닫기</value>
</data>
<data name="CloseOther" xml:space="preserve">
<value>다른 창 모두 닫기</value>
</data>
<data name="Confirm" xml:space="preserve">
<value>확인</value>
</data>
<data name="ErrorImgPath" xml:space="preserve">
<value>잘못된 사진 경로</value>
</data>
<data name="ErrorImgSize" xml:space="preserve">
<value>잘못된 사진 크기</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>형식 오류</value>
</data>
<data name="Interval10m" xml:space="preserve">
<value>10분 간격</value>
</data>
<data name="Interval1h" xml:space="preserve">
<value>1시간 간격</value>
</data>
<data name="Interval1m" xml:space="preserve">
<value>1분 간격</value>
</data>
<data name="Interval2h" xml:space="preserve">
<value>2시간 간격</value>
</data>
<data name="Interval30m" xml:space="preserve">
<value>30분 간격</value>
</data>
<data name="Interval30s" xml:space="preserve">
<value>30초 간격</value>
</data>
<data name="Interval5m" xml:space="preserve">
<value>5분 간격</value>
</data>
<data name="IsNecessary" xml:space="preserve">
<value>이 칸은 비워둘 수 없습니다</value>
</data>
<data name="NextPage" xml:space="preserve">
<value>Next page</value>
</data>
<data name="No" xml:space="preserve">
<value>아니요</value>
</data>
<data name="OutOfRange" xml:space="preserve">
<value>범위를 벗어났습니다</value>
</data>
<data name="Pm" xml:space="preserve">
<value>오후</value>
</data>
<data name="PngImg" xml:space="preserve">
<value>PNG 사진</value>
</data>
<data name="PreviousPage" xml:space="preserve">
<value>Previous page</value>
</data>
<data name="Tip" xml:space="preserve">
<value>출력</value>
</data>
<data name="TooLarge" xml:space="preserve">
<value>너무 큽니다</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>알 수 없음</value>
</data>
<data name="UnknownSize" xml:space="preserve">
<value>알 수 없는 크기</value>
</data>
<data name="Yes" xml:space="preserve">
<value>네</value>
</data>
<data name="ZoomIn" xml:space="preserve">
<value>Zoom in</value>
</data>
<data name="ZoomOut" xml:space="preserve">
<value>Zoom out</value>
</data>
<data name="PageMode" xml:space="preserve">
<value>Page mode</value>
</data>
<data name="TwoPageMode" xml:space="preserve">
<value>Two page mode</value>
</data>
<data name="ScrollMode" xml:space="preserve">
<value>Scroll mode</value>
</data>
<data name="Find" xml:space="preserve">
<value>Find</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="Jump" xml:space="preserve">
<value>Jump</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>Miscellaneous</value>
</data>
<data name="All" xml:space="preserve">
<value>All</value>
</data>
<data name="NoData" xml:space="preserve">
<value>No Data</value>
</data>
</root>

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Confirm" xml:space="preserve">
<value>Akceptuj</value>
</data>
<data name="Cancel" xml:space="preserve">
<value>Anuluj</value>
</data>
<data name="PngImg" xml:space="preserve">
<value>obraz PNG</value>
</data>
<data name="ErrorImgPath" xml:space="preserve">
<value>Ścieżka do obrazu jest niepoprawna</value>
</data>
<data name="ErrorImgSize" xml:space="preserve">
<value>Wielkość obrazu jest niepoprawna</value>
</data>
<data name="UnknownSize" xml:space="preserve">
<value>Nieznany obraz</value>
</data>
<data name="TooLarge" xml:space="preserve">
<value>Za duże</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>Nieznany</value>
</data>
<data name="Interval30s" xml:space="preserve">
<value>30 sekundowy interwał</value>
</data>
<data name="Interval1m" xml:space="preserve">
<value>1 minutowy interwał</value>
</data>
<data name="Interval5m" xml:space="preserve">
<value>5 minutowy interwał</value>
</data>
<data name="Interval10m" xml:space="preserve">
<value>10 minutowy interwał</value>
</data>
<data name="Interval30m" xml:space="preserve">
<value>30 minutowy interwał</value>
</data>
<data name="Interval1h" xml:space="preserve">
<value>1 godzinny interwał</value>
</data>
<data name="Interval2h" xml:space="preserve">
<value>2 godzinny interwał</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Wyczyść</value>
</data>
<data name="Close" xml:space="preserve">
<value>Zamknij</value>
</data>
<data name="CloseAll" xml:space="preserve">
<value>Zamknij wszystkie</value>
</data>
<data name="CloseOther" xml:space="preserve">
<value>Zamknij inne</value>
</data>
<data name="Am" xml:space="preserve">
<value>AM</value>
</data>
<data name="Pm" xml:space="preserve">
<value>PM</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Podpowiedź</value>
</data>
<data name="IsNecessary" xml:space="preserve">
<value>nie może być pusty</value>
</data>
<data name="OutOfRange" xml:space="preserve">
<value>poza zakresem</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>błąd formatu</value>
</data>
<data name="Yes" xml:space="preserve">
<value>Tak</value>
</data>
<data name="No" xml:space="preserve">
<value>Nie</value>
</data>
<data name="ZoomIn" xml:space="preserve">
<value>Oddal</value>
</data>
<data name="ZoomOut" xml:space="preserve">
<value>Przybliż</value>
</data>
<data name="PreviousPage" xml:space="preserve">
<value>Poprzednia strona</value>
</data>
<data name="NextPage" xml:space="preserve">
<value>Następna strona</value>
</data>
<data name="PageMode" xml:space="preserve">
<value>Tryb strony</value>
</data>
<data name="TwoPageMode" xml:space="preserve">
<value>Tryb dwustronny</value>
</data>
<data name="ScrollMode" xml:space="preserve">
<value>Tryb przewijania</value>
</data>
<data name="Find" xml:space="preserve">
<value>Znajdź</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Wyszukuje zlokalizowany ciąg podobny do „{0}”.</value>
</data>
<data name="Jump" xml:space="preserve">
<value>Skocz</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>Różne</value>
</data>
<data name="All" xml:space="preserve">
<value>Wszystkie</value>
</data>
<data name="NoData" xml:space="preserve">
<value>No Data</value>
</data>
</root>

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Confirm" xml:space="preserve">
<value>Confirmar</value>
</data>
<data name="Cancel" xml:space="preserve">
<value>Cancelar</value>
</data>
<data name="PngImg" xml:space="preserve">
<value>Imagem PNG</value>
</data>
<data name="ErrorImgPath" xml:space="preserve">
<value>Caminho de imagem errado</value>
</data>
<data name="ErrorImgSize" xml:space="preserve">
<value>Tamanho de imagem errado</value>
</data>
<data name="UnknownSize" xml:space="preserve">
<value>Tamanho desconhecido</value>
</data>
<data name="TooLarge" xml:space="preserve">
<value>Muito grande</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>Desconhecido</value>
</data>
<data name="Interval30s" xml:space="preserve">
<value>Intervalo de 30 segundos</value>
</data>
<data name="Interval1m" xml:space="preserve">
<value>Intervalo de 1 minuto</value>
</data>
<data name="Interval5m" xml:space="preserve">
<value>Intervalo de 5 minutos</value>
</data>
<data name="Interval10m" xml:space="preserve">
<value>Intervalo de 10 minutos</value>
</data>
<data name="Interval30m" xml:space="preserve">
<value>Intervalo de 30 minutos</value>
</data>
<data name="Interval1h" xml:space="preserve">
<value>Intervalo de 1 hora</value>
</data>
<data name="Interval2h" xml:space="preserve">
<value>Intervalo de 2 horas</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Limpar</value>
</data>
<data name="Close" xml:space="preserve">
<value>Fechar</value>
</data>
<data name="CloseAll" xml:space="preserve">
<value>Fechar tudo</value>
</data>
<data name="CloseOther" xml:space="preserve">
<value>Fechar outras</value>
</data>
<data name="Am" xml:space="preserve">
<value>Manhã</value>
</data>
<data name="Pm" xml:space="preserve">
<value>Tarde</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Perguntar</value>
</data>
<data name="IsNecessary" xml:space="preserve">
<value>não pode estar vazio</value>
</data>
<data name="OutOfRange" xml:space="preserve">
<value>fora do intervalo</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>erro de formato</value>
</data>
<data name="Yes" xml:space="preserve">
<value>Sim</value>
</data>
<data name="No" xml:space="preserve">
<value>Não</value>
</data>
<data name="ZoomIn" xml:space="preserve">
<value>Mais Zoom</value>
</data>
<data name="ZoomOut" xml:space="preserve">
<value>Menos Zoom</value>
</data>
<data name="PreviousPage" xml:space="preserve">
<value>Página anterior</value>
</data>
<data name="NextPage" xml:space="preserve">
<value>Próxima página</value>
</data>
<data name="PageMode" xml:space="preserve">
<value>Modo de página</value>
</data>
<data name="TwoPageMode" xml:space="preserve">
<value>Modo de duas páginas</value>
</data>
<data name="ScrollMode" xml:space="preserve">
<value>Modo de rolagem</value>
</data>
<data name="Find" xml:space="preserve">
<value>Econtrar</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Procura uma sequência localizada semelhante a "{0}".</value>
</data>
<data name="Jump" xml:space="preserve">
<value>Pule</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>Geral</value>
</data>
<data name="All" xml:space="preserve">
<value>All</value>
</data>
<data name="NoData" xml:space="preserve">
<value>No Data</value>
</data>
</root>

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="All" xml:space="preserve">
<value>全部</value>
</data>
<data name="Am" xml:space="preserve">
<value>上午</value>
</data>
<data name="Cancel" xml:space="preserve">
<value>取消</value>
</data>
<data name="Clear" xml:space="preserve">
<value>清空</value>
</data>
<data name="Close" xml:space="preserve">
<value>关闭</value>
</data>
<data name="CloseAll" xml:space="preserve">
<value>关闭所有</value>
</data>
<data name="CloseOther" xml:space="preserve">
<value>关闭其他</value>
</data>
<data name="Confirm" xml:space="preserve">
<value>确定</value>
</data>
<data name="ErrorImgPath" xml:space="preserve">
<value>错误的图片路径</value>
</data>
<data name="ErrorImgSize" xml:space="preserve">
<value>非法的图片尺寸</value>
</data>
<data name="Find" xml:space="preserve">
<value>查找</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>格式错误</value>
</data>
<data name="Interval10m" xml:space="preserve">
<value>间隔10分钟</value>
</data>
<data name="Interval1h" xml:space="preserve">
<value>间隔1小时</value>
</data>
<data name="Interval1m" xml:space="preserve">
<value>间隔1分钟</value>
</data>
<data name="Interval2h" xml:space="preserve">
<value>间隔2小时</value>
</data>
<data name="Interval30m" xml:space="preserve">
<value>间隔30分钟</value>
</data>
<data name="Interval30s" xml:space="preserve">
<value>间隔30秒</value>
</data>
<data name="Interval5m" xml:space="preserve">
<value>间隔5分钟</value>
</data>
<data name="IsNecessary" xml:space="preserve">
<value>不能为空</value>
</data>
<data name="Jump" xml:space="preserve">
<value>跳转</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>查找类似 {0} 的本地化字符串。</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>杂项</value>
</data>
<data name="NextPage" xml:space="preserve">
<value>下一页</value>
</data>
<data name="No" xml:space="preserve">
<value>否</value>
</data>
<data name="NoData" xml:space="preserve">
<value>暂无数据</value>
</data>
<data name="OutOfRange" xml:space="preserve">
<value>不在范围内</value>
</data>
<data name="PageMode" xml:space="preserve">
<value>页面模式</value>
</data>
<data name="Pm" xml:space="preserve">
<value>下午</value>
</data>
<data name="PngImg" xml:space="preserve">
<value>PNG图片</value>
</data>
<data name="PreviousPage" xml:space="preserve">
<value>上一页</value>
</data>
<data name="ScrollMode" xml:space="preserve">
<value>滚动模式</value>
</data>
<data name="Tip" xml:space="preserve">
<value>提示</value>
</data>
<data name="TooLarge" xml:space="preserve">
<value>过大</value>
</data>
<data name="TwoPageMode" xml:space="preserve">
<value>双页模式</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>未知</value>
</data>
<data name="UnknownSize" xml:space="preserve">
<value>未知大小</value>
</data>
<data name="Yes" xml:space="preserve">
<value>是</value>
</data>
<data name="ZoomIn" xml:space="preserve">
<value>放大</value>
</data>
<data name="ZoomOut" xml:space="preserve">
<value>缩小</value>
</data>
</root>

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Confirm" xml:space="preserve">
<value>Подтвердить</value>
</data>
<data name="Cancel" xml:space="preserve">
<value>Отмена</value>
</data>
<data name="PngImg" xml:space="preserve">
<value>PNG изображение</value>
</data>
<data name="ErrorImgPath" xml:space="preserve">
<value>Неправильный путь к изображению</value>
</data>
<data name="ErrorImgSize" xml:space="preserve">
<value>Неправильный размер изображения</value>
</data>
<data name="UnknownSize" xml:space="preserve">
<value>Неизвестный размер</value>
</data>
<data name="TooLarge" xml:space="preserve">
<value>Слишком большой</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>Неизвестный</value>
</data>
<data name="Interval30s" xml:space="preserve">
<value>Интервал 30 секунд</value>
</data>
<data name="Interval1m" xml:space="preserve">
<value>Интервал 1 минута</value>
</data>
<data name="Interval5m" xml:space="preserve">
<value>Интервал 5 минут</value>
</data>
<data name="Interval10m" xml:space="preserve">
<value>Интервал 10 минут</value>
</data>
<data name="Interval30m" xml:space="preserve">
<value>Интервал 30 минут</value>
</data>
<data name="Interval1h" xml:space="preserve">
<value>Интервал 1 час</value>
</data>
<data name="Interval2h" xml:space="preserve">
<value>Интервал 2 часа</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Очистить</value>
</data>
<data name="Close" xml:space="preserve">
<value>Закрыть</value>
</data>
<data name="CloseAll" xml:space="preserve">
<value>Закрыть все</value>
</data>
<data name="CloseOther" xml:space="preserve">
<value>Закрыть другие</value>
</data>
<data name="Am" xml:space="preserve">
<value>Am</value>
</data>
<data name="Pm" xml:space="preserve">
<value>Pm</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Незамедлительно</value>
</data>
<data name="IsNecessary" xml:space="preserve">
<value>не может быть пустым</value>
</data>
<data name="OutOfRange" xml:space="preserve">
<value>вне диапазона</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>некорректный формат</value>
</data>
<data name="Yes" xml:space="preserve">
<value>Да</value>
</data>
<data name="No" xml:space="preserve">
<value>Нет</value>
</data>
<data name="ZoomIn" xml:space="preserve">
<value>Увеличить</value>
</data>
<data name="ZoomOut" xml:space="preserve">
<value>Уменьшить</value>
</data>
<data name="PreviousPage" xml:space="preserve">
<value>Предыдущая страница</value>
</data>
<data name="NextPage" xml:space="preserve">
<value>Следующая страница</value>
</data>
<data name="PageMode" xml:space="preserve">
<value>Страничный режим</value>
</data>
<data name="TwoPageMode" xml:space="preserve">
<value>Двухстраничный режим</value>
</data>
<data name="ScrollMode" xml:space="preserve">
<value>Режим прокрутки</value>
</data>
<data name="Find" xml:space="preserve">
<value>Поиск</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Ищет локализованную строку, похожую на "{0}".</value>
</data>
<data name="Jump" xml:space="preserve">
<value>Jump</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>Miscellaneous</value>
</data>
<data name="All" xml:space="preserve">
<value>All</value>
</data>
<data name="NoData" xml:space="preserve">
<value>No Data</value>
</data>
</root>

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Confirm" xml:space="preserve">
<value>Onayla</value>
</data>
<data name="Cancel" xml:space="preserve">
<value>İptal</value>
</data>
<data name="PngImg" xml:space="preserve">
<value>PNG resmi</value>
</data>
<data name="ErrorImgPath" xml:space="preserve">
<value>Hatalı resim yolu</value>
</data>
<data name="ErrorImgSize" xml:space="preserve">
<value>Hatalı resim boyutu</value>
</data>
<data name="UnknownSize" xml:space="preserve">
<value>Bilinmeyen boyut</value>
</data>
<data name="TooLarge" xml:space="preserve">
<value>Çok uzun</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>Bilinmiyor</value>
</data>
<data name="Interval30s" xml:space="preserve">
<value>30 saniye aralık</value>
</data>
<data name="Interval1m" xml:space="preserve">
<value>1 dakika aralık</value>
</data>
<data name="Interval5m" xml:space="preserve">
<value>5 dakika aralık</value>
</data>
<data name="Interval10m" xml:space="preserve">
<value>10 dakika aralık</value>
</data>
<data name="Interval30m" xml:space="preserve">
<value>30 dakika aralık</value>
</data>
<data name="Interval1h" xml:space="preserve">
<value>1 saat aralık</value>
</data>
<data name="Interval2h" xml:space="preserve">
<value>2 saat aralık</value>
</data>
<data name="Clear" xml:space="preserve">
<value>Temizle</value>
</data>
<data name="Close" xml:space="preserve">
<value>Kapat</value>
</data>
<data name="CloseAll" xml:space="preserve">
<value>Hepsini kapat</value>
</data>
<data name="CloseOther" xml:space="preserve">
<value>Diğerlerini kapat</value>
</data>
<data name="Am" xml:space="preserve">
<value>ÖÖ</value>
</data>
<data name="Pm" xml:space="preserve">
<value>ÖS</value>
</data>
<data name="Tip" xml:space="preserve">
<value>Komut İstemi</value>
</data>
<data name="IsNecessary" xml:space="preserve">
<value>boş olamaz</value>
</data>
<data name="OutOfRange" xml:space="preserve">
<value>kapsama alanı dışında</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>format hatası</value>
</data>
<data name="Yes" xml:space="preserve">
<value>Evet</value>
</data>
<data name="No" xml:space="preserve">
<value>Hayır</value>
</data>
<data name="ZoomIn" xml:space="preserve">
<value>Yakınlaştır</value>
</data>
<data name="ZoomOut" xml:space="preserve">
<value>Uzaklaştır</value>
</data>
<data name="PreviousPage" xml:space="preserve">
<value>Önceki sayfa</value>
</data>
<data name="NextPage" xml:space="preserve">
<value>Sonraki sayfa</value>
</data>
<data name="PageMode" xml:space="preserve">
<value>Sayfa modu</value>
</data>
<data name="TwoPageMode" xml:space="preserve">
<value>2 sayfa modu</value>
</data>
<data name="ScrollMode" xml:space="preserve">
<value>Kaydırma modu</value>
</data>
<data name="Find" xml:space="preserve">
<value>Bul</value>
</data>
<data name="LangComment" xml:space="preserve">
<value>Looks up a localized string similar to "{0}".</value>
</data>
<data name="Jump" xml:space="preserve">
<value>Zıpla</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>Çeşitli</value>
</data>
<data name="All" xml:space="preserve">
<value>Hepsi</value>
</data>
<data name="NoData" xml:space="preserve">
<value>Veri yok</value>
</data>
</root>

View File

@ -1,64 +1,163 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<SolidColorBrush x:Key="LightPrimaryBrush" Color="{DynamicResource LightPrimaryColor}"/>
<LinearGradientBrush x:Key="PrimaryBrush" EndPoint="1,0" StartPoint="0,0">
<GradientStop Color="{DynamicResource PrimaryColor}" Offset="0"/>
<GradientStop Color="{DynamicResource DarkPrimaryColor}" Offset="1"/>
<SolidColorBrush x:Key="LightPrimaryBrush"
Color="{DynamicResource LightPrimaryColor}" />
<LinearGradientBrush x:Key="PrimaryBrush"
EndPoint="1,0"
StartPoint="0,0">
<GradientStop Color="{DynamicResource PrimaryColor}"
Offset="0" />
<GradientStop Color="{DynamicResource DarkPrimaryColor}"
Offset="1" />
</LinearGradientBrush>
<SolidColorBrush x:Key="DarkPrimaryBrush" Color="{DynamicResource DarkPrimaryColor}"/>
<SolidColorBrush x:Key="DarkPrimaryBrush"
Color="{DynamicResource DarkPrimaryColor}" />
<SolidColorBrush x:Key="PrimaryTextBrush" Color="{DynamicResource PrimaryTextColor}"/>
<SolidColorBrush x:Key="SecondaryTextBrush" Color="{DynamicResource SecondaryTextColor}"/>
<SolidColorBrush x:Key="ThirdlyTextBrush" Color="{DynamicResource ThirdlyTextColor}"/>
<SolidColorBrush x:Key="ReverseTextBrush" Color="{DynamicResource ReverseTextColor}"/>
<SolidColorBrush x:Key="TextIconBrush" Color="{DynamicResource TextIconColor}"/>
<SolidColorBrush x:Key="PrimaryTextBrush"
Color="{DynamicResource PrimaryTextColor}" />
<SolidColorBrush x:Key="SecondaryTextBrush"
Color="{DynamicResource SecondaryTextColor}" />
<SolidColorBrush x:Key="ThirdlyTextBrush"
Color="{DynamicResource ThirdlyTextColor}" />
<SolidColorBrush x:Key="ReverseTextBrush"
Color="{DynamicResource ReverseTextColor}" />
<SolidColorBrush x:Key="TextIconBrush"
Color="{DynamicResource TextIconColor}" />
<SolidColorBrush x:Key="BorderBrush" Color="{DynamicResource BorderColor}"/>
<SolidColorBrush x:Key="SecondaryBorderBrush" Color="{DynamicResource SecondaryBorderColor}"/>
<SolidColorBrush x:Key="BackgroundBrush" Color="{DynamicResource BackgroundColor}"/>
<SolidColorBrush x:Key="RegionBrush" Color="{DynamicResource RegionColor}"/>
<SolidColorBrush x:Key="SecondaryRegionBrush" Color="{DynamicResource SecondaryRegionColor}"/>
<SolidColorBrush x:Key="ThirdlyRegionBrush" Color="{DynamicResource ThirdlyRegionColor}"/>
<LinearGradientBrush x:Key="TitleBrush" EndPoint="1,0" StartPoint="0,0">
<GradientStop Color="{DynamicResource TitleColor}" Offset="0"/>
<GradientStop Color="{DynamicResource SecondaryTitleColor}" Offset="1"/>
<SolidColorBrush x:Key="BorderBrush"
Color="{DynamicResource BorderColor}" />
<SolidColorBrush x:Key="SecondaryBorderBrush"
Color="{DynamicResource SecondaryBorderColor}" />
<SolidColorBrush x:Key="BackgroundBrush"
Color="{DynamicResource BackgroundColor}" />
<SolidColorBrush x:Key="RegionBrush"
Color="{DynamicResource RegionColor}" />
<SolidColorBrush x:Key="SecondaryRegionBrush"
Color="{DynamicResource SecondaryRegionColor}" />
<SolidColorBrush x:Key="ThirdlyRegionBrush"
Color="{DynamicResource ThirdlyRegionColor}" />
<LinearGradientBrush x:Key="TitleBrush"
EndPoint="1,0"
StartPoint="0,0">
<GradientStop Color="{DynamicResource TitleColor}"
Offset="0" />
<GradientStop Color="{DynamicResource SecondaryTitleColor}"
Offset="1" />
</LinearGradientBrush>
<SolidColorBrush x:Key="DefaultBrush" Color="{DynamicResource DefaultColor}"/>
<SolidColorBrush x:Key="DarkDefaultBrush" Color="{DynamicResource DarkDefaultColor}"/>
<SolidColorBrush x:Key="DefaultBrush"
Color="{DynamicResource DefaultColor}" />
<SolidColorBrush x:Key="DarkDefaultBrush"
Color="{DynamicResource DarkDefaultColor}" />
<SolidColorBrush x:Key="LightDangerBrush" Color="{DynamicResource LightDangerColor}"/>
<LinearGradientBrush x:Key="DangerBrush" EndPoint="1,0" StartPoint="0,0">
<GradientStop Color="{DynamicResource DangerColor}" Offset="0"/>
<GradientStop Color="{DynamicResource DarkDangerColor}" Offset="1"/>
<SolidColorBrush x:Key="LightDangerBrush"
Color="{DynamicResource LightDangerColor}" />
<LinearGradientBrush x:Key="DangerBrush"
EndPoint="1,0"
StartPoint="0,0">
<GradientStop Color="{DynamicResource DangerColor}"
Offset="0" />
<GradientStop Color="{DynamicResource DarkDangerColor}"
Offset="1" />
</LinearGradientBrush>
<SolidColorBrush x:Key="DarkDangerBrush" Color="{DynamicResource DarkDangerColor}"/>
<SolidColorBrush x:Key="DarkDangerBrush"
Color="{DynamicResource DarkDangerColor}" />
<SolidColorBrush x:Key="LightWarningBrush" Color="{DynamicResource LightWarningColor}"/>
<LinearGradientBrush x:Key="WarningBrush" EndPoint="1,0" StartPoint="0,0">
<GradientStop Color="{DynamicResource WarningColor}" Offset="0"/>
<GradientStop Color="{DynamicResource DarkWarningColor}" Offset="1"/>
<SolidColorBrush x:Key="LightWarningBrush"
Color="{DynamicResource LightWarningColor}" />
<LinearGradientBrush x:Key="WarningBrush"
EndPoint="1,0"
StartPoint="0,0">
<GradientStop Color="{DynamicResource WarningColor}"
Offset="0" />
<GradientStop Color="{DynamicResource DarkWarningColor}"
Offset="1" />
</LinearGradientBrush>
<SolidColorBrush x:Key="DarkWarningBrush" Color="{DynamicResource DarkWarningColor}"/>
<SolidColorBrush x:Key="DarkWarningBrush"
Color="{DynamicResource DarkWarningColor}" />
<SolidColorBrush x:Key="LightInfoBrush" Color="{DynamicResource LightInfoColor}"/>
<LinearGradientBrush x:Key="InfoBrush" EndPoint="1,0" StartPoint="0,0">
<GradientStop Color="{DynamicResource InfoColor}" Offset="0"/>
<GradientStop Color="{DynamicResource DarkInfoColor}" Offset="1"/>
<SolidColorBrush x:Key="LightInfoBrush"
Color="{DynamicResource LightInfoColor}" />
<LinearGradientBrush x:Key="InfoBrush"
EndPoint="1,0"
StartPoint="0,0">
<GradientStop Color="{DynamicResource InfoColor}"
Offset="0" />
<GradientStop Color="{DynamicResource DarkInfoColor}"
Offset="1" />
</LinearGradientBrush>
<SolidColorBrush x:Key="DarkInfoBrush" Color="{DynamicResource DarkInfoColor}"/>
<SolidColorBrush x:Key="DarkInfoBrush"
Color="{DynamicResource DarkInfoColor}" />
<SolidColorBrush x:Key="LightSuccessBrush" Color="{DynamicResource LightSuccessColor}"/>
<LinearGradientBrush x:Key="SuccessBrush" EndPoint="1,0" StartPoint="0,0">
<GradientStop Color="{DynamicResource SuccessColor}" Offset="0"/>
<GradientStop Color="{DynamicResource DarkSuccessColor}" Offset="1"/>
<SolidColorBrush x:Key="LightSuccessBrush"
Color="{DynamicResource LightSuccessColor}" />
<LinearGradientBrush x:Key="SuccessBrush"
EndPoint="1,0"
StartPoint="0,0">
<GradientStop Color="{DynamicResource SuccessColor}"
Offset="0" />
<GradientStop Color="{DynamicResource DarkSuccessColor}"
Offset="1" />
</LinearGradientBrush>
<SolidColorBrush x:Key="DarkSuccessBrush" Color="{DynamicResource DarkSuccessColor}"/>
<SolidColorBrush x:Key="DarkSuccessBrush"
Color="{DynamicResource DarkSuccessColor}" />
<SolidColorBrush x:Key="AccentBrush" Color="{DynamicResource AccentColor}"/>
<SolidColorBrush x:Key="DarkAccentBrush" Color="{DynamicResource DarkAccentColor}"/>
<SolidColorBrush x:Key="AccentBrush"
Color="{DynamicResource AccentColor}" />
<SolidColorBrush x:Key="DarkAccentBrush"
Color="{DynamicResource DarkAccentColor}" />
<SolidColorBrush x:Key="DarkMaskBrush" Color="{DynamicResource DarkMaskColor}"/>
<SolidColorBrush x:Key="DarkOpacityBrush" Color="{DynamicResource DarkOpacityColor}"/>
<SolidColorBrush x:Key="DarkMaskBrush"
Color="{DynamicResource DarkMaskColor}" />
<SolidColorBrush x:Key="DarkOpacityBrush"
Color="{DynamicResource DarkOpacityColor}" />
<SolidColorBrush x:Key="ThemeBackgroundBrush"
Color="{DynamicResource ThemeBackgroundColor}" />
<SolidColorBrush x:Key="ThemeBorderLowBrush"
Color="{DynamicResource ThemeBorderLowColor}" />
<SolidColorBrush x:Key="ThemeBorderMidBrush"
Color="{DynamicResource ThemeBorderMidColor}" />
<SolidColorBrush x:Key="ThemeBorderHighBrush"
Color="{DynamicResource ThemeBorderHighColor}" />
<SolidColorBrush x:Key="ThemeControlLowBrush"
Color="{DynamicResource ThemeControlLowColor}" />
<SolidColorBrush x:Key="ThemeControlMidBrush"
Color="{DynamicResource ThemeControlMidColor}" />
<SolidColorBrush x:Key="ThemeControlMidHighBrush"
Color="{DynamicResource ThemeControlMidHighColor}" />
<SolidColorBrush x:Key="ThemeControlHighBrush"
Color="{DynamicResource ThemeControlHighColor}" />
<SolidColorBrush x:Key="ThemeControlVeryHighBrush"
Color="{DynamicResource ThemeControlVeryHighColor}" />
<SolidColorBrush x:Key="ThemeControlHighlightLowBrush"
Color="{DynamicResource ThemeControlHighlightLowColor}" />
<SolidColorBrush x:Key="ThemeControlHighlightMidBrush"
Color="{DynamicResource ThemeControlHighlightMidColor}" />
<SolidColorBrush x:Key="ThemeControlHighlightHighBrush"
Color="{DynamicResource ThemeControlHighlightHighColor}" />
<SolidColorBrush x:Key="ThemeForegroundBrush"
Color="{DynamicResource ThemeForegroundColor}" />
<SolidColorBrush x:Key="HighlightBrush"
Color="{DynamicResource HighlightColor}" />
<SolidColorBrush x:Key="HighlightBrush2"
Color="{DynamicResource HighlightColor2}" />
<SolidColorBrush x:Key="HyperlinkVisitedBrush"
Color="{DynamicResource HyperlinkVisitedColor}" />
<SolidColorBrush x:Key="RefreshVisualizerForeground"
Color="Black" />
<SolidColorBrush x:Key="RefreshVisualizerBackground"
Color="Transparent" />
<!-- BaseResources for CaptionButtons.xaml -->
<SolidColorBrush x:Key="CaptionButtonForeground"
Color="Black" />
<SolidColorBrush x:Key="CaptionButtonBackground"
Color="#ffe5e5e5" />
<SolidColorBrush x:Key="CaptionButtonBorderBrush"
Color="#ffcacaca" />
</ResourceDictionary>

View File

@ -47,6 +47,23 @@
<Color x:Key="DarkMaskColor">#20000000</Color>
<Color x:Key="DarkOpacityColor">#40000000</Color>
<system:UInt32 x:Key="BlurGradientValue">2583691263</system:UInt32>
<Color x:Key="ThemeBackgroundColor">#FFFFFFFF</Color>
<Color x:Key="ThemeBorderLowColor">#FFAAAAAA</Color>
<Color x:Key="ThemeBorderMidColor">#FF888888</Color>
<Color x:Key="ThemeBorderHighColor">#FF333333</Color>
<Color x:Key="ThemeControlLowColor">#FF868999</Color>
<Color x:Key="ThemeControlMidColor">#FFF5F5F5</Color>
<Color x:Key="ThemeControlMidHighColor">#FFC2C3C9</Color>
<Color x:Key="ThemeControlHighColor">#FF686868</Color>
<Color x:Key="ThemeControlVeryHighColor">#FF5B5B5B</Color>
<Color x:Key="ThemeControlHighlightLowColor">#FFF0F0F0</Color>
<Color x:Key="ThemeControlHighlightMidColor">#FFD0D0D0</Color>
<Color x:Key="ThemeControlHighlightHighColor">#FF808080</Color>
<Color x:Key="ThemeForegroundColor">#FF000000</Color>
<Color x:Key="HighlightColor">#FF086F9E</Color>
<Color x:Key="HighlightColor2">#FF096085</Color>
<Color x:Key="HyperlinkVisitedColor">#FF681DA8</Color>
</ResourceDictionary>
<ResourceDictionary x:Key="Dark">
<Color x:Key="LightPrimaryColor">#044289</Color>
@ -93,6 +110,23 @@
<Color x:Key="DarkMaskColor">#40000000</Color>
<Color x:Key="DarkOpacityColor">#40000000</Color>
<system:UInt32 x:Key="BlurGradientValue">2583691263</system:UInt32>
<Color x:Key="ThemeBackgroundColor">#FF282828</Color>
<Color x:Key="ThemeBorderLowColor">#FF505050</Color>
<Color x:Key="ThemeBorderMidColor">#FF808080</Color>
<Color x:Key="ThemeBorderHighColor">#FFA0A0A0</Color>
<Color x:Key="ThemeControlLowColor">#FF282828</Color>
<Color x:Key="ThemeControlMidColor">#FF505050</Color>
<Color x:Key="ThemeControlMidHighColor">#FF686868</Color>
<Color x:Key="ThemeControlHighColor">#FF808080</Color>
<Color x:Key="ThemeControlVeryHighColor">#FFEFEBEF</Color>
<Color x:Key="ThemeControlHighlightLowColor">#FFA8A8A8</Color>
<Color x:Key="ThemeControlHighlightMidColor">#FF828282</Color>
<Color x:Key="ThemeControlHighlightHighColor">#FF505050</Color>
<Color x:Key="ThemeForegroundColor">#FFDEDEDE</Color>
<Color x:Key="HighlightColor">#FF119EDA</Color>
<Color x:Key="HighlightColor2">#FF096085</Color>
<Color x:Key="HyperlinkVisitedColor">#FFC58AF9</Color>
</ResourceDictionary>
</ResourceDictionary.ThemeDictionaries>
</ResourceDictionary>

View File

@ -0,0 +1,7 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:converter="clr-namespace:HandyControl.Tools.Converter">
<converter:BorderClipConverter x:Key="BorderClipConverter" />
</ResourceDictionary>

View File

@ -3,11 +3,30 @@
<Color x:Key="EffectShadowColor">#88000000</Color>
<DropShadowEffect x:Key="EffectShadow1" BlurRadius="5" OffsetY="1" Color="{StaticResource EffectShadowColor}" Opacity=".2" />
<DropShadowEffect x:Key="EffectShadow2" BlurRadius="8" OffsetY="1.5" Color="{StaticResource EffectShadowColor}" Opacity=".2" />
<DropShadowEffect x:Key="EffectShadow3" BlurRadius="14" OffsetY="4.5" Color="{StaticResource EffectShadowColor}" Opacity=".2" />
<DropShadowEffect x:Key="EffectShadow4" BlurRadius="25" OffsetY="8" Color="{StaticResource EffectShadowColor}" Opacity=".2" />
<DropShadowEffect x:Key="EffectShadow5" BlurRadius="35" OffsetY="13" Color="{StaticResource EffectShadowColor}" Opacity=".2" />
<DropShadowEffect x:Key="EffectShadow1"
BlurRadius="5"
OffsetY="1"
Color="{StaticResource EffectShadowColor}"
Opacity=".2" />
<DropShadowEffect x:Key="EffectShadow2"
BlurRadius="8"
OffsetY="1.5"
Color="{StaticResource EffectShadowColor}"
Opacity=".2" />
<DropShadowEffect x:Key="EffectShadow3"
BlurRadius="14"
OffsetY="4.5"
Color="{StaticResource EffectShadowColor}"
Opacity=".2" />
<DropShadowEffect x:Key="EffectShadow4"
BlurRadius="25"
OffsetY="8"
Color="{StaticResource EffectShadowColor}"
Opacity=".2" />
<DropShadowEffect x:Key="EffectShadow5"
BlurRadius="35"
OffsetY="13"
Color="{StaticResource EffectShadowColor}"
Opacity=".2" />
</ResourceDictionary>

View File

@ -0,0 +1,20 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ControlTheme x:Key="{x:Type Border}"
TargetType="Border">
<Style Selector="^.clip">
<Setter Property="Clip">
<Setter.Value>
<MultiBinding Converter="{StaticResource BorderClipConverter}">
<Binding Path="ActualWidth"
RelativeSource="{RelativeSource Self}" />
<Binding Path="ActualHeight"
RelativeSource="{RelativeSource Self}" />
<Binding Path="CornerRadius"
RelativeSource="{RelativeSource Self}" />
</MultiBinding>
</Setter.Value>
</Setter>
</Style>
</ControlTheme>
</ResourceDictionary>

View File

@ -1,16 +1,27 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ControlTheme x:Key="{x:Type Button}" TargetType="Button">
<Setter Property="Background" Value="{DynamicResource RegionBrush}" />
<Setter Property="Foreground" Value="{DynamicResource PrimaryTextBrush}" />
<Setter Property="BorderBrush" Value="{DynamicResource BorderBrush}" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="CornerRadius" Value="{DynamicResource DefaultCornerRadius}" />
<Setter Property="Padding" Value="{DynamicResource DefaultControlPadding}" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="HorizontalContentAlignment" Value="Center" />
<Setter Property="VerticalContentAlignment" Value="Center" />
<ControlTheme x:Key="{x:Type Button}"
TargetType="Button">
<Setter Property="Background"
Value="{DynamicResource RegionBrush}" />
<Setter Property="Foreground"
Value="{DynamicResource PrimaryTextBrush}" />
<Setter Property="BorderBrush"
Value="{DynamicResource BorderBrush}" />
<Setter Property="BorderThickness"
Value="1" />
<Setter Property="CornerRadius"
Value="{DynamicResource DefaultCornerRadius}" />
<Setter Property="Padding"
Value="{DynamicResource DefaultControlPadding}" />
<Setter Property="HorizontalAlignment"
Value="Center" />
<Setter Property="VerticalAlignment"
Value="Center" />
<Setter Property="HorizontalContentAlignment"
Value="Center" />
<Setter Property="VerticalContentAlignment"
Value="Center" />
<Setter Property="Template">
<ControlTemplate TargetType="Button">
<ContentPresenter x:Name="PART_ContentPresenter"
@ -28,74 +39,102 @@
</Setter>
<Style Selector="^:pointerover">
<Setter Property="Background" Value="{DynamicResource SecondaryRegionBrush}" />
<Setter Property="Background"
Value="{DynamicResource SecondaryRegionBrush}" />
</Style>
<Style Selector="^:pressed">
<Setter Property="Background" Value="{DynamicResource BorderBrush}" />
<Setter Property="Background"
Value="{DynamicResource BorderBrush}" />
</Style>
<Style Selector="^:disabled">
<Setter Property="Opacity" Value=".4" />
<Setter Property="Opacity"
Value=".4" />
</Style>
<Style Selector="^.primary">
<Setter Property="Foreground" Value="{DynamicResource TextIconBrush}" />
<Setter Property="Background" Value="{DynamicResource PrimaryBrush}" />
<Setter Property="BorderBrush" Value="{DynamicResource PrimaryBrush}" />
<Setter Property="Foreground"
Value="{DynamicResource TextIconBrush}" />
<Setter Property="Background"
Value="{DynamicResource PrimaryBrush}" />
<Setter Property="BorderBrush"
Value="{DynamicResource PrimaryBrush}" />
<Style Selector="^:pointerover">
<Setter Property="Opacity" Value=".9" />
<Setter Property="Opacity"
Value=".9" />
</Style>
<Style Selector="^:pressed">
<Setter Property="Opacity" Value=".6" />
<Setter Property="Opacity"
Value=".6" />
</Style>
</Style>
<Style Selector="^.success">
<Setter Property="Foreground" Value="{DynamicResource TextIconBrush}" />
<Setter Property="Background" Value="{DynamicResource SuccessBrush}" />
<Setter Property="BorderBrush" Value="{DynamicResource SuccessBrush}" />
<Setter Property="Foreground"
Value="{DynamicResource TextIconBrush}" />
<Setter Property="Background"
Value="{DynamicResource SuccessBrush}" />
<Setter Property="BorderBrush"
Value="{DynamicResource SuccessBrush}" />
<Style Selector="^:pointerover">
<Setter Property="Opacity" Value=".9" />
<Setter Property="Opacity"
Value=".9" />
</Style>
<Style Selector="^:pressed">
<Setter Property="Opacity" Value=".6" />
<Setter Property="Opacity"
Value=".6" />
</Style>
</Style>
<Style Selector="^.info">
<Setter Property="Foreground" Value="{DynamicResource TextIconBrush}" />
<Setter Property="Background" Value="{DynamicResource InfoBrush}" />
<Setter Property="BorderBrush" Value="{DynamicResource InfoBrush}" />
<Setter Property="Foreground"
Value="{DynamicResource TextIconBrush}" />
<Setter Property="Background"
Value="{DynamicResource InfoBrush}" />
<Setter Property="BorderBrush"
Value="{DynamicResource InfoBrush}" />
<Style Selector="^:pointerover">
<Setter Property="Opacity" Value=".9" />
<Setter Property="Opacity"
Value=".9" />
</Style>
<Style Selector="^:pressed">
<Setter Property="Opacity" Value=".6" />
<Setter Property="Opacity"
Value=".6" />
</Style>
</Style>
<Style Selector="^.warning">
<Setter Property="Foreground" Value="{DynamicResource TextIconBrush}" />
<Setter Property="Background" Value="{DynamicResource WarningBrush}" />
<Setter Property="BorderBrush" Value="{DynamicResource WarningBrush}" />
<Setter Property="Foreground"
Value="{DynamicResource TextIconBrush}" />
<Setter Property="Background"
Value="{DynamicResource WarningBrush}" />
<Setter Property="BorderBrush"
Value="{DynamicResource WarningBrush}" />
<Style Selector="^:pointerover">
<Setter Property="Opacity" Value=".9" />
<Setter Property="Opacity"
Value=".9" />
</Style>
<Style Selector="^:pressed">
<Setter Property="Opacity" Value=".6" />
<Setter Property="Opacity"
Value=".6" />
</Style>
</Style>
<Style Selector="^.danger">
<Setter Property="Foreground" Value="{DynamicResource TextIconBrush}" />
<Setter Property="Background" Value="{DynamicResource DangerBrush}" />
<Setter Property="BorderBrush" Value="{DynamicResource DangerBrush}" />
<Setter Property="Foreground"
Value="{DynamicResource TextIconBrush}" />
<Setter Property="Background"
Value="{DynamicResource DangerBrush}" />
<Setter Property="BorderBrush"
Value="{DynamicResource DangerBrush}" />
<Style Selector="^:pointerover">
<Setter Property="Opacity" Value=".9" />
<Setter Property="Opacity"
Value=".9" />
</Style>
<Style Selector="^:pressed">
<Setter Property="Opacity" Value=".6" />
<Setter Property="Opacity"
Value=".6" />
</Style>
</Style>
</ControlTheme>

View File

@ -1,10 +1,10 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ControlTheme x:Key="{x:Type ContentControl}" TargetType="ContentControl">
<ControlTheme x:Key="{x:Type ContentControl}"
TargetType="ContentControl">
<Setter Property="Template">
<ControlTemplate TargetType="ContentControl">
<ContentPresenter
Name="PART_ContentPresenter"
<ContentPresenter Name="PART_ContentPresenter"
Padding="{TemplateBinding Padding}"
HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}"
VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}"

View File

@ -0,0 +1,18 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ControlTheme x:Key="{x:Type ItemsControl}"
TargetType="ItemsControl">
<Setter Property="Template">
<ControlTemplate TargetType="ItemsControl">
<Border Padding="{TemplateBinding Padding}"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
CornerRadius="{TemplateBinding CornerRadius}">
<ItemsPresenter Name="PART_ItemsPresenter"
ItemsPanel="{TemplateBinding ItemsPanel}" />
</Border>
</ControlTemplate>
</Setter>
</ControlTheme>
</ResourceDictionary>

View File

@ -0,0 +1,43 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ControlTheme x:Key="{x:Type ListBox}"
TargetType="ListBox">
<Setter Property="Background"
Value="{DynamicResource RegionBrush}" />
<Setter Property="BorderBrush"
Value="{DynamicResource BorderBrush}" />
<Setter Property="BorderThickness"
Value="1" />
<Setter Property="Padding"
Value="4" />
<Setter Property="ScrollViewer.HorizontalScrollBarVisibility"
Value="Auto" />
<Setter Property="ScrollViewer.VerticalScrollBarVisibility"
Value="Auto" />
<Setter Property="ScrollViewer.IsScrollChainingEnabled"
Value="True" />
<Setter Property="Template">
<ControlTemplate>
<Border Name="border"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
CornerRadius="{TemplateBinding CornerRadius}">
<ScrollViewer Name="PART_ScrollViewer"
AllowAutoHide="{TemplateBinding (ScrollViewer.AllowAutoHide)}"
BringIntoViewOnFocusChange="{TemplateBinding (ScrollViewer.BringIntoViewOnFocusChange)}"
Background="{TemplateBinding Background}"
HorizontalScrollBarVisibility="{TemplateBinding (ScrollViewer.HorizontalScrollBarVisibility)}"
IsScrollChainingEnabled="{TemplateBinding (ScrollViewer.IsScrollChainingEnabled)}"
IsDeferredScrollingEnabled="{TemplateBinding (ScrollViewer.IsDeferredScrollingEnabled)}"
VerticalScrollBarVisibility="{TemplateBinding (ScrollViewer.VerticalScrollBarVisibility)}"
VerticalSnapPointsType="{TemplateBinding (ScrollViewer.VerticalSnapPointsType)}"
HorizontalSnapPointsType="{TemplateBinding (ScrollViewer.HorizontalSnapPointsType)}">
<ItemsPresenter Name="PART_ItemsPresenter"
Margin="{TemplateBinding Padding}"
ItemsPanel="{TemplateBinding ItemsPanel}" />
</ScrollViewer>
</Border>
</ControlTemplate>
</Setter>
</ControlTheme>
</ResourceDictionary>

View File

@ -0,0 +1,59 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ControlTheme x:Key="{x:Type ListBoxItem}"
TargetType="ListBoxItem">
<Setter Property="Padding"
Value="10,0" />
<Setter Property="MinHeight"
Value="{StaticResource DefaultControlHeight}" />
<Setter Property="VerticalContentAlignment"
Value="Center" />
<Setter Property="Background"
Value="{DynamicResource RegionBrush}" />
<Setter Property="BorderBrush"
Value="Transparent" />
<Setter Property="BorderThickness"
Value="0" />
<Setter Property="Margin"
Value="0,0,0,2" />
<Setter Property="Template">
<ControlTemplate>
<ContentPresenter Name="PART_ContentPresenter"
Padding="{TemplateBinding Padding}"
HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}"
VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
Content="{TemplateBinding Content}"
ContentTemplate="{TemplateBinding ContentTemplate}"
CornerRadius="{TemplateBinding CornerRadius}" />
</ControlTemplate>
</Setter>
<Style Selector="^:pointerover /template/ ContentPresenter">
<Setter Property="Background"
Value="{DynamicResource ThemeControlHighlightMidBrush}" />
</Style>
<Style Selector="^:selected /template/ ContentPresenter">
<Setter Property="Background"
Value="{DynamicResource ThemeAccentBrush4}" />
</Style>
<Style Selector="^:selected:focus /template/ ContentPresenter">
<Setter Property="Background"
Value="{DynamicResource ThemeAccentBrush3}" />
</Style>
<Style Selector="^:selected:pointerover /template/ ContentPresenter">
<Setter Property="Background"
Value="{DynamicResource ThemeAccentBrush3}" />
</Style>
<Style Selector="^:selected:focus:pointerover /template/ ContentPresenter">
<Setter Property="Background"
Value="{DynamicResource ThemeAccentBrush2}" />
</Style>
</ControlTheme>
</ResourceDictionary>

View File

@ -0,0 +1,173 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ControlTheme x:Key="{x:Type ScrollBar}"
TargetType="ScrollBar">
<Setter Property="Cursor"
Value="Arrow" />
<Style Selector="^:horizontal">
<Setter Property="Height"
Value="{DynamicResource ScrollBarThickness}" />
<Setter Property="Template">
<ControlTemplate>
<Border Background="{DynamicResource ThemeControlMidBrush}"
UseLayoutRounding="False">
<Grid ColumnDefinitions="Auto,*,Auto"
RowDefinitions="*,*,*">
<RepeatButton Name="PART_LineUpButton"
Grid.Row="0"
Grid.Column="0"
MinWidth="{DynamicResource ScrollBarThickness}"
VerticalAlignment="Center"
Classes="repeat"
Focusable="False">
<Path Data="M 4 0 L 4 8 L 0 4 Z" />
</RepeatButton>
<Track Grid.Row="1"
Grid.Column="1"
Maximum="{TemplateBinding Maximum}"
Minimum="{TemplateBinding Minimum}"
Orientation="{TemplateBinding Orientation}"
ViewportSize="{TemplateBinding ViewportSize}"
DeferThumbDrag="{TemplateBinding ScrollViewer.IsDeferredScrollingEnabled}"
Value="{TemplateBinding Value,
Mode=TwoWay}">
<Track.DecreaseButton>
<RepeatButton Name="PART_PageUpButton"
Classes="repeattrack"
Focusable="False" />
</Track.DecreaseButton>
<Track.IncreaseButton>
<RepeatButton Name="PART_PageDownButton"
Classes="repeattrack"
Focusable="False" />
</Track.IncreaseButton>
<Thumb Name="thumb" />
</Track>
<RepeatButton Name="PART_LineDownButton"
Grid.Row="2"
Grid.Column="2"
MinWidth="{DynamicResource ScrollBarThickness}"
VerticalAlignment="Center"
Classes="repeat"
Focusable="False">
<Path Data="M 0 0 L 4 4 L 0 8 Z" />
</RepeatButton>
</Grid>
</Border>
</ControlTemplate>
</Setter>
</Style>
<Style Selector="^:vertical">
<Setter Property="Width"
Value="{DynamicResource ScrollBarThickness}" />
<Setter Property="Template">
<ControlTemplate>
<Border Background="{DynamicResource ThemeControlMidBrush}"
UseLayoutRounding="False">
<Grid RowDefinitions="Auto,*,Auto">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<RepeatButton Name="PART_LineUpButton"
Grid.Row="0"
MinHeight="{DynamicResource ScrollBarThickness}"
HorizontalAlignment="Center"
Classes="repeat"
Focusable="False">
<Path Data="M 0 4 L 8 4 L 4 0 Z" />
</RepeatButton>
<Track Grid.Row="1"
Grid.Column="1"
IsDirectionReversed="True"
Maximum="{TemplateBinding Maximum}"
Minimum="{TemplateBinding Minimum}"
Orientation="{TemplateBinding Orientation}"
ViewportSize="{TemplateBinding ViewportSize}"
DeferThumbDrag="{TemplateBinding ScrollViewer.IsDeferredScrollingEnabled}"
Value="{TemplateBinding Value,
Mode=TwoWay}">
<Track.DecreaseButton>
<RepeatButton Name="PART_PageUpButton"
Classes="repeattrack"
Focusable="False" />
</Track.DecreaseButton>
<Track.IncreaseButton>
<RepeatButton Name="PART_PageDownButton"
Classes="repeattrack"
Focusable="False" />
</Track.IncreaseButton>
<Thumb Name="thumb" />
</Track>
<RepeatButton Name="PART_LineDownButton"
Grid.Row="2"
Grid.Column="2"
MinHeight="{DynamicResource ScrollBarThickness}"
HorizontalAlignment="Center"
Classes="repeat"
Focusable="False">
<Path Data="M 0 0 L 4 4 L 8 0 Z" />
</RepeatButton>
</Grid>
</Border>
</ControlTemplate>
</Setter>
</Style>
<Style Selector="^ /template/ Thumb#thumb">
<Setter Property="Background"
Value="{DynamicResource ThemeControlMidHighBrush}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<Border Background="{TemplateBinding Background}" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style Selector="^ /template/ Thumb#thumb:pointerover">
<Setter Property="Background"
Value="{DynamicResource ThemeControlHighBrush}" />
</Style>
<Style Selector="^ /template/ Thumb#thumb:pressed">
<Setter Property="Background"
Value="{DynamicResource ThemeControlVeryHighBrush}" />
</Style>
<Style Selector="^:horizontal /template/ Thumb#thumb">
<Setter Property="MinWidth"
Value="{DynamicResource ScrollBarThickness}" />
<Setter Property="Height"
Value="{DynamicResource ScrollBarThumbThickness}" />
</Style>
<Style Selector="^:vertical /template/ Thumb#thumb">
<Setter Property="MinHeight"
Value="{DynamicResource ScrollBarThickness}" />
<Setter Property="Width"
Value="{DynamicResource ScrollBarThumbThickness}" />
</Style>
<Style Selector="^ /template/ RepeatButton.repeat">
<Setter Property="Padding"
Value="2" />
<Setter Property="BorderThickness"
Value="0" />
</Style>
<Style Selector="^ /template/ RepeatButton.repeattrack">
<Setter Property="Template">
<ControlTemplate>
<Border Background="{TemplateBinding Background}" />
</ControlTemplate>
</Setter>
</Style>
<Style Selector="^ /template/ RepeatButton > Path">
<Setter Property="Fill"
Value="{DynamicResource ThemeForegroundLowBrush}" />
</Style>
<Style Selector="^ /template/ RepeatButton:pointerover > Path">
<Setter Property="Fill"
Value="{DynamicResource ThemeAccentBrush}" />
</Style>
</ControlTheme>
</ResourceDictionary>

View File

@ -0,0 +1,40 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ControlTheme x:Key="{x:Type ScrollViewer}"
TargetType="ScrollViewer">
<Setter Property="Background"
Value="Transparent" />
<Setter Property="Template">
<ControlTemplate>
<Grid ColumnDefinitions="*,Auto"
RowDefinitions="*,Auto">
<ScrollContentPresenter Name="PART_ContentPresenter"
Padding="{TemplateBinding Padding}"
HorizontalSnapPointsType="{TemplateBinding HorizontalSnapPointsType}"
VerticalSnapPointsType="{TemplateBinding VerticalSnapPointsType}"
HorizontalSnapPointsAlignment="{TemplateBinding HorizontalSnapPointsAlignment}"
VerticalSnapPointsAlignment="{TemplateBinding VerticalSnapPointsAlignment}"
Background="{TemplateBinding Background}"
ScrollViewer.IsScrollInertiaEnabled="{TemplateBinding IsScrollInertiaEnabled}">
<ScrollContentPresenter.GestureRecognizers>
<ScrollGestureRecognizer CanHorizontallyScroll="{Binding CanHorizontallyScroll, ElementName=PART_ContentPresenter}"
CanVerticallyScroll="{Binding CanVerticallyScroll, ElementName=PART_ContentPresenter}"
IsScrollInertiaEnabled="{Binding (ScrollViewer.IsScrollInertiaEnabled), ElementName=PART_ContentPresenter}" />
</ScrollContentPresenter.GestureRecognizers>
</ScrollContentPresenter>
<ScrollBar Name="PART_HorizontalScrollBar"
Grid.Row="1"
Grid.Column="0"
Orientation="Horizontal" />
<ScrollBar Name="PART_VerticalScrollBar"
Grid.Row="0"
Grid.Column="1"
Orientation="Vertical" />
<Panel Grid.Row="1"
Grid.Column="1"
Background="{DynamicResource ThemeControlMidBrush}" />
</Grid>
</ControlTemplate>
</Setter>
</ControlTheme>
</ResourceDictionary>

View File

@ -4,14 +4,24 @@
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<MergeResourceInclude Source="avares://HandyControl/Themes/Basic/Brushes.axaml" />
<MergeResourceInclude Source="avares://HandyControl/Themes/Basic/Converters.axaml" />
<MergeResourceInclude Source="avares://HandyControl/Themes/Styles/ContentControl.axaml" />
<MergeResourceInclude Source="avares://HandyControl/Themes/Styles/UserControl.axaml" />
<MergeResourceInclude Source="avares://HandyControl/Themes/Styles/Window.axaml" />
<MergeResourceInclude Source="avares://HandyControl/Themes/Styles/Button.axaml" />
<MergeResourceInclude Source="avares://HandyControl/Themes/Styles/Border.axaml" />
<MergeResourceInclude Source="avares://HandyControl/Themes/Styles/ItemsControl.axaml" />
<MergeResourceInclude Source="avares://HandyControl/Themes/Styles/TabItem.axaml" />
<MergeResourceInclude Source="avares://HandyControl/Themes/Styles/TabControl.axaml" />
<MergeResourceInclude Source="avares://HandyControl/Themes/Styles/ListBoxItem.axaml" />
<MergeResourceInclude Source="avares://HandyControl/Themes/Styles/ListBox.axaml" />
<MergeResourceInclude Source="avares://HandyControl/Themes/Styles/ScrollBar.axaml" />
<MergeResourceInclude Source="avares://HandyControl/Themes/Styles/ScrollViewer.axaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Styles.Resources>
<Style Selector=":is(UserControl)">
<Setter Property="Theme" Value="{DynamicResource {x:Type UserControl}}" />
<Setter Property="Theme"
Value="{DynamicResource {x:Type UserControl}}" />
</Style>
</Styles>

View File

@ -0,0 +1,70 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ControlTheme x:Key="{x:Type TabControl}"
TargetType="TabControl">
<Setter Property="Padding"
Value="8" />
<Setter Property="Template">
<ControlTemplate>
<Border Padding="{TemplateBinding Padding}"
HorizontalAlignment="{TemplateBinding HorizontalAlignment}"
VerticalAlignment="{TemplateBinding VerticalAlignment}"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
CornerRadius="{TemplateBinding CornerRadius}">
<DockPanel>
<ItemsPresenter Name="PART_ItemsPresenter"
ItemsPanel="{TemplateBinding ItemsPanel}" />
<ContentPresenter Name="PART_SelectedContentHost"
Margin="{TemplateBinding Padding}"
HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}"
VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}"
Content="{TemplateBinding SelectedContent}"
ContentTemplate="{TemplateBinding SelectedContentTemplate}" />
</DockPanel>
</Border>
</ControlTemplate>
</Setter>
<Style Selector="^[TabStripPlacement=Top]">
<Setter Property="Padding"
Value="0 4 0 0" />
</Style>
<Style Selector="^[TabStripPlacement=Top] /template/ ItemsPresenter#PART_ItemsPresenter">
<Setter Property="DockPanel.Dock"
Value="Top" />
</Style>
<Style Selector="^[TabStripPlacement=Bottom] /template/ ItemsPresenter#PART_ItemsPresenter">
<Setter Property="DockPanel.Dock"
Value="Bottom" />
</Style>
<Style Selector="^[TabStripPlacement=Bottom]">
<Setter Property="Padding"
Value="0 0 0 4" />
</Style>
<Style Selector="^[TabStripPlacement=Left] /template/ ItemsPresenter#PART_ItemsPresenter">
<Setter Property="DockPanel.Dock"
Value="Left" />
</Style>
<Style Selector="^[TabStripPlacement=Left] /template/ ItemsPresenter#PART_ItemsPresenter > WrapPanel">
<Setter Property="Orientation"
Value="Vertical" />
</Style>
<Style Selector="^[TabStripPlacement=Left]">
<Setter Property="Padding"
Value="4 0 0 0" />
</Style>
<Style Selector="^[TabStripPlacement=Right] /template/ ItemsPresenter#PART_ItemsPresenter">
<Setter Property="DockPanel.Dock"
Value="Right" />
</Style>
<Style Selector="^[TabStripPlacement=Right] /template/ ItemsPresenter#PART_ItemsPresenter > WrapPanel">
<Setter Property="Orientation"
Value="Vertical" />
</Style>
<Style Selector="^[TabStripPlacement=Right]">
<Setter Property="Padding"
Value="0 0 4 0" />
</Style>
</ControlTheme>
</ResourceDictionary>

View File

@ -0,0 +1,45 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ControlTheme x:Key="{x:Type TabItem}"
TargetType="TabItem">
<Setter Property="Foreground"
Value="{DynamicResource PrimaryTextBrush}" />
<Setter Property="Background"
Value="{DynamicResource RegionBrush}" />
<Setter Property="BorderBrush"
Value="{DynamicResource TitleBrush}" />
<Setter Property="Margin"
Value="0" />
<Setter Property="Padding"
Value="{StaticResource DefaultControlPadding}" />
<Setter Property="MinHeight"
Value="{StaticResource DefaultControlHeight}" />
<Setter Property="HorizontalContentAlignment"
Value="Stretch" />
<Setter Property="VerticalContentAlignment"
Value="Stretch" />
<Setter Property="Template">
<ControlTemplate TargetType="TabItem">
<Border Name="PART_LayoutRoot"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
CornerRadius="{TemplateBinding CornerRadius}"
Padding="{TemplateBinding Padding}">
<Panel>
<ContentPresenter Name="PART_ContentPresenter"
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
Content="{TemplateBinding Header}"
ContentTemplate="{TemplateBinding HeaderTemplate}"
RecognizesAccessKey="True" />
<Border Name="PART_SelectedPipe"
Background="{DynamicResource TabItemHeaderSelectedPipeFill}"
CornerRadius="{DynamicResource ControlCornerRadius}"
IsVisible="False" />
</Panel>
</Border>
</ControlTemplate>
</Setter>
</ControlTheme>
</ResourceDictionary>

View File

@ -1,10 +1,10 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ControlTheme x:Key="{x:Type UserControl}" TargetType="UserControl">
<ControlTheme x:Key="{x:Type UserControl}"
TargetType="UserControl">
<Setter Property="Template">
<ControlTemplate TargetType="UserControl">
<ContentPresenter
Name="PART_ContentPresenter"
<ContentPresenter Name="PART_ContentPresenter"
Padding="{TemplateBinding Padding}"
HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}"
VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}"

View File

@ -1,18 +1,27 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:ClassModifier="internal">
<ControlTheme x:Key="{x:Type Window}" TargetType="Window">
<Setter Property="Background" Value="{DynamicResource SecondaryRegionBrush}"/>
<Setter Property="TransparencyBackgroundFallback" Value="{DynamicResource RegionBrush}" />
<Setter Property="TopLevel.SystemBarColor" Value="{DynamicResource RegionBrush}"/>
<Setter Property="Foreground" Value="{DynamicResource PrimaryTextBrush}"/>
<Setter Property="FontSize" Value="13"/>
<ControlTheme x:Key="{x:Type Window}"
TargetType="Window">
<Setter Property="Background"
Value="{DynamicResource SecondaryRegionBrush}" />
<Setter Property="TransparencyBackgroundFallback"
Value="{DynamicResource RegionBrush}" />
<Setter Property="TopLevel.SystemBarColor"
Value="{DynamicResource RegionBrush}" />
<Setter Property="Foreground"
Value="{DynamicResource PrimaryTextBrush}" />
<Setter Property="FontSize"
Value="13" />
<Setter Property="Template">
<ControlTemplate TargetType="Window">
<Panel>
<Border Name="PART_TransparencyFallback" IsHitTestVisible="False" />
<Border Background="{TemplateBinding Background}" IsHitTestVisible="False" />
<Panel Background="Transparent" Margin="{TemplateBinding WindowDecorationMargin}" />
<Border Name="PART_TransparencyFallback"
IsHitTestVisible="False" />
<Border Background="{TemplateBinding Background}"
IsHitTestVisible="False" />
<Panel Background="Transparent"
Margin="{TemplateBinding WindowDecorationMargin}" />
<VisualLayerManager>
<VisualLayerManager.ChromeOverlayLayer>
<TitleBar />
@ -22,7 +31,7 @@
Content="{TemplateBinding Content}"
Margin="{TemplateBinding Padding}"
HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}"
VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}"/>
VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}" />
</VisualLayerManager>
</Panel>
</ControlTemplate>

View File

@ -0,0 +1,93 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using Avalonia;
using Avalonia.Data.Converters;
using Avalonia.Media;
namespace HandyControl.Tools.Converter;
public class BorderClipConverter : IMultiValueConverter
{
private static readonly Geometry Empty = new StreamGeometry();
public object Convert(IList<object?> values, Type targetType, object? parameter, CultureInfo culture)
{
if (values is not [double width, double height, CornerRadius radius])
{
return AvaloniaProperty.UnsetValue;
}
if (width < double.Epsilon || height < double.Epsilon)
{
return Empty;
}
return new PathGeometry
{
Figures = new PathFigures
{
new()
{
StartPoint = new Point(radius.TopLeft, 0),
Segments = CreateSegments(width, height, radius),
},
}
};
}
private static PathSegments CreateSegments(double width, double height, CornerRadius radius)
{
return new PathSegments
{
new LineSegment
{
Point = new Point(width - radius.TopRight, 0),
},
new ArcSegment
{
Point = new Point(width, radius.TopRight),
Size = new Size(radius.TopRight, radius.TopRight),
RotationAngle = 90,
IsLargeArc = false,
SweepDirection = SweepDirection.Clockwise,
},
new LineSegment
{
Point = new Point(width, height - radius.BottomRight),
},
new ArcSegment
{
Point = new Point(width - radius.BottomRight, height),
Size = new Size(radius.BottomRight, radius.BottomRight),
RotationAngle = 90,
IsLargeArc = false,
SweepDirection = SweepDirection.Clockwise,
},
new LineSegment
{
Point = new Point(radius.BottomLeft, height),
},
new ArcSegment
{
Point = new Point(0, height - radius.BottomLeft),
Size = new Size(radius.BottomLeft, radius.BottomLeft),
RotationAngle = 90,
IsLargeArc = false,
SweepDirection = SweepDirection.Clockwise,
},
new LineSegment
{
Point = new Point(0, radius.TopLeft),
},
new ArcSegment
{
Point = new Point(radius.TopLeft, 0),
Size = new Size(radius.TopLeft, radius.TopLeft),
RotationAngle = 90,
IsLargeArc = false,
SweepDirection = SweepDirection.Clockwise,
},
};
}
}

View File

@ -0,0 +1,22 @@
using Avalonia;
namespace HandyControl.Tools;
public class ResourceHelper
{
public static T? GetResource<T>(string key)
{
if (Application.Current is null)
{
return default;
}
if (Application.Current.TryGetResource(key, Application.Current.ActualThemeVariant, out var value) &&
value is T resource)
{
return resource;
}
return default;
}
}

View File

@ -37,6 +37,10 @@ EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Microsoft.Expression.Interactions", "Shared\Microsoft.Expression.Interactions\Microsoft.Expression.Interactions.shproj", "{3531857C-28FC-4E0F-82D9-BFBB70740E04}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Avalonia", "Avalonia", "{A490C3E9-0CC2-46EE-BE9A-95D3DCBF211D}"
ProjectSection(SolutionItems) = preProject
Avalonia\.editorconfig = Avalonia\.editorconfig
Avalonia\Directory.Build.props = Avalonia\Directory.Build.props
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HandyControl_Avalonia", "Avalonia\HandyControl_Avalonia\HandyControl_Avalonia.csproj", "{34D39209-C744-41AA-91D6-C15C68E2A1D9}"
EndProject
@ -45,54 +49,70 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug-Avalonia|Any CPU = Debug-Avalonia|Any CPU
Debug-Net40|Any CPU = Debug-Net40|Any CPU
Release|Any CPU = Release|Any CPU
Release-Avalonia|Any CPU = Release-Avalonia|Any CPU
Release-Net40|Any CPU = Release-Net40|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DC966E3D-BCFF-4652-98CF-070E5494749A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DC966E3D-BCFF-4652-98CF-070E5494749A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DC966E3D-BCFF-4652-98CF-070E5494749A}.Debug-Avalonia|Any CPU.ActiveCfg = Debug|Any CPU
{DC966E3D-BCFF-4652-98CF-070E5494749A}.Debug-Net40|Any CPU.ActiveCfg = Debug|Any CPU
{DC966E3D-BCFF-4652-98CF-070E5494749A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DC966E3D-BCFF-4652-98CF-070E5494749A}.Release|Any CPU.Build.0 = Release|Any CPU
{DC966E3D-BCFF-4652-98CF-070E5494749A}.Release-Avalonia|Any CPU.ActiveCfg = Release|Any CPU
{DC966E3D-BCFF-4652-98CF-070E5494749A}.Release-Net40|Any CPU.ActiveCfg = Release|Any CPU
{9A7B52E6-94BB-4E7E-BB6A-7CF6761B79A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9A7B52E6-94BB-4E7E-BB6A-7CF6761B79A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9A7B52E6-94BB-4E7E-BB6A-7CF6761B79A7}.Debug-Avalonia|Any CPU.ActiveCfg = Debug|Any CPU
{9A7B52E6-94BB-4E7E-BB6A-7CF6761B79A7}.Debug-Net40|Any CPU.ActiveCfg = Debug|Any CPU
{9A7B52E6-94BB-4E7E-BB6A-7CF6761B79A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9A7B52E6-94BB-4E7E-BB6A-7CF6761B79A7}.Release|Any CPU.Build.0 = Release|Any CPU
{9A7B52E6-94BB-4E7E-BB6A-7CF6761B79A7}.Release-Avalonia|Any CPU.ActiveCfg = Release|Any CPU
{9A7B52E6-94BB-4E7E-BB6A-7CF6761B79A7}.Release-Net40|Any CPU.ActiveCfg = Release|Any CPU
{32204503-2EF0-4681-AE13-AA1FEB6C658A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{32204503-2EF0-4681-AE13-AA1FEB6C658A}.Debug-Avalonia|Any CPU.ActiveCfg = Debug|Any CPU
{32204503-2EF0-4681-AE13-AA1FEB6C658A}.Debug-Net40|Any CPU.ActiveCfg = Debug|Any CPU
{32204503-2EF0-4681-AE13-AA1FEB6C658A}.Debug-Net40|Any CPU.Build.0 = Debug|Any CPU
{32204503-2EF0-4681-AE13-AA1FEB6C658A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{32204503-2EF0-4681-AE13-AA1FEB6C658A}.Release-Avalonia|Any CPU.ActiveCfg = Release|Any CPU
{32204503-2EF0-4681-AE13-AA1FEB6C658A}.Release-Net40|Any CPU.ActiveCfg = Release|Any CPU
{32204503-2EF0-4681-AE13-AA1FEB6C658A}.Release-Net40|Any CPU.Build.0 = Release|Any CPU
{D8AE88F8-C36B-4D10-A7F9-22FFCFBA5231}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D8AE88F8-C36B-4D10-A7F9-22FFCFBA5231}.Debug-Avalonia|Any CPU.ActiveCfg = Debug|Any CPU
{D8AE88F8-C36B-4D10-A7F9-22FFCFBA5231}.Debug-Net40|Any CPU.ActiveCfg = Debug|Any CPU
{D8AE88F8-C36B-4D10-A7F9-22FFCFBA5231}.Debug-Net40|Any CPU.Build.0 = Debug|Any CPU
{D8AE88F8-C36B-4D10-A7F9-22FFCFBA5231}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D8AE88F8-C36B-4D10-A7F9-22FFCFBA5231}.Release-Avalonia|Any CPU.ActiveCfg = Release|Any CPU
{D8AE88F8-C36B-4D10-A7F9-22FFCFBA5231}.Release-Net40|Any CPU.ActiveCfg = Release|Any CPU
{D8AE88F8-C36B-4D10-A7F9-22FFCFBA5231}.Release-Net40|Any CPU.Build.0 = Release|Any CPU
{D8A4748C-0500-4F63-BC47-3506658C68F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D8A4748C-0500-4F63-BC47-3506658C68F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D8A4748C-0500-4F63-BC47-3506658C68F7}.Debug-Avalonia|Any CPU.ActiveCfg = Debug|Any CPU
{D8A4748C-0500-4F63-BC47-3506658C68F7}.Debug-Net40|Any CPU.ActiveCfg = Debug|Any CPU
{D8A4748C-0500-4F63-BC47-3506658C68F7}.Debug-Net40|Any CPU.Build.0 = Debug|Any CPU
{D8A4748C-0500-4F63-BC47-3506658C68F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D8A4748C-0500-4F63-BC47-3506658C68F7}.Release|Any CPU.Build.0 = Release|Any CPU
{D8A4748C-0500-4F63-BC47-3506658C68F7}.Release-Avalonia|Any CPU.ActiveCfg = Release|Any CPU
{D8A4748C-0500-4F63-BC47-3506658C68F7}.Release-Net40|Any CPU.ActiveCfg = Release|Any CPU
{D8A4748C-0500-4F63-BC47-3506658C68F7}.Release-Net40|Any CPU.Build.0 = Release|Any CPU
{34D39209-C744-41AA-91D6-C15C68E2A1D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{34D39209-C744-41AA-91D6-C15C68E2A1D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{34D39209-C744-41AA-91D6-C15C68E2A1D9}.Debug-Avalonia|Any CPU.ActiveCfg = Debug|Any CPU
{34D39209-C744-41AA-91D6-C15C68E2A1D9}.Debug-Avalonia|Any CPU.Build.0 = Debug|Any CPU
{34D39209-C744-41AA-91D6-C15C68E2A1D9}.Debug-Net40|Any CPU.ActiveCfg = Debug|Any CPU
{34D39209-C744-41AA-91D6-C15C68E2A1D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{34D39209-C744-41AA-91D6-C15C68E2A1D9}.Release|Any CPU.Build.0 = Release|Any CPU
{34D39209-C744-41AA-91D6-C15C68E2A1D9}.Release-Avalonia|Any CPU.ActiveCfg = Release|Any CPU
{34D39209-C744-41AA-91D6-C15C68E2A1D9}.Release-Avalonia|Any CPU.Build.0 = Release|Any CPU
{34D39209-C744-41AA-91D6-C15C68E2A1D9}.Release-Net40|Any CPU.ActiveCfg = Release|Any CPU
{99CCAF7C-F9A1-4C54-A5F0-B231E7F7AE66}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{99CCAF7C-F9A1-4C54-A5F0-B231E7F7AE66}.Debug|Any CPU.Build.0 = Debug|Any CPU
{99CCAF7C-F9A1-4C54-A5F0-B231E7F7AE66}.Debug-Avalonia|Any CPU.ActiveCfg = Debug|Any CPU
{99CCAF7C-F9A1-4C54-A5F0-B231E7F7AE66}.Debug-Avalonia|Any CPU.Build.0 = Debug|Any CPU
{99CCAF7C-F9A1-4C54-A5F0-B231E7F7AE66}.Debug-Net40|Any CPU.ActiveCfg = Debug|Any CPU
{99CCAF7C-F9A1-4C54-A5F0-B231E7F7AE66}.Release|Any CPU.ActiveCfg = Release|Any CPU
{99CCAF7C-F9A1-4C54-A5F0-B231E7F7AE66}.Release|Any CPU.Build.0 = Release|Any CPU
{99CCAF7C-F9A1-4C54-A5F0-B231E7F7AE66}.Release-Avalonia|Any CPU.ActiveCfg = Release|Any CPU
{99CCAF7C-F9A1-4C54-A5F0-B231E7F7AE66}.Release-Avalonia|Any CPU.Build.0 = Release|Any CPU
{99CCAF7C-F9A1-4C54-A5F0-B231E7F7AE66}.Release-Net40|Any CPU.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution

View File

@ -17,7 +17,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="MvvmLightLibs" Version="5.4.1.1" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\Shared\HandyControlDemo_Shared\Data\MessageToken.cs">

View File

@ -19,7 +19,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="MvvmLightLibsStd10" Version="5.4.1.1" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\Shared\HandyControlDemo_Shared\Data\MessageToken.cs">

View File

@ -10,7 +10,9 @@ namespace HandyControlDemo.Tools;
internal class HighlightingProvider
{
public static HighlightingProvider Default = new Lazy<HighlightingProvider>(() => new HighlightingProvider()).Value;
private static readonly Lazy<HighlightingProvider> DefaultInternal = new(() => new HighlightingProvider());
public static HighlightingProvider Default => DefaultInternal.Value;
protected static readonly Lazy<IHighlightingDefinition> DefaultDefinition = new(() => HighlightingManager.Instance.GetDefinition("C#"));

View File

@ -44,7 +44,7 @@
<StackPanel Orientation="Horizontal">
<Rectangle Width="16" Height="16" Fill="{Binding ImageBrush}"/>
<hc:HighlightTextBlock Margin="6,0,0,0" SourceText="{ex:Lang Key={Binding Name}}" QueriesText="{Binding QueriesText}"/>
<Path Visibility="{Binding IsNew,Converter={StaticResource Boolean2VisibilityConverter}}" VerticalAlignment="Center" Data="{StaticResource NewGeometry}" Stretch="Uniform" Margin="10,0,0,0" Width="30" Height="14" Fill="{DynamicResource DangerBrush}"/>
<Path Visibility="{Binding IsNew,Converter={StaticResource Boolean2VisibilityConverter}}" VerticalAlignment="Center" Data="{StaticResource NewGeometry}" Stretch="Uniform" Margin="10,0,0,0" Width="30" Height="14" Fill="{DynamicResource AccentBrush}"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>

View File

@ -8,6 +8,11 @@ namespace HandyControlDemo.ViewModel;
public class ViewModelLocator
{
private static readonly Lazy<ViewModelLocator> InstanceInternal = new(() =>
Application.Current.TryFindResource("Locator") as ViewModelLocator, isThreadSafe: true);
public static ViewModelLocator Instance => InstanceInternal.Value;
public ViewModelLocator()
{
SimpleIoc.Default.Register<DataService>();
@ -41,9 +46,6 @@ public class ViewModelLocator
SimpleIoc.Default.Register<InputElementDemoViewModel>();
}
public static ViewModelLocator Instance = new Lazy<ViewModelLocator>(() =>
Application.Current.TryFindResource("Locator") as ViewModelLocator).Value;
#region Vm
public MainViewModel Main => SimpleIoc.Default.GetInstance<MainViewModel>();

View File

@ -84,8 +84,8 @@
<RowDefinition x:Name="RowDefinition0" Height="Auto" />
<RowDefinition x:Name="RowDefinition1" Height="*" />
</Grid.RowDefinitions>
<TabPanel x:Name="headerPanel" Background="Transparent" Grid.Column="0" IsItemsHost="true" Margin="0" Grid.Row="0"/>
<Border x:Name="contentPanel" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{DynamicResource BorderBrush}" Background="{TemplateBinding Background}" Grid.Column="0" Grid.Row="1">
<TabPanel x:Name="headerPanel" Background="Transparent" IsItemsHost="true" Margin="0" Grid.Row="0"/>
<Border x:Name="contentPanel" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{DynamicResource BorderBrush}" Background="{TemplateBinding Background}" Grid.Row="1">
<ContentPresenter x:Name="PART_SelectedContentHost" ContentSource="SelectedContent" Margin="0" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
</Border>
</Grid>

View File

@ -20,7 +20,9 @@ public class ConfigHelper : INotifyPropertyChanged
}
public static ConfigHelper Instance = new Lazy<ConfigHelper>(() => new ConfigHelper()).Value;
private static readonly Lazy<ConfigHelper> InstanceInternal = new(() => new ConfigHelper(), isThreadSafe: true);
public static ConfigHelper Instance => InstanceInternal.Value;
private XmlLanguage _lang = XmlLanguage.GetLanguage("zh-cn");