summaryrefslogtreecommitdiffstats
path: root/templates/repo/issue/view_old.tmpl
blob: d13364aa54aca5b5da547c054bd66909888565a0 (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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
{{template "base/head_old" .}}
{{template "base/navbar" .}}
{{template "repo/nav" .}}
{{template "repo/toolbar" .}}
<div id="body" class="container">
    <div id="issue" data-id="{{.Issue.ID}}">
        <div id="issue-{{.Issue.ID}}" class="issue-whole issue-is-opening">
            <div class="issue-wrap col-md-10">
                <div class="issue-head clearfix">
                    <div class="number pull-right">#{{.Issue.Index}}</div>
                    <a class="author pull-left" href="{{AppSubUrl}}/{{.Issue.Poster.Name}}"><img class="avatar" src="{{.Issue.Poster.AvatarLink}}" alt="" width="30"/></a>
                    <h1 class="title pull-left">{{.Issue.Name}}</h1>
                    <input id="issue-edit-title" class="form-control input-lg pull-left hidden" type="text" value="{{.Issue.Name}}" data-ajax-rel="issue-edit-save" data-ajax-val="val" data-ajax-field="title"/>
                    <input type="hidden" value="{{.Issue.ID}}" data-ajax-rel="issue-edit-save" data-ajax-val="val" data-ajax-field="issue_id"/>
                    <p class="info pull-left">
                        {{if .IsIssueOwner}}<a class="btn btn-default pull-right issue-edit" href="#" id="issue-edit-btn">Edit</a>
                        <a class="btn btn-danger pull-right issue-edit-cancel hidden" href="#">Cancel</a>
                        <a class="btn btn-primary pull-right issue-edit-save hidden" href="#" data-ajax="{{.RepoLink}}/issues/{{.Issue.Index}}" data-ajax-name="issue-edit-save" data-ajax-method="post">Save</a>{{end}}
                        <span class="status label label-{{if .Issue.IsClosed}}danger{{else}}success{{end}}">{{if .Issue.IsClosed}}Closed{{else}}Open{{end}}</span>
                        <a href="{{AppSubUrl}}/{{.Issue.Poster.Name}}" class="author"><strong>{{.Issue.Poster.Name}}</strong></a> opened this issue
                        <span class="time">{{TimeSince .Issue.Created $.Lang}}</span> · {{.Issue.NumComments}} comments
                    </p>
                </div>
                <div class="issue-main">
                    <div class="panel panel-default issue-content">
                        <div class="panel-body">
                            <div class="content markdown">
                                {{Str2html .Issue.RenderedContent}}
                            </div>
                            <div class="issue-edit-content hidden">
                                <div class="form-group">
                                    <div class="md-help pull-right">Content with <a href="https://help.github.com/articles/markdown-basics">Markdown</a>
                                    </div>
                                    <ul class="nav nav-tabs" data-init="tabs">
                                        <li class="issue-write active"><a href="#issue-edit-textarea" data-toggle="tab">Write</a></li>
                                        <li class="issue-preview"><a href="#issue-edit-preview" data-toggle="tab" data-ajax="/api/v1/markdown" data-ajax-name="issue-edit-preview" data-ajax-context="{{.RepoLink}}" data-ajax-method="post" data-preview="#issue-edit-preview">Preview</a></li>
                                    </ul>
                                    <div class="tab-content">
                                        <div class="tab-pane active" id="issue-edit-textarea">
                                            <div class="form-group">
                                                <input type="hidden" value="1" name="issueIndex">
                                                <textarea class="form-control" name="content" id="issue-edit-content" rows="10" placeholder="Write some content" data-ajax-rel="issue-edit-preview" data-ajax-val="val" data-ajax-field="text">{{.Issue.Content}}</textarea>
                                            </div>
                                        </div>
                                        <div class="tab-pane issue-preview-content" id="issue-edit-preview">Loading...</div>
                                    </div>
                                </div>
                            </div>
                        </div>
                        {{with $attachments := .Issue.Attachments}}
                        {{if $attachments}}
                        <div class="attachments">
                            <span class="attachment-label label label-info">Attachments:</span>

                            {{range $attachments}}
                            <a class="attachment label label-default" href="/attachments/{{.UUID}}">{{.Name}}</a>
                            {{end}}
                        </div>
                        {{end}}
                        {{end}}
                    </div>
                    {{range .Comments}}
                    {{/* 0 = COMMENT, 1 = REOPEN, 2 = CLOSE, 3 = ISSUE, 4 = COMMIT, 5 = PULL */}}
                    {{if eq .Type 0}}
                    <div class="issue-child" id="issue-comment-{{.Id}}">
                        <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}"><img class="avatar" src="{{.Poster.AvatarLink}}" alt=""/></a>
                        <div class="issue-content panel panel-default">
                            <div class="panel-heading">
                                <a href="{{AppSubUrl}}/{{.Poster.Name}}" class="user">{{.Poster.Name}}</a> commented <span class="time">{{TimeSince .Created $.Lang}}</span>
                                <!-- <a class="issue-comment-del pull-right issue-action" href="#" title="Edit Comment"><i class="fa fa-times-circle"></i></a>
                                <a class="issue-comment-edit pull-right issue-action" href="#" title="Remove Comment" data-url="{remove-link}"><i class="fa fa-edit"></i></a> -->
                                {{if eq .Poster.Id $.Owner.Id}}
                                <span class="role label label-default pull-right">Owner</span>
                                {{end}}
                            </div>
                            <div class="panel-body markdown">
                                {{if len .Content}}
                                {{Str2html .Content}}
                                {{else}}
                                <i>No comment entered</i>
                                {{end}}
                            </div>
                            {{with $attachments := .Attachments}}
                            {{if $attachments}}
                            <div class="attachments">
                                <span class="attachment-label label label-info">Attachments:</span>

                                {{range $attachments}}
                                <a class="attachment label label-default" href="{{.IssueId}}/attachment/{{.Id}}">{{.Name}}</a>
                                {{end}}
                            </div>
                            {{end}}
                            {{end}}
                        </div>
                    </div>
                    {{else if eq .Type 1}}
                    <div class="issue-child issue-opened">
                        <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}"><img class="avatar" src="{{.Poster.AvatarLink}}" alt="" /></a>
                        <div class="issue-content">
                            <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}">{{.Poster.Name}}</a> <span class="label label-success">Reopened</span> this issue <span class="time">{{TimeSince .Created $.Lang}}</span>
                        </div>
                    </div>
                    {{else if eq .Type 2}}
                    <div class="issue-child issue-closed">
                        <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}"><img class="avatar" src="{{.Poster.AvatarLink}}" alt=""/></a>
                        <div class="issue-content">
                            <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}">{{.Poster.Name}}</a> <span class="label label-danger">Closed</span> this issue <span class="time">{{TimeSince .Created $.Lang}}</span>
                        </div>
                    </div>
                    {{else if eq .Type 4}}
                    <div class="issue-child issue-reference issue-reference-commit">
                        <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}"><img class="avatar" src="{{.Poster.AvatarLink}}" alt=""/></a>
                        <div class="issue-content">
                            <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}">{{.Poster.Name}}</a> <span class="label label-primary">Referenced</span> this issue <span class="time">{{TimeSince .Created $.Lang}}</span>
                            <p>
                                <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}"><img class="avatar" src="{{.Poster.AvatarLink}}" alt=""/></a>
                                {{.ContentHtml}}
                            </p>
                        </div>
                    </div>
                    {{end}}
                    {{end}}
                    <hr class="issue-line"/>
                    {{if .SignedUser}}<div class="issue-child issue-reply">
                    <a class="user pull-left" href="{{AppSubUrl}}/{{.SignedUser.Name}}"><img class="avatar" src="{{.SignedUser.AvatarLink}}" alt=""/></a>
                    <form class="panel panel-default issue-content" action="{{.RepoLink}}/comment/new" method="post" enctype="multipart/form-data">
                        {{.CsrfTokenHtml}}
                        <div class="panel-body">
                            <div class="form-group">
                                <div class="md-help pull-right">Content with <a href="https://help.github.com/articles/markdown-basics">Markdown</a>
                                </div>
                                <ul class="nav nav-tabs" data-init="tabs">
                                    <li class="active issue-write"><a href="#issue-textarea" data-toggle="tab">Write</a></li>
                                    <li class="issue-preview"><a href="#issue-preview" data-toggle="tab" data-ajax="/api/v1/markdown" data-ajax-name="issue-preview"  data-ajax-context="{{.RepoLink}}" data-ajax-method="post" data-preview="#issue-preview">Preview</a></li>
                                </ul>
                                <div class="tab-content">
                                    <div class="tab-pane" id="issue-textarea">
                                        <div class="form-group">
                                            <div id="submit-error" class="text-danger"></div>
                                            <input type="hidden" value="{{.Issue.Index}}" name="issueIndex"/>
                                            <textarea class="form-control" name="content" id="issue-reply-content" rows="10" placeholder="Write some content" data-ajax-rel="issue-preview" data-ajax-val="val" data-ajax-field="text">{{.content}}</textarea>
                                        </div>
                                    </div>
                                    <div class="tab-pane issue-preview-content" id="issue-preview">Loading...</div>
                                </div>
                            </div>
                            {{if .AttachmentsEnabled}}
                            <!-- <div id="attached">
                                <div id="attached-list">
                                    <b>Attachments:</b>
                                </div>
                            </div> -->
                            {{end}}
                            <div class="text-right">
                                <div class="form-group">
                                    {{if .AttachmentsEnabled}}
                                    <!-- <input type="file" accept="{{.AllowedTypes}}" style="display: none;" id="attachments-input" name="attachments" multiple />
                                    <button class="btn-default btn attachment-add" id="attachments-button">Select Attachments...</button> -->
                                    {{end}}
                                    {{if .IsIssueOwner}}{{if .Issue.IsClosed}}
                                    <input type="submit" class="btn-default btn issue-open" id="issue-open-btn" data-origin="Reopen" data-text="Reopen & Comment" name="change_status" value="Reopen"/>{{else}}
                                    <input type="submit" class="btn-default btn issue-close" id="issue-close-btn" data-origin="Close" data-text="Close & Comment" name="change_status" value="Close"/>{{end}}{{end}}&nbsp;&nbsp;
                                    <button class="btn-success btn" id="issue-reply-btn">Comment</button>
                                </div>
                            </div>
                        </div>
                    </form>
                </div>{{else}}<div class="alert alert-warning"><a class="btn btn-success btn-lg" href="{{AppSubUrl}}/user/sign_up">Sign up for free</a> to join this conversation. Already have an account? <a href="{{AppSubUrl}}/user/login">Sign in to comment</a></div>{{end}}
                </div>
            </div>

            <div class="issue-bar col-md-2">
                <div class="labels" data-ajax="{{.Issue.Index}}/label">
                    {{if .IsRepositoryOwner}}
                    <div class="pull-right action">
                        <button class="btn btn-default btn-sm" data-toggle="dropdown">
                            <i class="fa fa-tags"></i>
                            <span class="caret"></span>
                        </button>
                        <div class="dropdown-menu dropdown-menu-right no">
                            <ul class="list-unstyled">
                                {{range .Labels}}
                                <li class="{{if not .IsChecked}}no-{{end}}checked" data-id="{{.ID}}">
                                    {{if .IsChecked}}<span class="check pull-left"><i class="fa fa-check"></i></span>{{end}}
                                    <span class="color" style="background-color: {{.Color}}"></span>
                                    <span class="name">{{.Name}}</span>
                                </li>
                                {{end}}
                            </ul>
                        </div>
                    </div>
                    {{end}}
                    <h4>Labels</h4>
                    {{if .Issue.Labels}}
                    {{range .Issue.Labels}}
                    <p id="label-{{.ID}}" class="label-item label-white" style="background-color: {{.Color}}"><strong>{{.Name}}</strong></p>
                    {{end}}
                    {{else}}
                    <p>None yet</p>
                    {{end}}
                </div>
                <div class="milestone" data-milestone="{{.Milestone.ID}}" data-ajax="{{.Issue.Index}}/milestone">
                    <div class="pull-right action">
                        {{if .IsRepositoryOwner}}
                        <button class="btn btn-default btn-sm" data-toggle="dropdown">
                            <i class="fa fa-check-square-o"></i>
                            <span class="caret"></span>
                        </button>
                        <div class="dropdown-menu dropdown-menu-right">
                            <ul class="list-unstyled">
                                <li data-id="0" class="clear-milestone milestone-item  hidden"><i class="fa fa-times-circle-o"></i> Clear milestone </li>
                                <li class="milestone-list">
                                    <ul class="nav nav-tabs" data-init="tabs">
                                        <li class="active"><a href="#milestone-open" data-toggle="tab">Open</a></li>
                                        <li><a href="#milestone-close" data-toggle="tab">Closed</a></li>
                                    </ul>
                                    <div class="tab-content">
                                        <div class="tab-pane active" id="milestone-open">
                                            {{if not .OpenMilestones}}
                                            <p class="milestone-item">Nothing to show</p>
                                            {{else}}
                                            <ul class="list-unstyled">
                                                {{range .OpenMilestones}}
                                                <li class="milestone-item" data-id="{{.ID}}">
                                                    <p><strong>{{.Name}}</strong></p>
                                                    <!-- <p>due to 3 days later</p> -->
                                                </li>
                                                {{end}}
                                            </ul>
                                            {{end}}
                                        </div>

                                        <div class="tab-pane" id="milestone-close">
                                            {{if not .ClosedMilestones}}
                                            <p class="milestone-item">Nothing to show</p>
                                            {{else}}
                                            <ul class="list-unstyled">
                                                {{range .ClosedMilestones}}
                                                <li class="milestone-item" data-id="{{.ID}}">
                                                    <p><strong>{{.Name}}</strong></p>
                                                    <p>Closed {{TimeSince .ClosedDate $.Lang}}</p>
                                                </li>
                                                {{end}}
                                            </ul>
                                            {{end}}
                                        </div>
                                    </div>
                                </li>
                            </ul>
                        </div>
                        {{end}}
                    </div>
                    <h4>Milestone</h4>
                    {{if .Milestone}}
                    <p class="completion{{if eq .Milestone.Completeness 0}} hidden{{end}}"><span style="width:{{.Milestone.Completeness}}%">&nbsp;</span></p>
                    <p class="name"><strong><a href="{{$.RepoLink}}/issues?milestone={{.Milestone.ID}}{{if $.Issue.IsClosed}}&state=closed{{end}}">{{.Milestone.Name}}</a></strong></p>
                    {{else}}
                    <p class="name">No milestone</p>
                    {{end}}
                </div>

                <div class="assignee" data-assigned="{{if .Issue.Assignee}}{{.Issue.Assignee.Id}}{{else}}0{{end}}" data-ajax="{{.Issue.Index}}/assignee">{{if .IsRepositoryOwner}}
                    <div class="pull-right action">
                        <button type="button" class="dropdown-toggle btn btn-default btn-sm" data-toggle="dropdown">
                            <i class="fa fa-group"></i>
                            <span class="caret"></span>
                        </button>
                        <div class="dropdown-menu dropdown-menu-right">
                            <ul class="list-unstyled">
                                <li data-uid="0" class="clear-assignee hidden"><i class="fa fa-times-circle-o"></i> Clear assignee</li>
                                {{range .Collaborators}}
                                <li data-uid="{{.Id}}"><img src="{{.AvatarLink}}"><strong>{{.Name}}</strong></li>
                                {{end}}
                            </ul>
                        </div>
                    </div>{{end}}
                    <h4>Assignee</h4>
                    <p>{{if .Issue.Assignee}}<img src="{{.Issue.Assignee.AvatarLink}}"><strong>{{.Issue.Assignee.Name}}</strong>{{else}}No one assigned{{end}}</p>
                </div>
            </div>
        </div>
    </div>
