Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoha Jin <soha@lohu.info>2021-09-10 19:08:32 +0300
committerSoha Jin <soha@lohu.info>2021-09-10 19:08:32 +0300
commit65f9feed11689f6c198826abd9d7adab141aac25 (patch)
treeb0f561a1c9efed6604154db6c4850c7c0e6569a6 /Duplicati/Library/Backend
parent3487365d56642aa11ffda336ce7d9165a1157c75 (diff)
Tencent COS: use english document
Diffstat (limited to 'Duplicati/Library/Backend')
-rw-r--r--Duplicati/Library/Backend/TencentCOS/COSBackend.cs10
-rw-r--r--Duplicati/Library/Backend/TencentCOS/Strings.cs4
2 files changed, 8 insertions, 6 deletions
diff --git a/Duplicati/Library/Backend/TencentCOS/COSBackend.cs b/Duplicati/Library/Backend/TencentCOS/COSBackend.cs
index 249999fa8..a0dca426a 100644
--- a/Duplicati/Library/Backend/TencentCOS/COSBackend.cs
+++ b/Duplicati/Library/Backend/TencentCOS/COSBackend.cs
@@ -17,8 +17,8 @@ namespace Duplicati.Library.Backend.TencentCOS
{
/// <summary>
/// Tencent COS
- /// https://cloud.tencent.com/document/product/436
- /// https://cloud.tencent.com/document/product/436/32869
+ /// en: https://intl.cloud.tencent.com/document/product/436
+ /// zh: https://cloud.tencent.com/document/product/436
/// </summary>
public class COS : IBackend, IStreamingBackend, IRenameEnabledBackend
{
@@ -71,7 +71,8 @@ namespace Duplicati.Library.Backend.TencentCOS
public string SecretKey { get; set; }
/// <summary>
/// Bucket region ap-guangzhou ap-hongkong
- /// https://cloud.tencent.com/document/product/436/6224
+ /// en: https://intl.cloud.tencent.com/document/product/436/6224
+ /// zh: https://cloud.tencent.com/document/product/436/6224
/// </summary>
public string Region { get; set; }
/// <summary>
@@ -84,7 +85,8 @@ namespace Duplicati.Library.Backend.TencentCOS
public string Path { get; set; }
/// <summary>
/// Storage class of the object
- /// https://cloud.tencent.com/document/product/436/33417
+ /// en: https://intl.cloud.tencent.com/document/product/436/30925
+ /// zh: https://cloud.tencent.com/document/product/436/33417
/// </summary>
public string StorageClass { get; set; }
}
diff --git a/Duplicati/Library/Backend/TencentCOS/Strings.cs b/Duplicati/Library/Backend/TencentCOS/Strings.cs
index 9d02eb7e9..9ab31155a 100644
--- a/Duplicati/Library/Backend/TencentCOS/Strings.cs
+++ b/Duplicati/Library/Backend/TencentCOS/Strings.cs
@@ -20,10 +20,10 @@ namespace Duplicati.Library.Backend.Strings
public static string COSBucketDescriptionLong { get { return LC.L(@"Bucket, format: BucketName-APPID"); } }
public static string COSLocationDescriptionShort { get { return LC.L(@"Specifies COS location constraints"); } }
- public static string COSLocationDescriptionLong { get { return LC.L(@"Region (Region) is the distribution area of ​​the Tencent cloud hosting machine room, the object storage COS data is stored in the storage buckets of these regions. https://cloud.tencent.com/document/product/436/6224"); } }
+ public static string COSLocationDescriptionLong { get { return LC.L(@"Region (Region) is the distribution area of ​​the Tencent cloud hosting machine room, the object storage COS data is stored in the storage buckets of these regions. https://intl.cloud.tencent.com/document/product/436/6224"); } }
public static string COSStorageClassDescriptionShort { get { return LC.L(@"Storage class of the object"); } }
- public static string COSStorageClassDescriptionLong { get { return LC.L(@"Storage class of the object; check enumerated values at https://cloud.tencent.com/document/product/436/33417."); } }
+ public static string COSStorageClassDescriptionLong { get { return LC.L(@"Storage class of the object; check enumerated values at https://intl.cloud.tencent.com/document/product/436/30925"); } }
}
}