Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Add Portuguese translation #113

Merged
merged 1 commit into from
Oct 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
56 changes: 56 additions & 0 deletions RetroBar/Languages/português.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="clr-namespace:System;assembly=mscorlib">

<s:String x:Key="retrobar_properties">Propriedades da RetroBar</s:String>
<s:String x:Key="taskbar_options">Barra de tarefas</s:String>
<BitmapImage x:Key="properties_95" UriSource="../Resources/pt/properties.png" />
<BitmapImage x:Key="properties_95_noclock" UriSource="../Resources/pt/properties_noclock.png" />
<s:String x:Key="autostart">Iniciar automaticamente no _logon</s:String>
<s:String x:Key="language_text">I_dioma:</s:String>
<s:String x:Key="language_tip">Selecionar o idioma a ser usado.</s:String>
<s:String x:Key="theme_text">_Tema:</s:String>
<s:String x:Key="theme_tip">Instale temas na pasta Themes.</s:String>
<s:String x:Key="location_text">_Local:</s:String>
<s:String x:Key="location_tip">Mudar o local da barra de tarefas na tela.</s:String>
<x:Array x:Key="location_values" Type="s:String">
<s:String>Esquerda</s:String>
<s:String>Superior</s:String>
<s:String>Direita</s:String>
<s:String>Inferior</s:String>
</x:Array>
<s:String x:Key="allow_font_smoothing">_Permitir suavização das fontes</s:String>
<s:String x:Key="collapse_tray_icons">Ocultar ícones _inativos</s:String>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, this is fine since as you said, you're using the XP strings for this one...

<s:String x:Key="show_clock">Mostrar o _relógio</s:String>
<s:String x:Key="quick_launch">Mostrar barra 'Iniciali_zação rápida'</s:String>
<s:String x:Key="select_location">_Selecionar local...</s:String>
<s:String x:Key="quick_launch_folder">Inicialização rápida - Escolha uma pasta</s:String>
<s:String x:Key="ok_dialog">OK</s:String>

<s:String x:Key="start_text">Iniciar</s:String>
<s:String x:Key="start_text_xp">Iniciar</s:String>
<s:String x:Key="start_button_tip_98">Clique aqui para começar.</s:String>
<s:String x:Key="start_button_tip">Clique aqui para começar</s:String>
<s:String x:Key="start_button_tip_vista">Iniciar</s:String>

<s:String x:Key="retrobar_title">Barra de tarefas RetroBar</s:String>
<s:String x:Key="show_taskman">_Gerenciador de tarefas</s:String>
<s:String x:Key="tray_properties">P_ropriedades</s:String>
<s:String x:Key="update_available">_Atualização disponível...</s:String>
<s:String x:Key="exit_retrobar">_Sair da RetroBar</s:String>

<s:String x:Key="restore">_Restaurar</s:String>
<s:String x:Key="move">_Mover</s:String>
<s:String x:Key="size">_Tamanho</s:String>
<s:String x:Key="minimize">Mi_nimizar</s:String>
<s:String x:Key="maximize">Ma_ximizar</s:String>
<s:String x:Key="close">_Fechar</s:String>

<s:String x:Key="show_hidden">Mostrar ícones ocultos</s:String>
<s:String x:Key="hide">Ocultar</s:String>
<s:String x:Key="close_tip">Fechar</s:String>

<s:String x:Key="set_time">Aj_ustar data/hora</s:String>

<s:String x:Key="open_folder">&amp;Abrir pasta</s:String>
</ResourceDictionary>
Binary file added RetroBar/Resources/pt/properties.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added RetroBar/Resources/pt/properties_noclock.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions RetroBar/RetroBar.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<ItemGroup>
<Page Remove="Languages\español.xaml" />
<Page Remove="Languages\français.xaml" />
<Page Remove="Languages\português.xaml" />
<Page Remove="Themes\Watercolor.xaml" />
<Page Remove="Themes\Windows 2000.xaml" />
<Page Remove="Themes\Windows 95-98.xaml" />
Expand All @@ -30,6 +31,11 @@
</ItemGroup>

<ItemGroup>
<None Include="Languages\português.xaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<SubType>Designer</SubType>
<Generator></Generator>
</None>
<None Include="Languages\français.xaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<SubType>Designer</SubType>
Expand Down Expand Up @@ -101,6 +107,12 @@
<None Update="Resources\es\properties_noclock.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Resources\pt\properties.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Resources\pt\properties_noclock.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Resources\startxpblue.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
Expand Down