</div>
{{template "base/footer_old" .}}
ption> Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/l10n/de.js
blob: 92a7ea4bf29b9e5c29b8b909d6be80755f1daf29 (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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
OC.L10N.register(
    "files_sharing",
    {
    "Shared with others" : "Von Dir geteilt",
    "Shared with you" : "Mit Dir geteilt",
    "Shared by link" : "Geteilt über einen Link",
    "Deleted shares" : "Gelöschte Freigaben",
    "Shares" : "Freigaben",
    "Nothing shared with you yet" : "Bis jetzt wurde nichts mit Dir geteilt",
    "Files and folders others share with you will show up here" : "Mit Dir geteilte Dateien und Ordner anderer werden hier erscheinen",
    "Nothing shared yet" : "Noch nichts geteilt",
    "Files and folders you share will show up here" : "Von Dir geteilte Dateien und Ordner werden hier erscheinen",
    "No shared links" : "Keine geteilten Links",
    "Files and folders you share by link will show up here" : "Per Link freigegebene Dateien und Ordner werden hier erscheinen",
    "No deleted shares" : "Keine gelöschten Freigaben",
    "Shares you deleted will show up here" : "Von Dir gelöschte Freigaben werden hier erscheinen",
    "No shares" : "Keine Freigaben",
    "Shares will show up here" : "Freigaben werden hier angezeigt",
    "Restore share" : "Freigabe wiederherstellen",
    "Something happened. Unable to restore the share." : "Die Freigabe konnte nicht wiederhergestellt werden.",
    "Move or copy" : "Verschieben oder kopieren",
    "Download" : "Herunterladen",
    "Delete" : " Löschen",
    "You can upload into this folder" : "Du kannst in diesen Ordner hochladen",
    "Terms of service" : "Nutzungsbedingungen",
    "No compatible server found at {remote}" : "Keinen kompatiblen Server unter {remote} gefunden",
    "Invalid server URL" : "Falsche Server-URL",
    "Failed to add the public link to your Nextcloud" : "Fehler beim Hinzufügen des öffentlichen Links zu Deiner Nextcloud",
    "No expiration date set" : "Kein Ablaufdatum gesetzt",
    "Shared by" : "Geteilt von ",
    "File shares" : "Dateifreigaben",
    "Downloaded via public link" : "Über den öffentlichen Link heruntergeladen",
    "Downloaded by {email}" : "Heruntergeladen von {email}",
    "{file} downloaded via public link" : "{file} heruntergeladen mittels öffentlichen Link",
    "{email} downloaded {file}" : "{email} hat {file} heruntergeladen",
    "Shared with group {group}" : "Geteilt mit der Gruppe {group}",
    "Removed share for group {group}" : "Freigabe für die Gruppe {group} entfernt",
    "{actor} shared with group {group}" : "{actor} geteilt mit der Gruppe {group}",
    "{actor} removed share for group {group}" : "{actor} hat die Freigabe für die Gruppe {group} entfernt",
    "You shared {file} with group {group}" : "Du hast {file} mit der Gruppe {group} geteilt",
    "You removed group {group} from {file}" : "Du hast die Gruppe {group} von {file} entfernt",
    "{actor} shared {file} with group {group}" : "{actor} hat {file} mit der Gruppe {group} geteilt",
    "{actor} removed group {group} from {file}" : "{actor} hat die Gruppe {group} von {file} entfernt",
    "Shared as public link" : "Als öffentlichen Link geteilt",
    "Removed public link" : "Öffentlichen Link entfernt",
    "Public link expired" : "Öffentlicher Link ist abgelaufen",
    "{actor} shared as public link" : "{actor} hat einen öffentlichen Link geteilt",
    "{actor} removed public link" : "{actor} hat einen öffentlichen Link entfernt",
    "Public link of {actor} expired" : "Öffentlicher Link von {actor} ist abgelaufen",
    "You shared {file} as public link" : "Du hast {file} über einen öffentlichen Link geteilt",
    "You removed public link for {file}" : "Du hast die öffentliche Freigabe für {file} entfernt",
    "Public link expired for {file}" : "Öffentlicher Link für {file} ist abgelaufen",
    "{actor} shared {file} as public link" : "{actor} hat {file} über einen öffentlichen Link geteilt",
    "{actor} removed public link for {file}" : "{actor} hat einen öffentlichen Link {file} entfernt",
    "Public link of {actor} for {file} expired" : "Öffentlicher Link von {actor} für {file} ist abgelaufen",
    "{user} accepted the remote share" : "{user} hat die externe Freigabe akzeptiert",
    "{user} declined the remote share" : "{user} hat die externe Freigabe abgelehnt",
    "You received a new remote share {file} from {user}" : "Du hast eine neue externe Freigabe {file} von {user} erhalten",
    "{user} accepted the remote share of {file}" : "{user} hat die externe Freigabe von {file} akzeptiert",
    "{user} declined the remote share of {file}" : "{user} hat die externe Freigabe von {file} abgelehnt",
    "{user} unshared {file} from you" : "{user} hat die Freigabe für {file} entfernt",
    "Shared with {user}" : "Geteilt mit {user}",
    "Removed share for {user}" : "Freigabe für {user} entfernt",
    "You removed yourself" : "Du hast Dich selbst entfernt",
    "{actor} removed themselves" : "{actor} hat sich selbst entfernt",
    "{actor} shared with {user}" : "{actor} hat mit {user} geteilt",
    "{actor} removed share for {user}" : "{actor} hat die Freigabe für {user} entfernt",
    "Shared by {actor}" : "Geteilt von {actor}",
    "{actor} removed share" : "{actor} hat die Freigabe entfernt",
    "You shared {file} with {user}" : "Du hast {file} mit {user} geteilt",
    "You removed {user} from {file}" : "Du hast {user} von {file} entfernt",
    "You removed yourself from {file}" : "Du hast Dich selbst entfernt von {file}",
    "{actor} removed themselves from {file}" : "{actor} hat sich selbst entfernt von {file}",
    "{actor} shared {file} with {user}" : "{actor} hat {file} mit {user} geteilt",
    "{actor} removed {user} from {file}" : "{actor} hat {user} von {file} entfernt",
    "{actor} shared {file} with you" : "{actor} hat {file} mit Dir geteilt",
    "{actor} removed you from the share named {file}" : "{actor} hat Dich aus der Freigabe von {file} entfernt",
    "A file or folder shared by mail or by public link was <strong>downloaded</strong>" : "Öffentlich oder per E-Mail geteilte Datei / Ordner wurde <strong>heruntergeladen</strong>",
    "A file or folder was shared from <strong>another server</strong>" : "Eine Datei oder ein Ordner wurde von <strong>einem anderen Server</strong> geteilt",
    "A file or folder has been <strong>shared</strong>" : "Eine Datei oder ein Ordner wurde <strong>geteilt</strong>",
    "Wrong share ID, share doesn't exist" : "Fehlerhafte Freigabe-ID, Freigabe existiert nicht",
    "could not delete share" : "Freigabe konnte nicht gelöscht werden",
    "Could not delete share" : "Freigabe konnte nicht gelöscht werden",
    "Please specify a file or folder path" : "Bitte Datei oder Ordner-Pfad eingeben",
    "Wrong path, file/folder doesn't exist" : "Falscher Pfad, Datei/Ordner existiert nicht",
    "Could not create share" : "Freigabe konnte nicht erstellt werden",
    "invalid permissions" : "Ungültige Berechtigung",
    "Please specify a valid user" : "Bitte gib einen gültigen Benutzer an",
    "Group sharing is disabled by the administrator" : "Die Gruppenfreigabe ist durch den Administrator deaktiviert",
    "Please specify a valid group" : "Bitte gib eine gültige Gruppe an",
    "Public link sharing is disabled by the administrator" : "Die öffentliche Freigabe von Links ist durch den Administrator deaktiviert",
    "Public upload disabled by the administrator" : "Das öffentliche Hochladen ist durch den Administrator deaktiviert",
    "Public upload is only possible for publicly shared folders" : "Das öffentliche Hochladen ist nur für öffentlich freigegebene Ordner erlaubt",
    "Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "%s Freigeben: Senden des Passwortes über Nextcloud Talk gescheitert, da Nextcloud Talk nicht verfügbar ist",
    "Invalid date, date format must be YYYY-MM-DD" : "Ungültiges Datum, das Datumsformat muss JJJJ-MM-TT sein",
    "Sharing %1$s failed because the back end does not allow shares from type %2$s" : "Freigabe von %1$s fehlgeschlagen, da das Backend die Freigabe vom Typ %2$s nicht erlaubt",
    "You cannot share to a Circle if the app is not enabled" : "Du kannst nichts mit einem Kreis teilen, wenn die App nicht aktiviert ist",
    "Please specify a valid circle" : "Bitte einen gültigen Kreis angeben",
    "Sharing %s failed because the back end does not support room shares" : "Freigabe von %s fehlgeschlagen, da das Backend die Freigabe von Räumen nicht unterstützt",
    "Unknown share type" : "Unbekannter Freigabetyp",
    "Not a directory" : "Kein Verzeichnis",
    "Could not lock path" : "Pfad konnte nicht gesperrt werden",
    "Wrong or no update parameter given" : "Es wurde ein falscher oder kein Updateparameter angegeben",
    "Can't change permissions for public share links" : "Berechtigungen für öffentlich freigegebene Links konnten nicht geändert werden",
    "Sharing sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Freigeben: Senden des Passwortes über Nextcloud Talk gescheitert, da Nextcloud Talk nicht verfügbar ist",
    "shared by %s" : "von %s geteilt",
    "Download all files" : "Alle Dateien herunterladen",
    "Direct link" : "Direkter Link",
    "Add to your Nextcloud" : "Zu Deiner Nextcloud hinzufügen",
    "Share API is disabled" : "Teilen-API ist deaktivert",
    "File sharing" : "Dateifreigabe",
    "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Diese App ermöglicht es Nutzern, Dateien innerhalb von Nextcloud freizugeben. Bei aktivierter App kann der Administrator einstellen, welchen Gruppen das Freigeben von Dateien erlaubt ist.. Der zugelassene Nutzer kann dann Dateien und Ordner für andere Gruppen und Nutzer innerhalb der Nextcloud freigeben. Darüberhinaus kann der Administrator die Link-Teilen Funktion freigeben, mit der ein externer Link um Dateien für Nutzer außerhalb der Nextcloud freizugeben. Schließlich kann der Administrator noch Passwortrichtlinien und Ablaufzeiträume vorgeben sowie das Freigeben von Mobilgeräten ermöglichen.\nDas Ausschalten dieser App entfernt die bis dahin erstellten Freigaben für alle Empfänger wie auch für die Sync-Clients und die Apss für Mobilgeräte. Weitere Informationen können in der Nextcloud-Dokumentation abgerufen werden.",
    "Link to a file" : "Mit einer Datei verknüpfen",
    "Shared" : "Geteilt",
    "Share" : "Teilen",
    "Sharing" : "Teilen",
    "No entries found in this folder" : "Keine Einträge in diesem Ordner gefunden",
    "Name" : "Name",
    "Share time" : "Freigabezeitpunkt",
    "Expiration date" : "Ablaufdatum",
    "Sorry, this link doesn’t seem to work anymore." : "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.",
    "Reasons might be:" : "Gründe könnten sein:",
    "the item was removed" : "Das Element wurde entfernt",
    "the link expired" : "Der Link ist abgelaufen",
    "sharing is disabled" : "Teilen ist deaktiviert",
    "For more info, please ask the person who sent this link." : "Um nähere Informationen zu erhalten, wende Dich bitte an die Person, die Dir diesen Link geschickt hat.",
    "Share note" : "Notiz teilen",
    "Toggle grid view" : "Rasteransicht umschalten",
    "Download %s" : "Download %s",
    "Upload files to %s" : "Dateien für %s hochladen",
    "Note" : "Notiz",
    "Select or drop files" : "Dateien auswählen oder hierher ziehen",
    "Uploading files…" : "Dateien werden hochgeladen…",
    "Uploaded files:" : "Hochgeladene Dateien: ",
    "By uploading files, you agree to the %1$sterms of service%2$s." : "Durch das Hochladen von Dateien stimmst Du den %1$sNutzungsbedingungen%2$szu.",
    "Sharing %s failed because the back end does not allow shares from type %s" : "Freigabe von %s fehlgeschlagen, da das Backend die Freigabe vom Typ %s nicht erlaubt."
},
"nplurals=2; plural=(n != 1);");