-
Notifications
You must be signed in to change notification settings - Fork 9
/
messagekeys.go
48 lines (43 loc) · 1.99 KB
/
messagekeys.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//--------------------------------------------------------------------------------------------------
// This file is a part of Gorsync Backup project (backup RSYNC frontend).
// Copyright (c) 2017-2020 Denis Dyakov <denis.dyakov@gmail.com>
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
// BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//--------------------------------------------------------------------------------------------------
package core
// ------------------------------------------------------------
// File contains message identifiers for localization purpose.
// Message identifier names is self-descriptive, so ordinary
// it's easy to understand what message is made for.
// Message ID is used to call translation functions from
// "locale" package.
// ------------------------------------------------------------
const (
MsgAppTitleExtra = "AppTitleExtra"
MsgDaysLong = "DaysLong"
MsgDaysShort = "DaysShort"
MsgHoursLong = "HoursLong"
MsgHoursShort = "HoursShort"
MsgMinutesLong = "MinutesLong"
MsgMinutesShort = "MinutesShort"
MsgSecondsLong = "SecondsLong"
MsgSecondsShort = "SecondsShort"
MsgBytesLong = "BytesLong"
MsgBytesShort = "BytesShort"
MsgKiloBytesLong = "KiloBytesLong"
MsgKiloBytesShort = "KiloBytesShort"
MsgMegaBytesLong = "MegaBytesLong"
MsgMegaBytesShort = "MegaBytesShort"
MsgGigaBytesLong = "GigaBytesLong"
MsgGigaBytesShort = "GigaBytesShort"
MsgTeraBytesLong = "TeraBytesLong"
MsgTeraBytesShort = "TeraBytesShort"
MsgPetaBytesLong = "PetaBytesLong"
MsgPetaBytesShort = "PetaBytesShort"
MsgExaBytesLong = "ExaBytesLong"
MsgExaBytesShort = "ExaBytesShort"
)