github.com/kotovmak/go-admin@v1.1.1/modules/language/pt-BR.go (about)

     1  // Copyright 2019 GoAdmin Core Team. All rights reserved.
     2  // Use of this source code is governed by a Apache-2.0 style
     3  // license that can be found in the LICENSE file.
     4  
     5  package language
     6  
     7  import "strings"
     8  
     9  var ptbr = LangSet{
    10  	"managers":         "Gerentes",
    11  	"name":             "Nome",
    12  	"nickname":         "Apelido",
    13  	"role":             "Role",
    14  	"createdat":        "criadoEm",
    15  	"updatedat":        "atualizadoEm",
    16  	"path":             "caminho",
    17  	"new":              "Novo",
    18  	"filter":           "Filtro",
    19  	"action":           "Ação",
    20  	"toggle dropdown":  "Toggle Dropdown",
    21  	"delete":           "Excluir",
    22  	"refresh":          "Atualizar",
    23  	"expand":           "Expandir",
    24  	"collapse":         "Recolher",
    25  	"back":             "Voltar",
    26  	"reset":            "Redefinir",
    27  	"save":             "Salvar",
    28  	"edit":             "Editar",
    29  	"operation":        "Operação",
    30  	"method":           "Método",
    31  	"input":            "entrada",
    32  	"online":           "Online",
    33  	"setting":          "Configuração",
    34  	"sign out":         "Sair",
    35  	"all":              "Tudo",
    36  	"confirm password": "Confirmar a Senha",
    37  	"search":           "Procurar",
    38  	"remove":           "Remover",
    39  
    40  	"goadmin is now running. \nrunning in \"debug\" mode. switch to \"release\" mode in production.\n\n": "GoAdmin agora está em execução. \nExecutando no modo \"debug \". Mude para o modo de \"release\" em produção. \n\n",
    41  
    42  	"wrong goadmin version, theme %s required goadmin version are %s":    "wrong GoAdmin version, theme %s required GoAdmin version are %s",
    43  	"wrong theme version, goadmin %s required version of theme %s is %s": "wrong Theme version, GoAdmin %s required version of theme %s is %s",
    44  
    45  	"adapter is nil, import the default adapter or use addadapter method add the adapter": "adapter is nil, import the default adapter or use AddAdapter method add the adapter",
    46  
    47  	"are you sure to delete":               "Você tem certeza que quer deletar",
    48  	"yes":                                  "sim",
    49  	"got it":                               "entendi",
    50  	"cancel":                               "cancelar",
    51  	"refresh succeeded":                    "Atualizado com sucesso",
    52  	"reload succeeded":                     "Recarregado com sucesso",
    53  	"all method if empty":                  "Todo método é vazio",
    54  	"password does not match":              "Senha não confere",
    55  	"should be unique":                     "Deve ser único",
    56  	"slug exists":                          "Slug existe",
    57  	"no corresponding options?":            "Sem opções correspondentes ?",
    58  	"create here.":                         "Crie aqui.",
    59  	"use for login":                        "Use para login",
    60  	"use to display":                       "Use para exibir",
    61  	"a path a line, without global prefix": "Um caminho uma linha",
    62  	"slug or http_path or name should not be empty": "slug ou http_path ou nome não deve estar vazio",
    63  	"no roles":          "sem roles",
    64  	"fixed the sidebar": "Barra lateral fixada",
    65  	"enter fullscreen":  "Entrar em tela cheia",
    66  	"exit fullscreen":   "Sair da tela inteira",
    67  
    68  	"permission manage": "Gerenciamento de permissão",
    69  	"menus manage":      "Gerenciar menu",
    70  	"roles manage":      "Gerenciar roles",
    71  	"operation log":     "Log de operação",
    72  
    73  	"continue editing":  "Continue editando",
    74  	"continue creating": "Continue criando",
    75  
    76  	"browse":     "Navegar",
    77  	"avatar":     "Avatar",
    78  	"password":   "Senha",
    79  	"username":   "Nome do usuário",
    80  	"slug":       "Slug",
    81  	"permission": "Permissão",
    82  	"userid":     "UserID",
    83  	"content":    "Conteúdo",
    84  	"parent":     "Pai",
    85  	"icon":       "Ícone",
    86  	"uri":        "Uri",
    87  
    88  	"detail": "Detalhe",
    89  
    90  	"admin":     "Admin",
    91  	"users":     "Users",
    92  	"roles":     "Roles",
    93  	"menu":      "Menu",
    94  	"dashboard": "Dashboard",
    95  	"home":      "Home",
    96  
    97  	"initialize configuration":        "Inicializando configuração",
    98  	"initialize navigation buttons":   "Inicializando botões de navegação",
    99  	"initialize plugins":              "Inicializando plugins",
   100  	"initialize database connections": "Inicializando conexões de banco de dados",
   101  	"initialize success":              "Inicialização feita com sucesso🍺🍺",
   102  
   103  	"not found":      "Não encontrado",
   104  	"internal error": "Erro interno",
   105  	"unauthorized":   "Não autorizado",
   106  	"plugin setting": "Configuração de Plugin",
   107  
   108  	"plugins":          "Plugins",
   109  	"plugin store":     "Loja de Plugins",
   110  	"get more plugins": "Mais plugins",
   111  	"uninstalled":      "Desinstalado",
   112  
   113  	"second":  "segundo",
   114  	"seconds": "segundos",
   115  	"minute":  "minuto",
   116  	"minutes": "minutos",
   117  	"hour":    "hora",
   118  	"hours":   "horass",
   119  	"day":     "dia",
   120  	"days":    "dias",
   121  	"week":    "semana",
   122  	"weeks":   "semanas",
   123  	"month":   "mês",
   124  	"months":  "meses",
   125  	"year":    "ano",
   126  	"years":   "anos",
   127  
   128  	"config.domain":          "Domínio do site",
   129  	"config.language":        "Idioma do site",
   130  	"config.url prefix":      "URL Prefix",
   131  	"config.theme":           "Tema",
   132  	"config.title":           "Título",
   133  	"config.index url":       "Home URL",
   134  	"config.login url":       "Login URL",
   135  	"config.env":             "Env",
   136  	"config.color scheme":    "Color Scheme",
   137  	"config.cdn url":         "CDN Asset URL",
   138  	"config.login title":     "Título de Login",
   139  	"config.auth user table": "Auth User Table",
   140  	"config.extra":           "Extra Configuration",
   141  	"config.store":           "File Store Setting",
   142  	"config.databases":       "Database Setting",
   143  
   144  	"config.general":      "General",
   145  	"config.log":          "Log",
   146  	"config.site setting": "Site Settings",
   147  	"config.custom":       "Customize",
   148  	"config.debug":        "Debug Mode",
   149  	"config.site off":     "Site Offline",
   150  	"config.true":         "On",
   151  	"config.false":        "Off",
   152  
   153  	"config.logo":                        "Logo",
   154  	"config.mini logo":                   "Mini Logo",
   155  	"config.bootstrap file path":         "Bootstrap File Path",
   156  	"config.go mod file path":            "go.mod File Path",
   157  	"config.session life time":           "Session Life Time",
   158  	"config.custom head html":            "Head HTML",
   159  	"config.custom foot html":            "Foot HTML",
   160  	"config.custom 404 html":             "404 Page",
   161  	"config.custom 403 html":             "403 Page",
   162  	"config.custom 500 html":             "500 Page",
   163  	"config.hide config center entrance": "Hide Config Button",
   164  	"config.hide app info entrance":      "Hide App Info Button",
   165  	"config.hide tool entrance":          "Hide Tool Button",
   166  	"config.footer info":                 "Footer Info",
   167  	"config.login logo":                  "Login Logo",
   168  	"config.no limit login ip":           "No Limit Login Multi IPs",
   169  	"config.operation log off":           "Operation Log Off",
   170  	"config.allow delete operation log":  "Allow Delete Operation Log",
   171  	"config.animation type":              "Animation Type",
   172  	"config.animation duration":          "Animation Duration(s)",
   173  	"config.animation delay":             "Animation Delay(s)",
   174  	"config.file upload engine":          "File Upload Engine",
   175  
   176  	"config.logger rotate":             "Log Rotate Settings",
   177  	"config.logger rotate max size":    "Max Size(m)",
   178  	"config.logger rotate max backups": "Max Buckups",
   179  	"config.logger rotate max age":     "Max Age(day)",
   180  	"config.logger rotate compress":    "Compress",
   181  
   182  	"config.info log path":         "Info Log File Path",
   183  	"config.error log path":        "Error Log File Path",
   184  	"config.access log path":       "Access Log File Path",
   185  	"config.info log off":          "Info Log Off",
   186  	"config.error log off":         "Error Log Off",
   187  	"config.access log off":        "Access Log Off",
   188  	"config.access assets log off": "Access Assets Log Off",
   189  	"config.sql log on":            "Abrir log SQL",
   190  	"config.log level":             "Nível",
   191  
   192  	"config.logger rotate encoder":                "Configurações do codificador de registro",
   193  	"config.logger rotate encoder time key":       "Chave de tempo",
   194  	"config.logger rotate encoder level key":      "Chave de Nível",
   195  	"config.logger rotate encoder name key":       "Chave do Nome",
   196  	"config.logger rotate encoder caller key":     "Tecla do chamador",
   197  	"config.logger rotate encoder message key":    "Chave de mensagem",
   198  	"config.logger rotate encoder stacktrace key": "Chave Stacktrace",
   199  	"config.logger rotate encoder level":          "Codificador de Nível",
   200  	"config.logger rotate encoder time":           "Codificador de tempo",
   201  	"config.logger rotate encoder duration":       "Codificador de duração",
   202  	"config.logger rotate encoder caller":         "Codificador de Chamadas",
   203  	"config.logger rotate encoder encoding":       "Formato de saída",
   204  
   205  	"config.capital":        "Maiúsculo",
   206  	"config.capitalcolor":   "Maiúsculo com cor",
   207  	"config.lowercase":      "Minúsculas",
   208  	"config.lowercasecolor": "Minúsculas com cor",
   209  
   210  	"config.seconds":     "Segundos",
   211  	"config.nanosecond":  "Nanossegundo",
   212  	"config.microsecond": "Microssegundo",
   213  	"config.millisecond": "Milissegundo",
   214  
   215  	"config.full path":  "Caminho completo",
   216  	"config.short path": "Caminho curto",
   217  
   218  	"config.do not modify when you have not set up all assets": "Não modifique quando você não configurou todos os assets",
   219  	"config.it will work when theme is adminlte":               "Funcionará quando o tema for adminlte",
   220  
   221  	"config.language." + CN:                  "Chinese",
   222  	"config.language." + EN:                  "English",
   223  	"config.language." + JP:                  "Japanese",
   224  	"config.language." + strings.ToLower(TC): "Traditional Chinese",
   225  	"config.language." + PTBR:                "Brazilian Portuguese",
   226  
   227  	"config.modify site config":         "Modificação da configuração do site",
   228  	"config.modify site config success": "modificado com successo",
   229  	"config.modify site config fail":    "modificação falhou",
   230  
   231  	"system.system info":     "Informações do sistema e do aplicativo",
   232  	"system.application":     "Informações do aplicativo",
   233  	"system.application run": "Informações de execução de aplicativos",
   234  	"system.system":          "Informação do sistema",
   235  
   236  	"system.process_id":                           "Process ID",
   237  	"system.golang_version":                       "Golang Version",
   238  	"system.server_uptime":                        "Server Uptime",
   239  	"system.current_goroutine":                    "Current Goroutines",
   240  	"system.current_memory_usage":                 "Current Memory Usage",
   241  	"system.total_memory_allocated":               "Total Memory Allocated",
   242  	"system.memory_obtained":                      "Memory Obtained",
   243  	"system.pointer_lookup_times":                 "Pointer Lookup Times",
   244  	"system.memory_allocate_times":                "Memory Allocate Times",
   245  	"system.memory_free_times":                    "Memory Free Times",
   246  	"system.current_heap_usage":                   "Current Heap Usage",
   247  	"system.heap_memory_obtained":                 "Heap Memory Obtained",
   248  	"system.heap_memory_idle":                     "Heap Memory Idle",
   249  	"system.heap_memory_in_use":                   "Heap Memory In Use",
   250  	"system.heap_memory_released":                 "Heap Memory Released",
   251  	"system.heap_objects":                         "Heap Objects",
   252  	"system.bootstrap_stack_usage":                "Bootstrap Stack Usage",
   253  	"system.stack_memory_obtained":                "Stack Memory Obtained",
   254  	"system.mspan_structures_usage":               "MSpan Structures Usage",
   255  	"system.mspan_structures_obtained":            "MSpan Structures Obtained",
   256  	"system.mcache_structures_usage":              "MCache Structures Usage",
   257  	"system.mcache_structures_obtained":           "MCache Structures Obtained",
   258  	"system.profiling_bucket_hash_table_obtained": "Profiling Bucket Hash Table Obtained",
   259  	"system.gc_metadata_obtained":                 "GC Metadata Obtained",
   260  	"system.other_system_allocation_obtained":     "Other System Allocation Obtained",
   261  	"system.next_gc_recycle":                      "Next GC Recycle",
   262  	"system.last_gc_time":                         "Since Last GC Time",
   263  	"system.total_gc_time":                        "Total GC Pause",
   264  	"system.total_gc_pause":                       "Total GC Pause",
   265  	"system.last_gc_pause":                        "Last GC Pause",
   266  	"system.gc_times":                             "GC Times",
   267  
   268  	"system.cpu_logical_core": "CPU Core Lógico",
   269  	"system.cpu_core":         "CPU Core Físico",
   270  	"system.os_platform":      "OS Plataforma",
   271  	"system.os_family":        "OS Familia",
   272  	"system.os_version":       "OS Versão",
   273  	"system.load1":            "Load1",
   274  	"system.load5":            "Load5",
   275  	"system.load15":           "Load15",
   276  	"system.mem_total":        "Memória Total",
   277  	"system.mem_available":    "Memória disponível",
   278  	"system.mem_used":         "Memória usada",
   279  
   280  	"system.app_name":         "Nome da aplicação",
   281  	"system.go_admin_version": "Versão da aplicação",
   282  	"system.theme_name":       "Tema",
   283  	"system.theme_version":    "Versão do Tema",
   284  
   285  	"tool.tool":                   "Ferramenta",
   286  	"tool.table":                  "Tabela",
   287  	"tool.connection":             "Conexão",
   288  	"tool.package":                "Pacote",
   289  	"tool.output":                 "Caminho de saída",
   290  	"tool.output path is empty":   "O caminho de saída está vazio",
   291  	"tool.field":                  "Campo",
   292  	"tool.title":                  "Título",
   293  	"tool.field name":             "Nome",
   294  	"tool.db type":                "Tipo de banco de dados",
   295  	"tool.form type":              "Tipo de Formulário",
   296  	"tool.generate table model":   "Modelo de tabela gerado",
   297  	"tool.primarykey":             "Chave primária",
   298  	"tool.field filterable":       "Filtrável",
   299  	"tool.field sortable":         "Classificável",
   300  	"tool.yes":                    "Sim",
   301  	"tool.no":                     "Não",
   302  	"tool.hide":                   "Esconder",
   303  	"tool.show":                   "Mostrar",
   304  	"tool.generate success":       "Gerado com sucesso",
   305  	"tool.hide filter area":       "Esconder a Área do Filtro",
   306  	"tool.use absolute path":      "Use o caminho absoluto",
   307  	"tool.display":                "Exibição",
   308  	"tool.basic info":             "Básico",
   309  	"tool.table info":             "Tabela",
   310  	"tool.form info":              "Formulário",
   311  	"tool.field editable":         "Editável",
   312  	"tool.info field editable":    "Editável",
   313  	"tool.extra import package":   "Pacote de Importação",
   314  	"tool.field can add":          "Pode adicionar",
   315  	"tool.field default":          "Default",
   316  	"tool.filter area":            "Area de filtro",
   317  	"tool.new button":             "Botão Novo",
   318  	"tool.export button":          "Botão exportar",
   319  	"tool.edit button":            "Botão editar",
   320  	"tool.delete button":          "Botão excluir",
   321  	"tool.detail button":          "Botão Detalhe",
   322  	"tool.filter button":          "Botão Filtro",
   323  	"tool.row selector":           "Seletor de linha",
   324  	"tool.pagination":             "Paginação",
   325  	"tool.query info":             "Informações de consulta",
   326  	"tool.filter form layout":     "Layout do formulário de filtro",
   327  	"tool.continue edit checkbox": "Continue Edição Checkbox",
   328  	"tool.continue new checkbox":  "Continuar Novo Checkbox",
   329  	"tool.reset button":           "Botão Redefinir",
   330  	"tool.back button":            "Botão Voltar",
   331  	"tool.generate":               "Gerado",
   332  	"tool.generated tables":       "Tabelas geradas",
   333  	"tool.description":            "Descrição",
   334  	"tool.label":                  "Etiqueta",
   335  	"tool.image":                  "Imagem",
   336  	"tool.bool":                   "Bool",
   337  	"tool.link":                   "Link",
   338  	"tool.fileSize":               "Tamanho do Arquivo",
   339  	"tool.date":                   "Data",
   340  	"tool.icon":                   "Ícone",
   341  	"tool.dot":                    "Ponto",
   342  	"tool.progressBar":            "Barra de progresso",
   343  	"tool.loading":                "Carregando",
   344  	"tool.downLoadable":           "DownLoadable",
   345  	"tool.copyable":               "Copiável",
   346  	"tool.carousel":               "Carrossel",
   347  	"tool.qrcode":                 "Qrcode",
   348  	"tool.field hide":             "Esconder",
   349  	"tool.field display":          "Exibição",
   350  	"tool.table permission":       "Gerar permissões",
   351  	"tool.extra code":             "Código Extra",
   352  
   353  	"tool.field display normal":     "Normal",
   354  	"tool.field diplay hide":        "Esconder",
   355  	"tool.field diplay edit hide":   "Editar Esconder",
   356  	"tool.field diplay create hide": "Criar Esconder",
   357  
   358  	"tool.generate table model success": "sucesso ao gerar",
   359  	"tool.generate table model fail":    "falha ao gerar",
   360  
   361  	"tool.detail display":             "Exibição",
   362  	"tool.detail info":                "Informação detalhada",
   363  	"tool.follow list page":           "Seguir a página da lista",
   364  	"tool.inherit from list page":     "Herdar da página da lista",
   365  	"tool.independent from list page": "Independente da página da lista",
   366  
   367  	"generator.query":                 "Query",
   368  	"generator.show edit form page":   "Mostrar formulário de edição",
   369  	"generator.show create form page": "Mostrar formulário de criação",
   370  	"generator.edit":                  "Editar",
   371  	"generator.create":                "Criar",
   372  	"generator.delete":                "Excluir",
   373  	"generator.export":                "Exportar",
   374  
   375  	"plugin.plugin":                         "Plugin",
   376  	"plugin.plugin detail":                  "Detalhe do plugin",
   377  	"plugin.introduction":                   "Introdução",
   378  	"plugin.website":                        "Website",
   379  	"plugin.version":                        "Versão",
   380  	"plugin.created at":                     "Criado Em",
   381  	"plugin.updated at":                     "Atualizado Em",
   382  	"plugin.provided by %s":                 "Fornecido por %s",
   383  	"plugin.upgrade":                        "Upgrade",
   384  	"plugin.install":                        "Instalar",
   385  	"plugin.download":                       "Download",
   386  	"plugin.buy":                            "Comprar",
   387  	"plugin.downloading":                    "Baixando",
   388  	"plugin.info":                           "Detalhe",
   389  	"plugin.login":                          "Login",
   390  	"plugin.login to goadmin member system": "Faça login no sistema de membros GoAdmin",
   391  	"plugin.account":                        "Conta",
   392  	"plugin.password":                       "Senha",
   393  	"plugin.learn more":                     "Saber mais",
   394  
   395  	"plugin.no account? click %s here %s to register.":    "Sem conta? Clique %saqui%s para se registrar.",
   396  	"plugin.download fail, wrong name":                    "Falha no download, nome errado",
   397  	"plugin.change to debug mode first":                   "Mude para o modo debug primeiro",
   398  	"plugin.download fail, plugin not exist":              "O download falhou, o plugin não existe",
   399  	"plugin.download fail":                                "Falha no download",
   400  	"plugin.golang develop environment does not exist":    "O ambiente de desenvolvimento de Golang não existe",
   401  	"plugin.download success, restart to install":         "Download bem-sucedido, reinicie para instalar",
   402  	"plugin.restart to install":                           "Reinicie para instalar",
   403  	"plugin.can not connect to the goadmin remote server": "Falha ao conectar o servidor remoto GoAdmin, verifique sua conexão de rede.",
   404  
   405  	"admin.basic admin": "Admin básico",
   406  	"admin.a built-in plugins of goadmin which help you to build a crud manager platform quickly.": "Plug-ins integrados ao GoAdmin que ajudam você a construir uma plataforma de gerenciamento crud rapidamente.",
   407  	"admin.official": "Oficial",
   408  }