github.com/kotovmak/go-admin@v1.1.1/modules/language/en.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 en = LangSet{
    10  	"managers":         "Managers",
    11  	"name":             "Name",
    12  	"nickname":         "Nickname",
    13  	"role":             "Role",
    14  	"createdat":        "createdAt",
    15  	"updatedat":        "updatedAt",
    16  	"path":             "path",
    17  	"new":              "New",
    18  	"filter":           "Filter",
    19  	"action":           "Action",
    20  	"toggle dropdown":  "Toggle Dropdown",
    21  	"delete":           "Delete",
    22  	"refresh":          "Refresh",
    23  	"expand":           "Expand",
    24  	"collapse":         "Collapse",
    25  	"back":             "Back",
    26  	"reset":            "Reset",
    27  	"save":             "Save",
    28  	"edit":             "Edit",
    29  	"operation":        "Operation",
    30  	"method":           "Method",
    31  	"input":            "input",
    32  	"online":           "Online",
    33  	"setting":          "Setting",
    34  	"sign out":         "Sign out",
    35  	"all":              "All",
    36  	"confirm password": "Confirm Password",
    37  	"search":           "Search",
    38  	"remove":           "Remove",
    39  
    40  	"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",
    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":               "Are you sure to delete",
    48  	"yes":                                  "yes",
    49  	"got it":                               "got it",
    50  	"cancel":                               "cancel",
    51  	"refresh succeeded":                    "Refresh succeeded",
    52  	"reload succeeded":                     "Reload succeeded",
    53  	"all method if empty":                  "All method if empty",
    54  	"password does not match":              "Password does not match",
    55  	"should be unique":                     "Should be unique",
    56  	"slug exists":                          "Slug exists",
    57  	"no corresponding options?":            "No corresponding options?",
    58  	"create here.":                         "Create here.",
    59  	"use for login":                        "Use for login",
    60  	"use to display":                       "Use to display",
    61  	"a path a line, without global prefix": "A path a line",
    62  	"slug or http_path or name should not be empty": "slug or http_path or name should not be empty",
    63  	"no roles":          "no roles",
    64  	"fixed the sidebar": "Fixed the sidebar",
    65  	"enter fullscreen":  "Enter fullscreen",
    66  	"exit fullscreen":   "Exit fullscreen",
    67  
    68  	"permission manage": "Permission Manage",
    69  	"menus manage":      "Menus Manage",
    70  	"roles manage":      "Roles manage",
    71  	"operation log":     "Operation log",
    72  
    73  	"continue editing":  "Continue editing",
    74  	"continue creating": "Continue creating",
    75  
    76  	"browse":     "Browse",
    77  	"avatar":     "Avatar",
    78  	"password":   "Password",
    79  	"username":   "Username",
    80  	"slug":       "Slug",
    81  	"permission": "Permission",
    82  	"userid":     "UserID",
    83  	"content":    "Content",
    84  	"parent":     "Parent",
    85  	"icon":       "Icon",
    86  	"uri":        "Uri",
    87  
    88  	"detail": "Detail",
    89  
    90  	"admin":     "Admin",
    91  	"users":     "Users",
    92  	"roles":     "Roles",
    93  	"menu":      "Menu",
    94  	"dashboard": "Dashboard",
    95  	"home":      "Home",
    96  
    97  	"initialize configuration":        "Initialize configuration",
    98  	"initialize navigation buttons":   "Initialize navigation buttons",
    99  	"initialize plugins":              "Initialize plugins",
   100  	"initialize database connections": "Initialize database connections",
   101  	"initialize success":              "Initialize success🍺🍺",
   102  
   103  	"not found":      "Not found",
   104  	"internal error": "Internal error",
   105  	"unauthorized":   "Unauthorized",
   106  	"plugin setting": "Plugin Setting",
   107  
   108  	"plugins":          "Plugins",
   109  	"plugin store":     "Plugin Store",
   110  	"get more plugins": "Get more plugins",
   111  	"uninstalled":      "Uninstalled",
   112  
   113  	"second":  "second",
   114  	"seconds": "seconds",
   115  	"minute":  "minute",
   116  	"minutes": "minutes",
   117  	"hour":    "hour",
   118  	"hours":   "hours",
   119  	"day":     "day",
   120  	"days":    "days",
   121  	"week":    "week",
   122  	"weeks":   "weeks",
   123  	"month":   "month",
   124  	"months":  "months",
   125  	"year":    "year",
   126  	"years":   "years",
   127  
   128  	"config.domain":          "Website Domain",
   129  	"config.language":        "Website Language",
   130  	"config.url prefix":      "URL Prefix",
   131  	"config.theme":           "Theme",
   132  	"config.title":           "Title",
   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":     "Login Title",
   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":            "Open SQL Log",
   190  	"config.log level":             "Level",
   191  
   192  	"config.logger rotate encoder":                "Log Encoder Settings",
   193  	"config.logger rotate encoder time key":       "Time Key",
   194  	"config.logger rotate encoder level key":      "Level Key",
   195  	"config.logger rotate encoder name key":       "Name Key",
   196  	"config.logger rotate encoder caller key":     "Caller Key",
   197  	"config.logger rotate encoder message key":    "Message Key",
   198  	"config.logger rotate encoder stacktrace key": "Stacktrace Key",
   199  	"config.logger rotate encoder level":          "Level Encoder",
   200  	"config.logger rotate encoder time":           "Time Encoder",
   201  	"config.logger rotate encoder duration":       "Duration Encoder",
   202  	"config.logger rotate encoder caller":         "Caller Encoder",
   203  	"config.logger rotate encoder encoding":       "Output Format",
   204  
   205  	"config.capital":        "Capital",
   206  	"config.capitalcolor":   "Capital with color",
   207  	"config.lowercase":      "Lowercase",
   208  	"config.lowercasecolor": "Lowercase with color",
   209  
   210  	"config.seconds":     "Seconds",
   211  	"config.nanosecond":  "Nanosecond",
   212  	"config.microsecond": "Microsecond",
   213  	"config.millisecond": "Millisecond",
   214  
   215  	"config.full path":  "Full path",
   216  	"config.short path": "Short path",
   217  
   218  	"config.do not modify when you have not set up all assets": "Do not modify when you have not set up all assets",
   219  	"config.it will work when theme is adminlte":               "It will work when theme is 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":         "Site Configuration Modification",
   228  	"config.modify site config success": "modified success",
   229  	"config.modify site config fail":    "modified failed",
   230  
   231  	"system.system info":     "System And Application Info",
   232  	"system.application":     "Application Info",
   233  	"system.application run": "Applications Running Info",
   234  	"system.system":          "System Info",
   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 Logical Core",
   269  	"system.cpu_core":         "CPU Physical Core",
   270  	"system.os_platform":      "OS Platform",
   271  	"system.os_family":        "OS Family",
   272  	"system.os_version":       "OS Version",
   273  	"system.load1":            "Load1",
   274  	"system.load5":            "Load5",
   275  	"system.load15":           "Load15",
   276  	"system.mem_total":        "Total Memory",
   277  	"system.mem_available":    "Available Memory",
   278  	"system.mem_used":         "Used Memory",
   279  
   280  	"system.app_name":         "App Name",
   281  	"system.go_admin_version": "App Version",
   282  	"system.theme_name":       "Theme",
   283  	"system.theme_version":    "Theme Version",
   284  
   285  	"tool.tool":                   "Tool",
   286  	"tool.table":                  "Table",
   287  	"tool.connection":             "Connection",
   288  	"tool.package":                "Package",
   289  	"tool.output":                 "Output Path",
   290  	"tool.output path is empty":   "Output path is empty",
   291  	"tool.field":                  "Field",
   292  	"tool.title":                  "Title",
   293  	"tool.field name":             "Name",
   294  	"tool.db type":                "Database Type",
   295  	"tool.form type":              "Form Type",
   296  	"tool.generate table model":   "Generate Table Model",
   297  	"tool.primarykey":             "Primary Key",
   298  	"tool.field filterable":       "Filterable",
   299  	"tool.field sortable":         "Sortable",
   300  	"tool.yes":                    "Yes",
   301  	"tool.no":                     "No",
   302  	"tool.hide":                   "Hide",
   303  	"tool.show":                   "Show",
   304  	"tool.generate success":       "Generate Success",
   305  	"tool.hide filter area":       "Hide Filter Area",
   306  	"tool.use absolute path":      "Use absolute path",
   307  	"tool.display":                "Display",
   308  	"tool.basic info":             "Basic",
   309  	"tool.table info":             "Table",
   310  	"tool.form info":              "Form",
   311  	"tool.field editable":         "Editable",
   312  	"tool.info field editable":    "Editable",
   313  	"tool.extra import package":   "Import Package",
   314  	"tool.field can add":          "Can Add",
   315  	"tool.field default":          "Default",
   316  	"tool.filter area":            "Filter Area",
   317  	"tool.new button":             "New Button",
   318  	"tool.export button":          "Export Button",
   319  	"tool.edit button":            "Edit Button",
   320  	"tool.delete button":          "Delete Button",
   321  	"tool.detail button":          "Detail Button",
   322  	"tool.filter button":          "Filter Button",
   323  	"tool.row selector":           "Row Selector",
   324  	"tool.pagination":             "Pagination",
   325  	"tool.query info":             "Query Info",
   326  	"tool.filter form layout":     "Filter Form Layout",
   327  	"tool.continue edit checkbox": "Continue Edit Checkbox",
   328  	"tool.continue new checkbox":  "Continue New Checkbox",
   329  	"tool.reset button":           "Reset Button",
   330  	"tool.back button":            "Back Button",
   331  	"tool.generate":               "Generate",
   332  	"tool.generated tables":       "Generated Tables",
   333  	"tool.description":            "Description",
   334  	"tool.label":                  "Label",
   335  	"tool.image":                  "Image",
   336  	"tool.bool":                   "Bool",
   337  	"tool.link":                   "Link",
   338  	"tool.fileSize":               "File Size",
   339  	"tool.date":                   "Date",
   340  	"tool.icon":                   "Icon",
   341  	"tool.dot":                    "Dot",
   342  	"tool.progressBar":            "ProgressBar",
   343  	"tool.loading":                "Loading",
   344  	"tool.downLoadable":           "DownLoadable",
   345  	"tool.copyable":               "Copyable",
   346  	"tool.carousel":               "Carousel",
   347  	"tool.qrcode":                 "Qrcode",
   348  	"tool.field hide":             "Hide",
   349  	"tool.field display":          "Display",
   350  	"tool.table permission":       "Generate Permissions",
   351  	"tool.extra code":             "Extra Code",
   352  
   353  	"tool.field display normal":     "Normal",
   354  	"tool.field diplay hide":        "Hide",
   355  	"tool.field diplay edit hide":   "Edit Hide",
   356  	"tool.field diplay create hide": "Create Hide",
   357  
   358  	"tool.generate table model success": "generate success",
   359  	"tool.generate table model fail":    "generate fail",
   360  
   361  	"tool.detail display":             "Display",
   362  	"tool.detail info":                "Detail Info",
   363  	"tool.follow list page":           "Follow List Page",
   364  	"tool.inherit from list page":     "Inherit From List Page",
   365  	"tool.independent from list page": "Independent From List Page",
   366  
   367  	"generator.query":                 "Query",
   368  	"generator.show edit form page":   "Show Edit Form Page",
   369  	"generator.show create form page": "Show Create Form Page",
   370  	"generator.edit":                  "Edit",
   371  	"generator.create":                "Create",
   372  	"generator.delete":                "Delete",
   373  	"generator.export":                "Export",
   374  
   375  	"plugin.plugin":                         "Plugin",
   376  	"plugin.plugin detail":                  "Plugin Detail",
   377  	"plugin.introduction":                   "Introduction",
   378  	"plugin.website":                        "Website",
   379  	"plugin.version":                        "Version",
   380  	"plugin.created at":                     "Created At",
   381  	"plugin.updated at":                     "Updated At",
   382  	"plugin.provided by %s":                 "Provided by %s",
   383  	"plugin.upgrade":                        "Upgrade",
   384  	"plugin.install":                        "Install",
   385  	"plugin.download":                       "Download",
   386  	"plugin.buy":                            "Buy",
   387  	"plugin.downloading":                    "Downloading",
   388  	"plugin.info":                           "Detail",
   389  	"plugin.login":                          "Login",
   390  	"plugin.login to goadmin member system": "Login to GoAdmin member system",
   391  	"plugin.account":                        "Account",
   392  	"plugin.password":                       "Password",
   393  	"plugin.learn more":                     "Learn more",
   394  
   395  	"plugin.no account? click %s here %s to register.":    "No account?Click %shere%s to register。",
   396  	"plugin.download fail, wrong name":                    "Download fail, wrong name",
   397  	"plugin.change to debug mode first":                   "Change to debug mode first",
   398  	"plugin.download fail, plugin not exist":              "Download fail, plugin not exist",
   399  	"plugin.download fail":                                "Download fail",
   400  	"plugin.golang develop environment does not exist":    "Golang develop environment does not exist",
   401  	"plugin.download success, restart to install":         "Download success, restart to install",
   402  	"plugin.restart to install":                           "Restart to install",
   403  	"plugin.can not connect to the goadmin remote server": "Failed to connect the GoAdmin remote server, check your network connection.",
   404  
   405  	"admin.basic admin": "Basic Admin",
   406  	"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.",
   407  	"admin.official": "Official",
   408  }