| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| |
| package i18n |
| |
| const ( |
| InfoName = "plugin.tencentyuncos_storage.backend.info.name" |
| InfoDescription = "plugin.tencentyuncos_storage.backend.info.description" |
| |
| ConfigRegionTitle = "plugin.tencentyuncos_storage.backend.config.region.title" |
| ConfigRegionDescription = "plugin.tencentyuncos_storage.backend.config.region.description" |
| ConfigBucketNameTitle = "plugin.tencentyuncos_storage.backend.config.bucket_name.title" |
| ConfigBucketNameDescription = "plugin.tencentyuncos_storage.backend.config.bucket_name.description" |
| ConfigObjectKeyPrefixTitle = "plugin.tencentyuncos_storage.backend.config.object_key_prefix.title" |
| ConfigObjectKeyPrefixDescription = "plugin.tencentyuncos_storage.backend.config.object_key_prefix.description" |
| ConfigSecretIdTitle = "plugin.tencentyuncos_storage.backend.config.secret_id.title" |
| ConfigSecretIdDescription = "plugin.tencentyuncos_storage.backend.config.secret_id.description" |
| ConfigSecretKeyTitle = "plugin.tencentyuncos_storage.backend.config.secret_key.title" |
| ConfigSecretKeyDescription = "plugin.tencentyuncos_storage.backend.config.secret_key.description" |
| ConfigVisitUrlPrefixTitle = "plugin.tencentyuncos_storage.backend.config.visit_url_prefix.title" |
| ConfigVisitUrlPrefixDescription = "plugin.tencentyuncos_storage.backend.config.visit_url_prefix.description" |
| ConfigACLTitle = "plugin.tencentyuncos_storage.backend.config.acl.title" |
| ConfigACLDescription = "plugin.tencentyuncos_storage.backend.config.acl.description" |
| ConfigACLOptionsDefault = "plugin.tencentyuncos_storage.backend.config.acl.options.default" |
| ConfigACLOptionsPublicRead = "plugin.tencentyuncos_storage.backend.config.acl.options.public_read" |
| |
| ErrMisStorageConfig = "plugin.tencentyuncos_storage.backend.err.mis_storage_config" |
| ErrFileNotFound = "plugin.tencentyuncos_storage.backend.err.file_not_found" |
| ErrUnsupportedFileType = "plugin.tencentyuncos_storage.backend.err.unsupported_file_type" |
| ErrOverFileSizeLimit = "plugin.tencentyuncos_storage.backend.err.over_file_size_limit" |
| ErrUploadFileFailed = "plugin.tencentyuncos_storage.backend.err.upload_file_failed" |
| ) |