329 lines
7.9 KiB
Dart
329 lines
7.9 KiB
Dart
// ignore: unused_import
|
|
import 'package:intl/intl.dart' as intl;
|
|
import 'app_localizations.dart';
|
|
|
|
// ignore_for_file: type=lint
|
|
|
|
/// The translations for Portuguese (`pt`).
|
|
class AppLocalizationsPt extends AppLocalizations {
|
|
AppLocalizationsPt([String locale = 'pt']) : super(locale);
|
|
|
|
@override
|
|
String get appTitle => 'FocusBuddy';
|
|
|
|
@override
|
|
String get startFocusing => 'Começar a focar';
|
|
|
|
@override
|
|
String minutes(int count) {
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'minutos',
|
|
one: 'minuto',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String minutesValue(int count, Object minutes) {
|
|
return '$count $minutes';
|
|
}
|
|
|
|
@override
|
|
String get tapDistractionAnytime =>
|
|
'Toque em \'Me distraí\'\na qualquer momento\n—sem culpa';
|
|
|
|
@override
|
|
String get history => 'Histórico';
|
|
|
|
@override
|
|
String get settings => 'Configurações';
|
|
|
|
@override
|
|
String get iGotDistracted => 'Me distraí';
|
|
|
|
@override
|
|
String get pause => 'Pausar';
|
|
|
|
@override
|
|
String get resume => 'Continuar';
|
|
|
|
@override
|
|
String get stopSession => 'Parar sessão';
|
|
|
|
@override
|
|
String get whatPulledYouAway => 'O que te distraiu?';
|
|
|
|
@override
|
|
String get skipThisTime => 'Pular desta vez';
|
|
|
|
@override
|
|
String get stopEarly => 'Parar mais cedo?';
|
|
|
|
@override
|
|
String stopEarlyMessage(int minutes, Object minuteText) {
|
|
return 'Tudo bem — você focou por $minutes $minuteText!';
|
|
}
|
|
|
|
@override
|
|
String get keepGoing => 'Continuar';
|
|
|
|
@override
|
|
String get yesStop => 'Sim, parar';
|
|
|
|
@override
|
|
String get distractionEncouragement => 'Acontece. Vamos voltar gentilmente.';
|
|
|
|
@override
|
|
String get focusComplete => 'Sessão de foco completa!';
|
|
|
|
@override
|
|
String get youFocusedFor => 'Você focou por';
|
|
|
|
@override
|
|
String totalToday(int minutes) {
|
|
return 'Total hoje: $minutes min';
|
|
}
|
|
|
|
@override
|
|
String distractionsCount(int count, Object times) {
|
|
return 'Distrações: $count $times';
|
|
}
|
|
|
|
@override
|
|
String times(int count) {
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'vezes',
|
|
one: 'vez',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String get startAnother => 'Começar outra';
|
|
|
|
@override
|
|
String get viewHistory => 'Ver histórico';
|
|
|
|
@override
|
|
String get yourFocusJourney => 'Sua jornada de foco';
|
|
|
|
@override
|
|
String get noFocusSessionsYet => 'Ainda não há sessões de foco';
|
|
|
|
@override
|
|
String get startFirstSession =>
|
|
'Comece sua primeira sessão\npara ver seu progresso aqui!';
|
|
|
|
@override
|
|
String get today => 'Hoje';
|
|
|
|
@override
|
|
String sessions(int count) {
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: '$count sessões',
|
|
one: '$count sessão',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String get completed => 'Concluída';
|
|
|
|
@override
|
|
String get stoppedEarly => 'Parada cedo';
|
|
|
|
@override
|
|
String distractions(int count) {
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'distrações',
|
|
one: 'distração',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String get focusSettings => 'Configurações de foco';
|
|
|
|
@override
|
|
String get defaultFocusDuration => 'Duração padrão do foco';
|
|
|
|
@override
|
|
String get defaultLabel => 'Padrão';
|
|
|
|
@override
|
|
String get about => 'Sobre';
|
|
|
|
@override
|
|
String get privacyPolicy => 'Política de Privacidade';
|
|
|
|
@override
|
|
String get aboutFocusBuddy => 'Sobre FocusBuddy';
|
|
|
|
@override
|
|
String get resetOnboarding => 'Redefinir introdução';
|
|
|
|
@override
|
|
String get version => 'Versão 1.0.0 (MVP)';
|
|
|
|
@override
|
|
String get privacyPolicyTitle => 'Política de Privacidade';
|
|
|
|
@override
|
|
String get privacyPolicyContent =>
|
|
'FocusBuddy funciona 100% offline. Não coletamos seu nome, e-mail, localização ou dados de uso. Todas as sessões ficam no seu dispositivo.\n\nNão há sincronização na nuvem, sistema de conta ou rastreamento de análise.\n\nPara a política de privacidade completa, visite:\n[URL do seu site]/privacy';
|
|
|
|
@override
|
|
String get close => 'Fechar';
|
|
|
|
@override
|
|
String get aboutTitle => 'Sobre FocusBuddy';
|
|
|
|
@override
|
|
String get aboutSubtitle =>
|
|
'Um temporizador de foco gentil para mentes neurodivergentes';
|
|
|
|
@override
|
|
String get aboutQuote =>
|
|
'\"Foco não é sobre nunca se distrair — é sobre voltar gentilmente toda vez que você se distrai.\"';
|
|
|
|
@override
|
|
String get aboutFeatures =>
|
|
'✨ Sem punição por distrações\n💚 Encorajamento em vez de crítica\n🔒 100% offline e privado\n🌱 Feito com carinho';
|
|
|
|
@override
|
|
String get resetOnboardingTitle => 'Redefinir introdução?';
|
|
|
|
@override
|
|
String get resetOnboardingMessage =>
|
|
'Isso mostrará as telas de introdução novamente quando você reiniciar o aplicativo.';
|
|
|
|
@override
|
|
String get cancel => 'Cancelar';
|
|
|
|
@override
|
|
String get reset => 'Redefinir';
|
|
|
|
@override
|
|
String get onboardingReset =>
|
|
'Introdução redefinida. Reinicie o aplicativo para vê-la novamente.';
|
|
|
|
@override
|
|
String get onboarding1Title => 'Foque sem culpa';
|
|
|
|
@override
|
|
String get onboarding1Description =>
|
|
'Este aplicativo é diferente — ele não vai punir você por perder o foco.\n\nPerfeito para TDAH, ansiedade ou qualquer pessoa que ache os temporizadores tradicionais muito severos.';
|
|
|
|
@override
|
|
String get onboarding2Title => 'Toque quando se distrair';
|
|
|
|
@override
|
|
String get onboarding2Description =>
|
|
'Nós vamos gentilmente lembrá-lo de voltar.\n\nSem vergonha. Sem estresse. Apenas um lembrete amigável.';
|
|
|
|
@override
|
|
String get onboarding3Title => 'Acompanhe seu progresso';
|
|
|
|
@override
|
|
String get onboarding3Description =>
|
|
'Veja como você está melhorando, uma sessão por vez.\n\nCada distração é apenas um dado — não um fracasso.';
|
|
|
|
@override
|
|
String get skip => 'Pular';
|
|
|
|
@override
|
|
String get next => 'Próximo';
|
|
|
|
@override
|
|
String get getStarted => 'Começar';
|
|
|
|
@override
|
|
String get notificationFocusInProgress => 'Sessão de foco em andamento';
|
|
|
|
@override
|
|
String notificationRemaining(String time) {
|
|
return '$time restante';
|
|
}
|
|
|
|
@override
|
|
String get notificationFocusCompleteTitle => '🎉 Sessão de foco completa!';
|
|
|
|
@override
|
|
String notificationFocusCompleteBodyNoDistractions(
|
|
int minutes,
|
|
Object minuteText,
|
|
) {
|
|
return 'Você focou por $minutes $minuteText sem distrações!';
|
|
}
|
|
|
|
@override
|
|
String notificationFocusCompleteBody(int minutes, Object minuteText) {
|
|
return 'Você focou por $minutes $minuteText. Ótimo esforço!';
|
|
}
|
|
|
|
@override
|
|
String get distractionPhoneNotification => 'Telefone / Notificação';
|
|
|
|
@override
|
|
String get distractionSocialMedia => 'Redes sociais';
|
|
|
|
@override
|
|
String get distractionThoughts => 'Pensamentos / Devaneio';
|
|
|
|
@override
|
|
String get distractionOther => 'Outro';
|
|
|
|
@override
|
|
String get language => 'Idioma';
|
|
|
|
@override
|
|
String get selectLanguage => 'Selecionar idioma';
|
|
|
|
@override
|
|
String get english => 'English';
|
|
|
|
@override
|
|
String get chinese => '中文';
|
|
|
|
@override
|
|
String get japanese => '日本語';
|
|
|
|
@override
|
|
String get korean => '한국어';
|
|
|
|
@override
|
|
String get spanish => 'Español';
|
|
|
|
@override
|
|
String get german => 'Deutsch';
|
|
|
|
@override
|
|
String get french => 'Français';
|
|
|
|
@override
|
|
String get portuguese => 'Português';
|
|
|
|
@override
|
|
String get russian => 'Русский';
|
|
|
|
@override
|
|
String get hindi => 'हिन्दी';
|
|
|
|
@override
|
|
String get indonesian => 'Bahasa Indonesia';
|
|
|
|
@override
|
|
String get italian => 'Italiano';
|
|
|
|
@override
|
|
String get arabic => 'العربية';
|
|
}
|