github.com/kotovmak/go-admin@v1.1.1/modules/language/jp.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 jp = LangSet{
    10  	"managers":  "管理者",
    11  	"name":      "ユーザー名",
    12  	"nickname":  "ニックネーム",
    13  	"role":      "ロール",
    14  	"createdat": "作成日時",
    15  	"updatedat": "更新日時",
    16  	"path":      "パス",
    17  	"submit":    "提出",
    18  	"filter":    "フィルター",
    19  
    20  	"new":             "新規",
    21  	"export":          "出力",
    22  	"action":          "操作",
    23  	"toggle dropdown": "プルダウン",
    24  	"delete":          "削除",
    25  	"refresh":         "更新",
    26  	"back":            "戻る",
    27  	"reset":           "リセット",
    28  	"save":            "保存",
    29  	"edit":            "編集",
    30  	"expand":          "展開",
    31  	"collapse":        "折り畳み",
    32  	"online":          "オンライン",
    33  	"setting":         "設定",
    34  	"sign out":        "ログアウト",
    35  	"home":            "ホーム",
    36  	"all":             "全て",
    37  	"more":            "更に",
    38  	"remove":          "削除する",
    39  
    40  	"permission manage": "権限管理",
    41  	"menus manage":      "メニュー管理",
    42  	"roles manage":      "ロール管理",
    43  	"operation log":     "操作履歴",
    44  	"method":            "メソッド",
    45  	"input":             "入力",
    46  	"operation":         "操作",
    47  	"menu name":         "表示名",
    48  	"reload succeeded":  "再読み込み完了",
    49  	"search":            "検索",
    50  
    51  	"permission denied": "権限がありません",
    52  	"error":             "エラー",
    53  	"current page":      "現在のページ",
    54  
    55  	"are you sure to delete": "本当に削除しますか",
    56  	"yes":                    "はい",
    57  	"got it":                 "はい",
    58  	"cancel":                 "キャンセル",
    59  	"refresh succeeded":      "更新に成功しました",
    60  	"edit fail":              "編集に失敗しました",
    61  	"create fail":            "作成に失敗しました",
    62  	"confirm password":       "パスワード(確認)",
    63  	"all method if empty":    "空の場合は全メソッド",
    64  
    65  	"detail": "詳細",
    66  
    67  	"avatar":     "アバター",
    68  	"password":   "パスワード",
    69  	"username":   "ユーザー名",
    70  	"slug":       "スラッグ",
    71  	"permission": "権限",
    72  	"userid":     "ユーザーID",
    73  	"content":    "内容",
    74  	"parent":     "親メニュー",
    75  	"icon":       "アイコン",
    76  	"uri":        "URL",
    77  
    78  	"login":      "ログイン",
    79  	"login fail": "ログイン失敗",
    80  
    81  	"admin":     "運営管理",
    82  	"users":     "ユーザー",
    83  	"roles":     "ロール",
    84  	"menu":      "メニュー",
    85  	"dashboard": "ダッシュボード",
    86  
    87  	"goadmin is now running. \nrunning in \"debug\" mode. switch to \"release\" mode in production.\n\n": "GoAdmin is now running. \nRunning in \"debug\" mode. Switch to \"release\" mode in production.\n\n",
    88  
    89  	"wrong goadmin version, theme %s required goadmin version are %s":    "wrong GoAdmin version, theme %s required GoAdmin version are %s",
    90  	"wrong theme version, goadmin %s required version of theme %s is %s": "wrong Theme version, GoAdmin %s required version of theme %s is %s",
    91  
    92  	"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",
    93  
    94  	"username and password can not be empty":        "アカウントまたパスワードが正しく入力されていることを確認してください",
    95  	"operation not allow":                           "この操作を実行するアクセス許可が必要です",
    96  	"password does not match":                       "パスワードが正しくありません",
    97  	"should be unique":                              "重複しないことを確認してください",
    98  	"slug exists":                                   "スラッグが既に存在していないことを確認してください",
    99  	"no corresponding options?":                     "対応できるオプションがありません",
   100  	"create here.":                                  "ここに新規作成",
   101  	"use for login":                                 "ログインに使う",
   102  	"use to display":                                "表示に使う",
   103  	"a path a line, without global prefix":          "パスを1行ずつ入力してください",
   104  	"slug or http_path or name should not be empty": "スラッグ、http_pathまたユーザー名が正しく入力されていることを確認してください",
   105  	"no roles":                                      "ロールなし",
   106  
   107  	"initialize configuration":        "Initialize configuration",
   108  	"initialize navigation buttons":   "Initialize navigation buttons",
   109  	"initialize plugins":              "Initialize plugins",
   110  	"initialize database connections": "Initialize database connections",
   111  	"initialize success":              "Initialize success🍺🍺",
   112  
   113  	"not found":      "Not found",
   114  	"internal error": "Internal error",
   115  	"unauthorized":   "Unauthorized",
   116  
   117  	"plugins":          "Plugins",
   118  	"plugin store":     "Plugin Store",
   119  	"get more plugins": "Get more plugins",
   120  	"uninstalled":      "Uninstalled",
   121  	"plugin setting":   "Plugin Setting",
   122  
   123  	"second":  "second",
   124  	"seconds": "seconds",
   125  	"minute":  "minute",
   126  	"minutes": "minutes",
   127  	"hour":    "hour",
   128  	"hours":   "hours",
   129  	"day":     "day",
   130  	"days":    "days",
   131  	"week":    "week",
   132  	"weeks":   "weeks",
   133  	"month":   "month",
   134  	"months":  "months",
   135  	"year":    "year",
   136  	"years":   "years",
   137  
   138  	"config.domain":          "Website Domain",
   139  	"config.language":        "Website Language",
   140  	"config.url prefix":      "URL Prefix",
   141  	"config.theme":           "Theme",
   142  	"config.title":           "Title",
   143  	"config.index url":       "Home URL",
   144  	"config.login url":       "Login URL",
   145  	"config.env":             "Env",
   146  	"config.color scheme":    "Color Scheme",
   147  	"config.cdn url":         "CDN Asset URL",
   148  	"config.login title":     "Login Title",
   149  	"config.auth user table": "Auth User Table",
   150  	"config.extra":           "Extra Configuration",
   151  	"config.store":           "File Store Setting",
   152  	"config.databases":       "Database Setting",
   153  
   154  	"config.general":      "General",
   155  	"config.log":          "Log",
   156  	"config.site setting": "Site Settings",
   157  	"config.custom":       "Customize",
   158  	"config.debug":        "Debug Mode",
   159  	"config.site off":     "Site Offline",
   160  	"config.true":         "On",
   161  	"config.false":        "Off",
   162  
   163  	"config.logo":                        "Logo",
   164  	"config.mini logo":                   "Mini Logo",
   165  	"config.bootstrap file path":         "Bootstrap File Path",
   166  	"config.go mod file path":            "go.mod File Path",
   167  	"config.session life time":           "Session Life Time",
   168  	"config.custom head html":            "Head HTML",
   169  	"config.custom foot html":            "Foot HTML",
   170  	"config.custom 404 html":             "404 Page",
   171  	"config.custom 403 html":             "403 Page",
   172  	"config.custom 500 html":             "500 Page",
   173  	"config.hide config center entrance": "Hide Config Button",
   174  	"config.hide app info entrance":      "Hide App Info Button",
   175  	"config.hide tool entrance":          "Hide Tool Button",
   176  	"config.hide plugin entrance":        "Hide Plugin List Button",
   177  	"config.footer info":                 "Footer Info",
   178  	"config.login logo":                  "Login Logo",
   179  	"config.no limit login ip":           "No Limit Login Multi IPs",
   180  	"config.operation log off":           "Operation Log Off",
   181  	"config.allow delete operation log":  "Allow Delete Operation Log",
   182  	"config.animation type":              "Animation Type",
   183  	"config.animation duration":          "Animation Duration(s)",
   184  	"config.animation delay":             "Animation Delay(s)",
   185  	"config.file upload engine":          "File Upload Engine",
   186  
   187  	"config.logger rotate":             "Log Rotate Settings",
   188  	"config.logger rotate max size":    "Max Size(m)",
   189  	"config.logger rotate max backups": "Max Buckups",
   190  	"config.logger rotate max age":     "Max Age(day)",
   191  	"config.logger rotate compress":    "Compress",
   192  
   193  	"config.info log path":         "Info Log File Path",
   194  	"config.error log path":        "Error Log File Path",
   195  	"config.access log path":       "Access Log File Path",
   196  	"config.info log off":          "Info Log Off",
   197  	"config.error log off":         "Error Log Off",
   198  	"config.access log off":        "Access Log Off",
   199  	"config.access assets log off": "Access Assets Log Off",
   200  	"config.sql log on":            "Open SQL Log",
   201  	"config.log level":             "Level",
   202  
   203  	"config.logger rotate encoder":                "Log Encoder Settings",
   204  	"config.logger rotate encoder time key":       "Time Key",
   205  	"config.logger rotate encoder level key":      "Level Key",
   206  	"config.logger rotate encoder name key":       "Name Key",
   207  	"config.logger rotate encoder caller key":     "Caller Key",
   208  	"config.logger rotate encoder message key":    "Message Key",
   209  	"config.logger rotate encoder stacktrace key": "Stacktrace Key",
   210  	"config.logger rotate encoder level":          "Level Encoder",
   211  	"config.logger rotate encoder time":           "Time Encoder",
   212  	"config.logger rotate encoder duration":       "Duration Encoder",
   213  	"config.logger rotate encoder caller":         "Caller Encoder",
   214  	"config.logger rotate encoder encoding":       "Output Format",
   215  
   216  	"config.capital":        "Capital",
   217  	"config.capitalcolor":   "Capital with color",
   218  	"config.lowercase":      "Lowercase",
   219  	"config.lowercasecolor": "Lowercase with color",
   220  
   221  	"config.seconds":     "Seconds",
   222  	"config.nanosecond":  "Nanosecond",
   223  	"config.microsecond": "Microsecond",
   224  	"config.millisecond": "Millisecond",
   225  
   226  	"config.full path":  "Full path",
   227  	"config.short path": "Short path",
   228  
   229  	"config.do not modify when you have not set up all assets": "Do not modify when you have not set up all assets",
   230  	"config.it will work when theme is adminlte":               "It will work when theme is adminlte",
   231  
   232  	"config.language." + CN:                  "Chinese",
   233  	"config.language." + EN:                  "English",
   234  	"config.language." + JP:                  "Japanese",
   235  	"config.language." + strings.ToLower(TC): "Traditional Chinese",
   236  	"config.language." + PTBR:                "Brazilian Portuguese",
   237  
   238  	"config.modify site config":         "Site Configuration Modification",
   239  	"config.modify site config success": "modified success",
   240  	"config.modify site config fail":    "modified failed",
   241  
   242  	"system.system info":     "System And Application Info",
   243  	"system.application":     "Application Info",
   244  	"system.application run": "Applications Running Info",
   245  	"system.system":          "System Info",
   246  
   247  	"system.process_id":                           "Process ID",
   248  	"system.golang_version":                       "Golang Version",
   249  	"system.server_uptime":                        "Server Uptime",
   250  	"system.current_goroutine":                    "Current Goroutines",
   251  	"system.current_memory_usage":                 "Current Memory Usage",
   252  	"system.total_memory_allocated":               "Total Memory Allocated",
   253  	"system.memory_obtained":                      "Memory Obtained",
   254  	"system.pointer_lookup_times":                 "Pointer Lookup Times",
   255  	"system.memory_allocate_times":                "Memory Allocate Times",
   256  	"system.memory_free_times":                    "Memory Free Times",
   257  	"system.current_heap_usage":                   "Current Heap Usage",
   258  	"system.heap_memory_obtained":                 "Heap Memory Obtained",
   259  	"system.heap_memory_idle":                     "Heap Memory Idle",
   260  	"system.heap_memory_in_use":                   "Heap Memory In Use",
   261  	"system.heap_memory_released":                 "Heap Memory Released",
   262  	"system.heap_objects":                         "Heap Objects",
   263  	"system.bootstrap_stack_usage":                "Bootstrap Stack Usage",
   264  	"system.stack_memory_obtained":                "Stack Memory Obtained",
   265  	"system.mspan_structures_usage":               "MSpan Structures Usage",
   266  	"system.mspan_structures_obtained":            "MSpan Structures Obtained",
   267  	"system.mcache_structures_usage":              "MCache Structures Usage",
   268  	"system.mcache_structures_obtained":           "MCache Structures Obtained",
   269  	"system.profiling_bucket_hash_table_obtained": "Profiling Bucket Hash Table Obtained",
   270  	"system.gc_metadata_obtained":                 "GC Metadata Obtained",
   271  	"system.other_system_allocation_obtained":     "Other System Allocation Obtained",
   272  	"system.next_gc_recycle":                      "Next GC Recycle",
   273  	"system.last_gc_time":                         "Since Last GC Time",
   274  	"system.total_gc_time":                        "Total GC Pause",
   275  	"system.total_gc_pause":                       "Total GC Pause",
   276  	"system.last_gc_pause":                        "Last GC Pause",
   277  	"system.gc_times":                             "GC Times",
   278  
   279  	"system.cpu_logical_core": "CPU Logical Core",
   280  	"system.cpu_core":         "CPU Physical Core",
   281  	"system.os_platform":      "OS Platform",
   282  	"system.os_family":        "OS Family",
   283  	"system.os_version":       "OS Version",
   284  	"system.load1":            "Load1",
   285  	"system.load5":            "Load5",
   286  	"system.load15":           "Load15",
   287  	"system.mem_total":        "Total Memory",
   288  	"system.mem_available":    "Available Memory",
   289  	"system.mem_used":         "Used Memory",
   290  
   291  	"system.app_name":         "App Name",
   292  	"system.go_admin_version": "App Version",
   293  	"system.theme_name":       "Theme",
   294  	"system.theme_version":    "Theme Version",
   295  
   296  	"tool.tool":                   "Tool",
   297  	"tool.table":                  "Table",
   298  	"tool.connection":             "Connection",
   299  	"tool.package":                "Package",
   300  	"tool.output":                 "Output Path",
   301  	"tool.output path is empty":   "Output path is empty",
   302  	"tool.field":                  "Field",
   303  	"tool.title":                  "Title",
   304  	"tool.field name":             "Name",
   305  	"tool.db type":                "Database Type",
   306  	"tool.form type":              "Form Type",
   307  	"tool.generate table model":   "Generate Table Model",
   308  	"tool.primarykey":             "Primary Key",
   309  	"tool.field filterable":       "Filterable",
   310  	"tool.field sortable":         "Sortable",
   311  	"tool.yes":                    "Yes",
   312  	"tool.no":                     "No",
   313  	"tool.hide":                   "Hide",
   314  	"tool.show":                   "Show",
   315  	"tool.generate success":       "Generate Success",
   316  	"tool.hide filter area":       "Hide Filter Area",
   317  	"tool.use absolute path":      "Use absolute path",
   318  	"tool.display":                "Display",
   319  	"tool.basic info":             "Basic",
   320  	"tool.table info":             "Table",
   321  	"tool.form info":              "Form",
   322  	"tool.field editable":         "Editable",
   323  	"tool.info field editable":    "Editable",
   324  	"tool.field can add":          "Can Add",
   325  	"tool.field default":          "Default",
   326  	"tool.filter area":            "Filter Area",
   327  	"tool.new button":             "New Button",
   328  	"tool.extra import package":   "Import Package",
   329  	"tool.export button":          "Export Button",
   330  	"tool.edit button":            "Edit Button",
   331  	"tool.delete button":          "Delete Button",
   332  	"tool.detail button":          "Detail Button",
   333  	"tool.filter button":          "Filter Button",
   334  	"tool.row selector":           "Row Selector",
   335  	"tool.pagination":             "Pagination",
   336  	"tool.query info":             "Query Info",
   337  	"tool.filter form layout":     "Filter Form Layout",
   338  	"tool.continue edit checkbox": "Continue Edit Checkbox",
   339  	"tool.continue new checkbox":  "Continue New Checkbox",
   340  	"tool.reset button":           "Reset Button",
   341  	"tool.back button":            "Back Button",
   342  	"tool.generate":               "Generate",
   343  	"tool.generated tables":       "Generated Tables",
   344  	"tool.description":            "Description",
   345  	"tool.label":                  "Label",
   346  	"tool.image":                  "Image",
   347  	"tool.bool":                   "Bool",
   348  	"tool.link":                   "Link",
   349  	"tool.fileSize":               "File Size",
   350  	"tool.date":                   "Date",
   351  	"tool.icon":                   "Icon",
   352  	"tool.dot":                    "Dot",
   353  	"tool.progressBar":            "ProgressBar",
   354  	"tool.loading":                "Loading",
   355  	"tool.downLoadable":           "DownLoadable",
   356  	"tool.copyable":               "Copyable",
   357  	"tool.carousel":               "Carousel",
   358  	"tool.qrcode":                 "Qrcode",
   359  	"tool.field hide":             "Hide",
   360  	"tool.field display":          "Display",
   361  	"tool.table permission":       "Generate Permissions",
   362  	"tool.extra code":             "Extra Code",
   363  
   364  	"tool.field display normal":     "Normal",
   365  	"tool.field diplay hide":        "Hide",
   366  	"tool.field diplay edit hide":   "Edit Hide",
   367  	"tool.field diplay create hide": "Create Hide",
   368  
   369  	"tool.detail display":             "Display",
   370  	"tool.detail info":                "Detail Info",
   371  	"tool.follow list page":           "Follow List Page",
   372  	"tool.inherit from list page":     "Inherit From List Page",
   373  	"tool.independent from list page": "Independent From List Page",
   374  
   375  	"tool.generate table model success": "generate success",
   376  	"tool.generate table model fail":    "generate fail",
   377  
   378  	"generator.query":                 "Query",
   379  	"generator.show edit form page":   "Show Edit Form Page",
   380  	"generator.show create form page": "Show Create Form Page",
   381  	"generator.edit":                  "Edit",
   382  	"generator.create":                "Create",
   383  	"generator.delete":                "Delete",
   384  	"generator.export":                "Export",
   385  
   386  	"plugin.plugin":                         "Plugin",
   387  	"plugin.plugin detail":                  "Plugin Detail",
   388  	"plugin.introduction":                   "Introduction",
   389  	"plugin.website":                        "Website",
   390  	"plugin.version":                        "Version",
   391  	"plugin.created at":                     "Created At",
   392  	"plugin.updated at":                     "Updated At",
   393  	"plugin.provided by %s":                 "Provided by %s",
   394  	"plugin.upgrade":                        "Upgrade",
   395  	"plugin.install":                        "Install",
   396  	"plugin.info":                           "Detail",
   397  	"plugin.download":                       "Download",
   398  	"plugin.buy":                            "Buy",
   399  	"plugin.downloading":                    "Downloading",
   400  	"plugin.login":                          "Login",
   401  	"plugin.login to goadmin member system": "Login to GoAdmin member system",
   402  	"plugin.account":                        "Account",
   403  	"plugin.password":                       "Password",
   404  	"plugin.learn more":                     "Learn more",
   405  
   406  	"plugin.no account? click %s here %s to register.":    "No account?Click %shere%s to register。",
   407  	"plugin.download fail, wrong name":                    "Download fail, wrong name",
   408  	"plugin.change to debug mode first":                   "Change to debug mode first",
   409  	"plugin.download fail, plugin not exist":              "Download fail, plugin not exist",
   410  	"plugin.download fail":                                "Download fail",
   411  	"plugin.golang develop environment does not exist":    "Golang develop environment does not exist",
   412  	"plugin.download success, restart to install":         "Download success, restart to install",
   413  	"plugin.restart to install":                           "Restart to install",
   414  	"plugin.can not connect to the goadmin remote server": "Failed to connect the GoAdmin remote server, check your network connection.",
   415  
   416  	"admin.basic admin": "Basic Admin",
   417  	"admin.a built-in plugins of goadmin which help you to build a crud manager platform quickly.": "A built-in plugins of GoAdmin which help you to build a crud manager platform quickly.",
   418  	"admin.official": "Official",
   419  }