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

messages.json « en « _locales « generic « platform « src - github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8d09f92140c59940e51413a4a35839294a67258 (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
    "extensionName"              : {
        "message"    : "Nextcloud Passwords",
        "description": "Name of the extension."
    },
    "extensionDescription"       : {
        "message"    : "A simple client for the Nextcloud Passwords app",
        "description": "Description of the extension."
    },
    "browserActionTitle"         : {
        "message"    : "Passwords",
        "description": "Title of the button in the browser bar"
    },
    "contextMenuTitle"           : {
        "message"    : "Passwords",
        "description": "Title of the context menu item"
    },
    "NoRelatedMatches"           : {
        "message"    : "No logins found",
        "description": "Shown when the related page did not find any results"
    },
    "NoSearchMatches"            : {
        "message"    : "No matches",
        "description": "Shown when the search did not find any results"
    },
    "NoSearchQuery"              : {
        "message"    : "Type more than two characters",
        "description": "Shown when the search query is empty"
    },
    "PasswordRequestFailedTitle" : {
        "message"    : "Nextcloud password request failed",
        "description": "Notification title when the password request fails"
    },
    "PasswordRequestFailedText"  : {
        "message"     : "The password list could not be retrieved.\nError: $ERROR$",
        "description" : "Notification text when the password request fails",
        "placeholders": {
            "error": {
                "content": "$1",
                "example": "Unknown Error"
            }
        }
    },
    "PasswordEncodingFailedTitle": {
        "message"    : "Could not parse password properties",
        "description": "Notification title when the password properties can not be parsed"
    },
    "PasswordEncodingFailedText" : {
        "message"     : "The properties of password #$ID$ do not contain valid JSON data and could not be processed",
        "description" : "Notification text when the password properties can not be parsed",
        "placeholders": {
            "id": {
                "content": "$1",
                "example": "0"
            }
        }
    },
    "NewLoginDetectedTitle"      : {
        "message"    : "New login found",
        "description": "Notification title when a new login is detected"
    },
    "NewLoginDetectedText"       : {
        "message"     : "Click here to save the password for \"$USER$\"",
        "description" : "Notification text when a new login is detected",
        "placeholders": {
            "user": {
                "content": "$1",
                "example": "username"
            }
        }
    },
    "PasswordCreatedTitle"       : {
        "message"    : "Password saved",
        "description": "Notification title when a password was saved"
    },
    "PasswordCreatedText"        : {
        "message"    : "The password was stored sucessfully",
        "description": "Notification text when a password was saved"
    },
    "CreatePasswordFailedTitle"  : {
        "message"    : "Save password failed",
        "description": "Notification title when saving a password failed"
    },
    "CreatePasswordFailedText"   : {
        "message"    : "The password could not be saved",
        "description": "Notification text when saving a password failed"
    },
    "UpdatedLoginDetectedTitle"  : {
        "message"    : "Updated login found",
        "description": "Notification title when an updated login is detected"
    },
    "UpdatedLoginDetectedText"   : {
        "message"     : "Click here to update the password for \"$USER$\"",
        "description" : "Notification text when an updated login is detected",
        "placeholders": {
            "user": {
                "content": "$1",
                "example": "username"
            }
        }
    },
    "PasswordUpdatedTitle"       : {
        "message"    : "Password updated",
        "description": "Notification title when a password was updated"
    },
    "PasswordUpdatedText"        : {
        "message"    : "The password was updated sucessfully",
        "description": "Notification text when a password was updated"
    },
    "UpdatePasswordFailedTitle"  : {
        "message"    : "Update password failed",
        "description": "Notification title when updating a password failed"
    },
    "UpdatePasswordFailedText"   : {
        "message"    : "The password could not be updated",
        "description": "Notification text when updating a password failed"
    },
    "Url"                        : { "message": "Url" },
    "Password"                   : { "message": "Password" },
    "User"                       : { "message": "User" },
    "Save"                       : { "message": "Save" }
}