summaryrefslogtreecommitdiffstats
path: root/templates/repo/header.tmpl
blob: 0e50169486b24868f1f9aabb6754fbbaa59cc7d5 (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
<div class="header-wrapper">
{{with .Repository}}
	<div class="ui container">
		<div class="repo-header">
			<div class="repo-title-wrap df fc">
				<div class="repo-title">
					{{$avatar := (repoAvatar . 32 "mr-3")}}
					{{if $avatar}}
						{{$avatar}}
					{{else}}
						{{template "repo/icon" .}}
					{{end}}
					<a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a>
					<div class="mx-2">/</div>
					<a href="{{$.RepoLink}}">{{.Name}}</a>
					{{if $.EnableFeed}}
						<a href="{{$.RepoLink}}.rss"><i class="ui grey icon tooltip ml-3" data-content="{{$.locale.Tr "rss_feed"}}" data-position="top center">{{svg "octicon-rss" 18}}</i></a>
					{{end}}
					<div class="labels df ac fw">
						{{if .IsTemplate}}
							{{if .IsPrivate}}
								<span class="ui basic label">{{$.locale.Tr "repo.desc.private_template"}}</span>
							{{else}}
								{{if .Owner.Visibility.IsPrivate}}
									<span class="ui basic label">{{$.locale.Tr "repo.desc.internal_template"}}</span>
								{{end}}
							{{end}}
						{{else}}
							{{if .IsPrivate}}
								<span class="ui basic label">{{$.locale.Tr "repo.desc.private"}}</span>
							{{else}}
								{{if .Owner.Visibility.IsPrivate}}
									<span class="ui basic label">{{$.locale.Tr "repo.desc.internal"}}</span>
								{{end}}
							{{end}}
						{{end}}
						{{if .IsArchived}}
							<span class="ui basic label">{{$.locale.Tr "repo.desc.archived"}}</span>
						{{end}}
					</div>
				</div>
				{{if $.IsPullMirror}}
					{{$address := MirrorRemoteAddress $.Context . $.Mirror.GetRemoteName false}}
					<div class="fork-flag">{{$.locale.Tr "repo.mirror_from"}} <a target="_blank" rel="noopener noreferrer" href="{{$address.Address}}">{{$address.Address}}</a></div>
				{{end}}
				{{if .IsFork}}<div class="fork-flag">{{$.locale.Tr "repo.forked_from"}} <a href="{{.BaseRepo.Link}}">{{.BaseRepo.FullName}}</a></div>{{end}}
				{{if .IsGenerated}}<div class="fork-flag">{{$.locale.Tr "repo.generated_from"}} <a href="{{.TemplateRepo.Link}}">{{.TemplateRepo.FullName}}</a></div>{{end}}
			</div>
			{{if not (or .IsBeingCreated .IsBroken)}}
				<div class="repo-buttons">
					{{if $.RepoTransfer}}
						<form method="post" action="{{$.RepoLink}}/action/accept_transfer?redirect_to={{$.RepoLink}}">
							{{$.CsrfTokenHtml}}
							<div class="ui tooltip" data-content="{{if $.CanUserAcceptTransfer}}{{$.locale.Tr "repo.transfer.accept_desc" $.RepoTransfer.Recipient.DisplayName}}{{else}}{{$.locale.Tr "repo.transfer.no_permission_to_accept"}}{{end}}" data-position="bottom center">
								<button type="submit" class="ui button {{if $.CanUserAcceptTransfer}}green {{end}} ok inverted small"{{if not $.CanUserAcceptTransfer}} disabled{{end}}>
									{{$.locale.Tr "repo.transfer.accept"}}
								</button>
							</div>
						</form>
						<form method="post" action="{{$.RepoLink}}/action/reject_transfer?redirect_to={{$.RepoLink}}">
							{{$.CsrfTokenHtml}}
							<div class="ui tooltip" data-content="{{if $.CanUserAcceptTransfer}}{{$.locale.Tr "repo.transfer.reject_desc" $.RepoTransfer.Recipient.DisplayName}}{{else}}{{$.locale.Tr "repo.transfer.no_permission_to_reject"}}{{end}}" data-position="bottom center">
								<button type="submit" class="ui button {{if $.CanUserAcceptTransfer}}red {{end}}ok inverted small"{{if not $.CanUserAcceptTransfer}} disabled{{end}}>
									{{$.locale.Tr "repo.transfer.reject"}}
								</button>
							</div>
						</form>
					{{end}}
					<form method="post" action="{{$.RepoLink}}/action/{{if $.IsWatchingRepo}}un{{end}}watch?redirect_to={{$.Link}}">
						{{$.CsrfTokenHtml}}
						<div class="ui labeled button{{if not $.IsSigned}} tooltip{{end}}"{{if not $.IsSigned}} data-content="{{$.locale.Tr "repo.watch_guest_user"}}" data-position="top center"{{end}}>
							<button type="submit" class="ui compact small basic button"{{if not $.IsSigned}} disabled{{end}}>
								{{if $.IsWatchingRepo}}{{svg "octicon-eye-closed" 16}}{{$.locale.Tr "repo.unwatch"}}{{else}}{{svg "octicon-eye"}}{{$.locale.Tr "repo.watch"}}{{end}}
							</button>
							<a class="ui basic label" href="{{.Link}}/watchers">
								{{CountFmt .NumWatches}}
							</a>
						</div>
					</form>
					{{if not $.DisableStars}}
						<form method="post" action="{{$.RepoLink}}/action/{{if $.IsStaringRepo}}un{{end}}star?redirect_to={{$.Link}}">
							{{$.CsrfTokenHtml}}
							<div class="ui labeled button{{if not $.IsSigned}} tooltip{{end}}"{{if not $.IsSigned}} data-content="{{$.locale.Tr "repo.star_guest_user"}}" data-position="top center"{{end}}>
								<button type="submit" class="ui compact small basic button"{{if not $.IsSigned}} disabled{{end}}>
									{{if $.IsStaringRepo}}{{svg "octicon-star-fill"}}{{$.locale.Tr "repo.unstar"}}{{else}}{{svg "octicon-star"}}{{$.locale.Tr "repo.star"}}{{end}}
								</button>
								<a class="ui basic label" href="{{.Link}}/stars">
									{{CountFmt .NumStars}}
								</a>
							</div>
						</form>
					{{end}}
					{{if and (not .IsEmpty) ($.Permission.CanRead $.UnitTypeCode)}}
						<div class="ui labeled button
							{{if or (not $.IsSigned) (and (not $.CanSignedUserFork) (eq (len $.UserAndOrgForks) 0))}}
								tooltip disabled
							{{end}}"
							{{if not $.IsSigned}}
								data-content="{{$.locale.Tr "repo.fork_guest_user"}}"
							{{else if and (not $.CanSignedUserFork) (eq (len $.UserAndOrgForks) 0)}}
								data-content="{{$.locale.Tr "repo.fork_from_self"}}"
							{{end}}
						data-position="top center">
							<a class="ui compact{{if $.ShowForkModal}} show-modal{{end}} small basic button"
								{{if not $.CanSignedUserFork}}
									{{if gt (len $.UserAndOrgForks) 1}}
										data-modal="#fork-repo-modal"
									{{else if eq (len $.UserAndOrgForks) 1}}
										href="{{AppSubUrl}}/{{(index $.UserAndOrgForks 0).FullName}}"
									{{/*else is not required here, because the button shouldn't link to any site if you can't create a fork*/}}
									{{end}}
								{{else if eq (len $.UserAndOrgForks) 0}}
									href="{{AppSubUrl}}/repo/fork/{{.ID}}"
								{{else}}
									data-modal="#fork-repo-modal"
								{{end}}
							>
								{{svg "octicon-repo-forked"}}{{$.locale.Tr "repo.fork"}}
							</a>
							<div class="ui small modal" id="fork-repo-modal">
								{{svg "octicon-x" 16 "close inside"}}
								<div class="header">
									{{$.locale.Tr "repo.already_forked" .Name}}
								</div>
								<div class="content tl">
									<div class="ui list">
										{{range $.UserAndOrgForks}}
											<div class="ui item py-3">
												<a href="{{.Link}}">
													{{svg "octicon-repo-forked" 16 "mr-3"}}{{.FullName}}
												</a>
											</div>
										{{end}}
									</div>
									{{if $.CanSignedUserFork}}
									<div class="ui divider"></div>
									<a href="{{AppSubUrl}}/repo/fork/{{.ID}}">
										{{$.locale.Tr "repo.fork_to_different_account"}}
									</a>
									{{end}}
								</div>
							</div>
							<a class="ui basic label" href="{{.Link}}/forks">
								{{CountFmt .NumForks}}
							</a>
						</div>
					{{end}}
				</div>
			{{end}}
		</div><!-- end grid -->
	</div><!-- end container -->
{{end}}
	<div class="ui tabs container">
		{{if not (or .Repository.IsBeingCreated .Repository.IsBroken)}}
			<div class="ui tabular stackable menu navbar">
				{{if .Permission.CanRead $.UnitTypeCode}}
				<a class="{{if .PageIsViewCode}}active {{end}}item" href="{{.RepoLink}}{{if (ne .BranchName .Repository.DefaultBranch)}}/src/{{.BranchNameSubURL}}{{end}}">
					{{svg "octicon-code"}} {{.locale.Tr "repo.code"}}
				</a>
				{{end}}

				{{if .Permission.CanRead $.UnitTypeIssues}}
					<a class="{{if .PageIsIssueList}}active {{end}}item" href="{{.RepoLink}}/issues">
						{{svg "octicon-issue-opened"}} {{.locale.Tr "repo.issues"}}
						{{if .Repository.NumOpenIssues}}
							<span class="ui primary small label">{{CountFmt .Repository.NumOpenIssues}}</span>
						{{end}}
					</a>
				{{end}}

				{{if .Permission.CanRead $.UnitTypeExternalTracker}}
					<a class="{{if .PageIsIssueList}}active {{end}}item" href="{{.RepoExternalIssuesLink}}" target="_blank" rel="noopener noreferrer">
						{{svg "octicon-link-external"}} {{.locale.Tr "repo.issues"}} </span>
					</a>
				{{end}}

				{{if and .Repository.CanEnablePulls (.Permission.CanRead $.UnitTypePullRequests)}}
					<a class="{{if .PageIsPullList}}active {{end}}item" href="{{.RepoLink}}/pulls">
						{{svg "octicon-git-pull-request"}} {{.locale.Tr "repo.pulls"}}
						{{if .Repository.NumOpenPulls}}
							<span class="ui primary small label">{{CountFmt .Repository.NumOpenPulls}}</span>
						{{end}}
					</a>
				{{end}}

				{{if and .EnableActions (not .UnitActionsGlobalDisabled) (.Permission.CanRead $.UnitTypeActions)}}
					<a class="{{if .PageIsActions}}active {{end}}item" href="{{.RepoLink}}/actions">
						{{svg "octicon-play"}} {{.locale.Tr "actions.actions"}}
						{{if .Repository.NumOpenActionRuns}}
							<span class="ui primary small label">{{CountFmt .Repository.NumOpenActionRuns}}</span>
						{{end}}
					</a>
				{{end}}

				{{if .Permission.CanRead $.UnitTypePackages}}
					<a href="{{.RepoLink}}/packages" class="{{if .IsPackagesPage}}active {{end}}item">
						{{svg "octicon-package"}} {{.locale.Tr "packages.title"}}
					</a>
				{{end}}

				{{if and (not .UnitProjectsGlobalDisabled) (.Permission.CanRead $.UnitTypeProjects)}}
					<a href="{{.RepoLink}}/projects" class="{{if .IsProjectsPage}}active {{end}}item">
						{{svg "octicon-project"}} {{.locale.Tr "repo.project_board"}}
						{{if .Repository.NumOpenProjects}}
							<span class="ui primary small label">{{CountFmt .Repository.NumOpenProjects}}</span>
						{{end}}
					</a>
				{{end}}

				{{if and (.Permission.CanRead $.UnitTypeReleases) (not .IsEmptyRepo)}}
				<a class="{{if .PageIsReleaseList}}active {{end}}item" href="{{.RepoLink}}/releases">
					{{svg "octicon-tag"}} {{.locale.Tr "repo.releases"}}
					{{if .NumReleases}}
						<span class="ui primary small label">{{CountFmt .NumReleases}}</span>
					{{end}}
				</a>
				{{end}}

				{{if or (.Permission.CanRead $.UnitTypeWiki) (.Permission.CanRead $.UnitTypeExternalWiki)}}
					<a class="{{if .PageIsWiki}}active {{end}}item" href="{{.RepoLink}}/wiki" {{if and (.Permission.CanRead $.UnitTypeExternalWiki) (not (HasPrefix ((.Repository.MustGetUnit $.Context $.UnitTypeExternalWiki).ExternalWikiConfig.ExternalWikiURL) (.Repository.HTMLURL)))}} target="_blank" rel="noopener noreferrer" {{end}}>
						{{svg "octicon-book"}} {{.locale.Tr "repo.wiki"}}
					</a>
				{{end}}

				{{if and (.Permission.CanReadAny $.UnitTypePullRequests $.UnitTypeIssues $.UnitTypeReleases) (not .IsEmptyRepo)}}
					<a class="{{if .PageIsActivity}}active {{end}}item" href="{{.RepoLink}}/activity">
						{{svg "octicon-pulse"}} {{.locale.Tr "repo.activity"}}
					</a>
				{{end}}

				{{template "custom/extra_tabs" .}}

				{{if .Permission.IsAdmin}}
					<div class="right menu">
						<a class="{{if .PageIsSettings}}active {{end}}item" href="{{.RepoLink}}/settings">
							{{svg "octicon-tools"}} {{.locale.Tr "repo.settings"}}
						</a>
					</div>
				{{end}}
			</div>
		{{else if .Permission.IsAdmin}}
			<div class="ui tabular stackable menu navbar">
				<div class="right menu">
					<a class="{{if .PageIsSettings}}active {{end}}item" href="{{.RepoLink}}/settings">
						{{svg "octicon-tools"}} {{.locale.Tr "repo.settings"}}
					</a>
				</div>
			</div>
		{{end}}
	</div>
	<div class="ui tabs divider"></div>
</div>
e30'>backport/48871/stable30 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/apps/files/l10n/bn_BD.json
blob: 323c03185b9f8719a666d66b2e081c4cff8feb26 (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
{ "translations": {
    "Storage not available" : "সংরক্ষণের স্থান নেই",
    "Storage invalid" : "সংরক্ষণাগার বৈধ নয়",
    "Unknown error" : "অজানা জটিলতা",
    "Could not move %s - File with this name already exists" : "%s কে স্থানান্তর করা সম্ভব হলো না -  এই নামের ফাইল বিদ্যমান",
    "Could not move %s" : "%s  কে স্থানান্তর করা সম্ভব হলো না",
    "Permission denied" : "অনুমতি দেয়া হয়নি",
    "File name cannot be empty." : "ফাইলের নামটি ফাঁকা রাখা যাবে না।",
    "\"%s\" is an invalid file name." : "\"%s\" টি একটি অননুমোদিত ফাইল নাম।",
    "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "নামটি সঠিক নয়,  '\\', '/', '<', '>', ':', '\"', '|', '?' এবং  '*'  অনুমোদিত নয়।",
    "Error when creating the file" : "ফাইলটি তৈরী করতে যেয়ে সমস্যা হলো",
    "Folder name cannot be empty." : "ফোল্ডার নামটি ফাঁকা রাখা যাবে না।",
    "Error when creating the folder" : "ফোল্ডার তৈরী করতে যেয়ে সমস্যা হলো",
    "Unable to set upload directory." : "েআপলোড ডিরেক্টরি নির্ধারণ করা গেলনা।",
    "No file was uploaded. Unknown error" : "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।",
    "There is no error, the file uploaded with success" : "কোন সমস্যা হয় নি, ফাইল আপলোড সুসম্পন্ন হয়েছে।",
    "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "আপলোড করা  ফাইলটি php.ini তে বর্ণিত  upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ",
    "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "আপলোড করা ফাইলটি  HTML  ফর্মে উল্লিখিত MAX_FILE_SIZE নির্ধারিত ফাইলের সর্বোচ্চ আকার  অতিক্রম করতে চলেছে ",
    "The uploaded file was only partially uploaded" : "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে",
    "No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি",
    "Missing a temporary folder" : "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে",
    "Failed to write to disk" : "ডিস্কে লিখতে ব্যর্থ",
    "Not enough storage available" : "সংরক্ষণের যথেষ্ট জায়গা প্রাপ্তব্য নয়",
    "Invalid directory." : "ভুল ডিরেক্টরি",
    "Files" : "ফাইল",
    "All files" : "সব ফাইল",
    "Favorites" : "প্রিয়জন",
    "Home" : "নিবাস",
    "Upload cancelled." : "আপলোড বাতিল করা হয়েছে।",
    "File upload is in progress. Leaving the page now will cancel the upload." : "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।",
    "{new_name} already exists" : "{new_name} টি বিদ্যমান",
    "Rename" : "পূনঃনামকরণ",
    "Delete" : "মুছে",
    "Unshare" : "ভাগাভাগি বাতিল ",
    "Download" : "ডাউনলোড",
    "Pending" : "মুলতুবি",
    "Error moving file." : "ফাইল সরাতে সমস্যা হলো।",
    "Error moving file" : "ফাইল সরাতে সমস্যা হলো",
    "Error" : "সমস্যা",
    "Could not rename file" : "ফাইলের পূণঃনামকরণ করা গেলনা",
    "Name" : "রাম",
    "Size" : "আকার",
    "Modified" : "পরিবর্তিত",
    "_%n folder_::_%n folders_" : ["",""],
    "_%n file_::_%n files_" : ["",""],
    "_Uploading %n file_::_Uploading %n files_" : ["%n ফাইল আপলোড হচ্ছে","%n ফাইল আপলোড হচ্ছে"],
    "\"{name}\" is an invalid file name." : "\"{name}\" টি একটি অননুমোদিত ফাইল নাম।",
    "Your storage is almost full ({usedSpacePercent}%)" : "আপনার সংরক্ষণাধার প্রায় পরিপূর্ণ ({usedSpacePercent}%) ",
    "_matches '{filter}'_::_match '{filter}'_" : ["",""],
    "Favorite" : "প্রিয়জন",
    "A new file or folder has been <strong>created</strong>" : "একটি ফাইল বা ফোলডার <strong>তৈরি</strong> করা হয়েছে",
    "A file or folder has been <strong>changed</strong>" : "একটি ফাইল বা ফোলডার <strong>পরিবরতন</strong> করা হয়েছে",
    "A file or folder has been <strong>deleted</strong>" : "একটি ফাইল বা ফোলডার <strong>মোছা</strong> হয়েছে",
    "You created %1$s" : "আপনি তৈরি করেছেন %1$s",
    "%2$s created %1$s" : "%2$s তৈরি হয়েছে %1$s",
    "%1$s was created in a public folder" : "একটি পাবলিক ফোল্ডারে %1$s তৈরী করা হয়েছে",
    "You changed %1$s" : "আপনি পরিবরতন করেছেন %1$s",
    "%2$s changed %1$s" : "%2$s পরিবরতন করেছে %1$s",
    "You deleted %1$s" : "আপনি ডিলিট করেছেন %1$s",
    "%2$s deleted %1$s" : "%2$s ডিলিট করেছে %1$s",
    "File handling" : "ফাইল হ্যার্ডলিং",
    "Maximum upload size" : "আপলোডের সর্বোচ্চ আকার",
    "max. possible: " : "অনুমোদিত  সর্বোচ্চ  আকার",
    "Save" : "সংরক্ষণ",
    "Settings" : "নিয়ামকসমূহ",
    "WebDAV" : "WebDAV",
    "New" : "নতুন",
    "Text file" : "টেক্সট ফাইল",
    "New folder" : "নব ফােলডার",
    "Folder" : "ফোল্ডার",
    "Upload" : "আপলোড",
    "Cancel upload" : "আপলোড বাতিল কর",
    "Upload too large" : "আপলোডের আকারটি অনেক বড়",
    "The files you are trying to upload exceed the maximum size for file uploads on this server." : "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন ",
    "Files are being scanned, please wait." : "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}