mirror of
https://gitcode.com/gh_mirrors/se/Semi.Avalonia
synced 2026-06-07 10:28:21 +08:00
331141197d
* feat: enhance navigation and UI structure in MainView and Application. * fix: using ContentPreseter and add HeaderTemplate. * feat: add locale resource for navigation drawer toggle button text. * feat: add customizations for DrawerPageDemo. * fix: fix DrawerPage title vertical alignment to Center. * Update DrawerPageDemo.axaml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update DrawerPageDemo.axaml.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix: fix bottom bar styles. * fix: update border background color in DrawerPageDemo.axaml. --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
30 lines
1.7 KiB
XML
30 lines
1.7 KiB
XML
<ResourceDictionary
|
|
x:Class="Semi.Avalonia.Locale.it_ch"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<!-- DatePicker -->
|
|
<x:String x:Key="STRING_DATEPICKER_DAY_TEXT">giorno</x:String>
|
|
<x:String x:Key="STRING_DATEPICKER_MONTH_TEXT">mese</x:String>
|
|
<x:String x:Key="STRING_DATEPICKER_YEAR_TEXT">anno</x:String>
|
|
<!-- TimePicker -->
|
|
<x:String x:Key="STRING_TIMEPICKER_HOUR_TEXT">ora</x:String>
|
|
<x:String x:Key="STRING_TIMEPICKER_MINUTE_TEXT">minuto</x:String>
|
|
<x:String x:Key="STRING_TIMEPICKER_SECOND_TEXT">secondo</x:String>
|
|
<!-- TextBox/SelectableTextBox flyout -->
|
|
<x:String x:Key="STRING_MENU_CUT">Taglia</x:String>
|
|
<x:String x:Key="STRING_MENU_COPY">Copia</x:String>
|
|
<x:String x:Key="STRING_MENU_PASTE">Incolla</x:String>
|
|
<!-- DrawerPage -->
|
|
<x:String x:Key="STRING_DRAWERPAGE_TOGGLE_NAVIGATION_DRAWER">Attiva/disattiva riquadro di navigazione</x:String>
|
|
<!-- ManagedFileChooser -->
|
|
<x:String x:Key="STRING_CHOOSER_FILE_NAME">Nome file</x:String>
|
|
<x:String x:Key="STRING_CHOOSER_SHOW_HIDDEN_FILES">Mostra file nascosti</x:String>
|
|
<x:String x:Key="STRING_CHOOSER_DIALOG_OK">OK</x:String>
|
|
<x:String x:Key="STRING_CHOOSER_DIALOG_CANCEL">Annulla</x:String>
|
|
<x:String x:Key="STRING_CHOOSER_NAME_COLUMN">Nome</x:String>
|
|
<x:String x:Key="STRING_CHOOSER_DATEMODIFIED_COLUMN">Data Modificata</x:String>
|
|
<x:String x:Key="STRING_CHOOSER_TYPE_COLUMN">Tipo</x:String>
|
|
<x:String x:Key="STRING_CHOOSER_SIZE_COLUMN">Dimensione</x:String>
|
|
<x:String x:Key="STRING_CHOOSER_PROMPT_FILE_ALREADY_EXISTS">{0} è già esistente. Sovrascriverlo?</x:String>
|
|
</ResourceDictionary>
|