mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add Indonesian localization (#2356)

* Add Indonesian (id) locale

* Add Indonesian translation messages

* Update team number and add some translation

* Update for better ID translation

* Apply suggestions from code review

Co-authored-by: Aditya Dirgantara <ccoremapd@icloud.com>
Co-authored-by: Mary <148872143+mary-ext@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Aditya Dirgantara <ccoremapd@icloud.com>

* Apply suggestions from code review

Co-authored-by: Mary <148872143+mary-ext@users.noreply.github.com>

* Change translation post to postingan

* Update translation

* Fix error

* Apply suggestions from code review

Co-authored-by: Mary <148872143+mary-ext@users.noreply.github.com>

* Add Thinkbyte1024 and mary-ext to language team ID

* Update username to lowercase

---------

Co-authored-by: Aditya Dirgantara <ccoremapd@icloud.com>
Co-authored-by: Mary <148872143+mary-ext@users.noreply.github.com>
Co-authored-by: Ansh <anshnanda10@gmail.com>

authored by

Danni
Aditya Dirgantara
Mary
Ansh
and committed by
GitHub
d7f4e139 dda5ca27

+2493 -3
+1 -1
lingui.config.js
··· 1 1 /** @type {import('@lingui/conf').LinguiConfig} */ 2 2 module.exports = { 3 - locales: ['en', 'hi', 'ja', 'fr', 'de', 'es', 'ko', 'es', 'pt-BR', 'uk'], 3 + locales: ['en', 'hi', 'ja', 'fr', 'de', 'es', 'ko', 'es', 'pt-BR', 'uk', 'id'], 4 4 catalogs: [ 5 5 { 6 6 path: '<rootDir>/src/locale/locales/{locale}/messages',
+1
src/locale/__tests__/helpers.test.ts
··· 7 7 expect(sanitizeAppLanguageSetting('en')).toBe(AppLanguage.en) 8 8 expect(sanitizeAppLanguageSetting('pt-BR')).toBe(AppLanguage.pt_BR) 9 9 expect(sanitizeAppLanguageSetting('hi')).toBe(AppLanguage.hi) 10 + expect(sanitizeAppLanguageSetting('id')).toBe(AppLanguage.id) 10 11 expect(sanitizeAppLanguageSetting('foo')).toBe(AppLanguage.en) 11 12 expect(sanitizeAppLanguageSetting('en,foo')).toBe(AppLanguage.en) 12 13 expect(sanitizeAppLanguageSetting('foo,en')).toBe(AppLanguage.en)
+2 -2
src/locale/helpers.ts
··· 113 113 // DISABLED until this translation is fixed -prf 114 114 // case 'de': 115 115 // return AppLanguage.de 116 - // DISABLED until this translation is more thoroughly reviewed -prf 116 + case 'id': 117 + return AppLanguage.id 117 118 case 'es': 118 119 return AppLanguage.es 119 120 case 'fr': ··· 132 133 continue 133 134 } 134 135 } 135 - 136 136 return AppLanguage.en 137 137 }
+5
src/locale/i18n.ts
··· 5 5 import {messages as messagesEn} from '#/locale/locales/en/messages' 6 6 // DISABLED until this translation is fixed -prf 7 7 // import {messages as messagesDe} from '#/locale/locales/de/messages' 8 + import {messages as messagesId} from '#/locale/locales/id/messages' 8 9 import {messages as messagesEs} from '#/locale/locales/es/messages' 9 10 import {messages as messagesFr} from '#/locale/locales/fr/messages' 10 11 import {messages as messagesHi} from '#/locale/locales/hi/messages' ··· 26 27 // i18n.loadAndActivate({locale, messages: messagesDe}) 27 28 // break 28 29 // } 30 + case AppLanguage.id: { 31 + i18n.loadAndActivate({locale, messages: messagesId}) 32 + break 33 + } 29 34 case AppLanguage.es: { 30 35 i18n.loadAndActivate({locale, messages: messagesEs}) 31 36 break
+4
src/locale/i18n.web.ts
··· 17 17 // mod = await import(`./locales/de/messages`) 18 18 // break 19 19 // } 20 + case AppLanguage.id: { 21 + mod = await import(`./locales/id/messages`) 22 + break 23 + } 20 24 case AppLanguage.es: { 21 25 mod = await import(`./locales/es/messages`) 22 26 break
+2
src/locale/languages.ts
··· 8 8 en = 'en', 9 9 // DISABLED until this translation is fixed -prf 10 10 // de = 'de', 11 + id = 'id', 11 12 es = 'es', 12 13 fr = 'fr', 13 14 hi = 'hi', ··· 26 27 {code2: AppLanguage.en, name: 'English'}, 27 28 // DISABLED until this translation is fixed -prf 28 29 // {code2: AppLanguage.de, name: 'Deutsch'}, 30 + {code2: AppLanguage.id, name: 'Indonesian'}, 29 31 {code2: AppLanguage.es, name: 'Español'}, 30 32 {code2: AppLanguage.fr, name: 'Français'}, 31 33 {code2: AppLanguage.hi, name: 'हिंदी'},
+2478
src/locale/locales/id/messages.po
··· 1 + msgid "" 2 + msgstr "" 3 + "POT-Creation-Date: 2023-12-28 11:56+07000\n" 4 + "MIME-Version: 1.0\n" 5 + "Content-Type: text/plain; charset=utf-8\n" 6 + "Content-Transfer-Encoding: 8bit\n" 7 + "X-Generator: @lingui/cli\n" 8 + "Language: id\n" 9 + "Project-Id-Version: \n" 10 + "Report-Msgid-Bugs-To: \n" 11 + "PO-Revision-Date: \n" 12 + "Last-Translator: danninov\n" 13 + "Language-Team: danninov, thinkbyte1024, mary-ext\n" 14 + "Plural-Forms: \n" 15 + 16 + #: src/view/shell/desktop/RightNav.tsx:160 17 + msgid "{0, plural, one {# invite code available} other {# invite codes available}}" 18 + msgstr "{0, plural, one {# kode undangan tersedia} other {# kode undangan tersedia}}" 19 + 20 + #: src/view/com/modals/Repost.tsx:44 21 + msgid "{0}" 22 + msgstr "{0}" 23 + 24 + #: src/view/com/modals/CreateOrEditList.tsx:176 25 + msgid "{0} {purposeLabel} List" 26 + msgstr "Daftar {purposeLabel} {0}" 27 + 28 + #: src/view/shell/desktop/RightNav.tsx:143 29 + msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" 30 + msgstr "{invitesAvailable, plural, one {Kode undangan: # tersedia} other {Kode undangan: # tersedia}}" 31 + 32 + #: src/view/screens/Settings.tsx:407 33 + #: src/view/shell/Drawer.tsx:659 34 + msgid "{invitesAvailable} invite code available" 35 + msgstr "{invitesAvailable} kode undangan tersedia" 36 + 37 + #: src/view/screens/Settings.tsx:409 38 + #: src/view/shell/Drawer.tsx:661 39 + msgid "{invitesAvailable} invite codes available" 40 + msgstr "{invitesAvailable} kode undangan tersedia" 41 + 42 + #: src/view/screens/Search/Search.tsx:87 43 + msgid "{message}" 44 + msgstr "{message}" 45 + 46 + #: src/view/com/threadgate/WhoCanReply.tsx:158 47 + msgid "<0/> members" 48 + msgstr "<0/> anggota" 49 + 50 + #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:30 51 + msgid "<0>Choose your</0><1>Recommended</1><2>Feeds</2>" 52 + msgstr "<0>Pilih</0><1>Rekomendasi</1><2>Feed</2>" 53 + 54 + #: src/view/com/auth/onboarding/RecommendedFollows.tsx:37 55 + msgid "<0>Follow some</0><1>Recommended</1><2>Users</2>" 56 + msgstr "<0>Ikuti</0><1>Rekomendasi</1><2>Pengguna</2>" 57 + 58 + #: src/view/com/util/moderation/LabelInfo.tsx:45 59 + msgid "A content warning has been applied to this {0}." 60 + msgstr "Peringatan konten telah diterapkan pada {0}" 61 + 62 + #: src/lib/hooks/useOTAUpdate.ts:16 63 + msgid "A new version of the app is available. Please update to continue using the app." 64 + msgstr "Versi terbaru aplikasi telah tersedia. Mohon perbarui untuk melanjutkan." 65 + 66 + #: src/view/com/modals/EditImage.tsx:299 67 + #: src/view/screens/Settings.tsx:417 68 + msgid "Accessibility" 69 + msgstr "Aksesibilitas" 70 + 71 + #: src/view/com/auth/login/LoginForm.tsx:159 72 + #: src/view/screens/Settings.tsx:286 73 + msgid "Account" 74 + msgstr "Akun" 75 + 76 + #: src/view/com/util/AccountDropdownBtn.tsx:41 77 + msgid "Account options" 78 + msgstr "Preferensi akun" 79 + 80 + #: src/view/com/modals/ListAddRemoveUsers.tsx:264 81 + #: src/view/com/modals/UserAddRemoveLists.tsx:193 82 + #: src/view/screens/ProfileList.tsx:754 83 + msgid "Add" 84 + msgstr "Tambah" 85 + 86 + #: src/view/com/modals/SelfLabel.tsx:56 87 + msgid "Add a content warning" 88 + msgstr "Tambahkan peringatan konten" 89 + 90 + #: src/view/screens/ProfileList.tsx:744 91 + msgid "Add a user to this list" 92 + msgstr "Tambahkan pengguna ke daftar ini" 93 + 94 + #: src/view/screens/Settings.tsx:355 95 + #: src/view/screens/Settings.tsx:364 96 + msgid "Add account" 97 + msgstr "Tambahkan akun" 98 + 99 + #: src/view/com/composer/photos/Gallery.tsx:119 100 + #: src/view/com/composer/photos/Gallery.tsx:180 101 + msgid "Add alt text" 102 + msgstr "Tambahkan teks alt" 103 + 104 + #: src/view/com/modals/report/InputIssueDetails.tsx:41 105 + #: src/view/com/modals/report/Modal.tsx:191 106 + msgid "Add details" 107 + msgstr "Tambahkan detail" 108 + 109 + #: src/view/com/modals/report/Modal.tsx:194 110 + msgid "Add details to report" 111 + msgstr "Tambahkan detail ke laporan" 112 + 113 + #: src/view/com/composer/Composer.tsx:438 114 + msgid "Add link card" 115 + msgstr "Tambahkan kartu tautan" 116 + 117 + #: src/view/com/composer/Composer.tsx:441 118 + msgid "Add link card:" 119 + msgstr "Tambahkan kartu tautan:" 120 + 121 + #: src/view/com/modals/ChangeHandle.tsx:415 122 + msgid "Add the following DNS record to your domain:" 123 + msgstr "Tambahkan DNS record berikut ke domain Anda:" 124 + 125 + #: src/view/com/profile/ProfileHeader.tsx:353 126 + msgid "Add to Lists" 127 + msgstr "Tambahkan ke Daftar" 128 + 129 + #: src/view/screens/ProfileFeed.tsx:270 130 + msgid "Add to my feeds" 131 + msgstr "Tambakan ke feed saya" 132 + 133 + #: src/view/com/modals/ListAddRemoveUsers.tsx:191 134 + #: src/view/com/modals/UserAddRemoveLists.tsx:128 135 + msgid "Added to list" 136 + msgstr "Telah ditambahkan ke daftar" 137 + 138 + #: src/view/screens/PreferencesHomeFeed.tsx:164 139 + msgid "Adjust the number of likes a reply must have to be shown in your feed." 140 + msgstr "Atur jumlah suka dari balasan yang akan ditampilkan di feed Anda." 141 + 142 + #: src/view/com/modals/SelfLabel.tsx:75 143 + msgid "Adult Content" 144 + msgstr "Konten Dewasa" 145 + 146 + #: src/view/screens/Settings.tsx:569 147 + msgid "Advanced" 148 + msgstr "Lanjutan" 149 + 150 + #: src/view/com/composer/photos/Gallery.tsx:130 151 + msgid "ALT" 152 + msgstr "ALT" 153 + 154 + #: src/view/com/modals/EditImage.tsx:315 155 + msgid "Alt text" 156 + msgstr "Teks alt" 157 + 158 + #: src/view/com/composer/photos/Gallery.tsx:209 159 + msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." 160 + msgstr "Teks alt mendeskripsikan gambar untuk pengguna disabilitas netra, serta memberikan konteks ke semua orang." 161 + 162 + #: src/view/com/modals/VerifyEmail.tsx:118 163 + msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." 164 + msgstr "Email telah dikirim ke {0} berisikan kode konfirmasi yang bisa dimasukkan di bawah ini." 165 + 166 + #: src/view/com/modals/ChangeEmail.tsx:119 167 + msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." 168 + msgstr "Email telah dikirim ke alamat Anda sebelumnya, {0}. Masukkan kode konfirmasi yang terdapat di dalamnya di bawah ini." 169 + 170 + #: src/view/com/notifications/FeedItem.tsx:236 171 + #: src/view/com/threadgate/WhoCanReply.tsx:178 172 + msgid "and" 173 + msgstr "dan" 174 + 175 + #: src/view/screens/LanguageSettings.tsx:95 176 + msgid "App Language" 177 + msgstr "Bahasa Aplikasi" 178 + 179 + #: src/view/screens/Settings.tsx:589 180 + msgid "App passwords" 181 + msgstr "Kata sandi aplikasi" 182 + 183 + #: src/view/screens/AppPasswords.tsx:186 184 + msgid "App Passwords" 185 + msgstr "Kata sandi Aplikasi" 186 + 187 + #: src/view/com/util/forms/PostDropdownBtn.tsx:236 188 + msgid "Appeal content warning" 189 + msgstr "Ajukan banding peringatan konten" 190 + 191 + #: src/view/com/modals/AppealLabel.tsx:65 192 + msgid "Appeal Content Warning" 193 + msgstr "Ajukan Banding Peringatan Konten" 194 + 195 + #: src/view/com/modals/AppealLabel.tsx:65 196 + #~ msgid "Appeal Decision" 197 + #~ msgstr "Keputusan Banding" 198 + 199 + #: src/view/com/util/moderation/LabelInfo.tsx:52 200 + msgid "Appeal this decision" 201 + msgstr "Ajukan banding untuk keputusan ini" 202 + 203 + #: src/view/com/util/moderation/LabelInfo.tsx:56 204 + msgid "Appeal this decision." 205 + msgstr "Ajukan banding untuk keputusan ini." 206 + 207 + #: src/view/screens/Settings.tsx:432 208 + msgid "Appearance" 209 + msgstr "Tampilan" 210 + 211 + #: src/view/screens/AppPasswords.tsx:223 212 + msgid "Are you sure you want to delete the app password \"{name}\"?" 213 + msgstr "Anda yakin untuk menghapus kata sandi aplikasi \"{name}\"?" 214 + 215 + #: src/view/com/composer/Composer.tsx:142 216 + msgid "Are you sure you'd like to discard this draft?" 217 + msgstr "Anda yakin untuk membuang draf ini?" 218 + 219 + #: src/view/screens/ProfileList.tsx:352 220 + msgid "Are you sure?" 221 + msgstr "Anda yakin?" 222 + 223 + #: src/view/com/util/forms/PostDropdownBtn.tsx:219 224 + msgid "Are you sure? This cannot be undone." 225 + msgstr "Anda yakin? Ini tidak dapat dibatalkan" 226 + 227 + #: src/view/com/modals/SelfLabel.tsx:123 228 + msgid "Artistic or non-erotic nudity." 229 + msgstr "Ketelanjangan artistik atau non-erotis." 230 + 231 + #: src/view/com/auth/create/CreateAccount.tsx:141 232 + #: src/view/com/auth/login/ChooseAccountForm.tsx:151 233 + #: src/view/com/auth/login/ForgotPasswordForm.tsx:166 234 + #: src/view/com/auth/login/LoginForm.tsx:249 235 + #: src/view/com/auth/login/SetNewPasswordForm.tsx:148 236 + #: src/view/com/modals/report/InputIssueDetails.tsx:45 237 + #: src/view/com/post-thread/PostThread.tsx:388 238 + #: src/view/com/post-thread/PostThread.tsx:438 239 + #: src/view/com/post-thread/PostThread.tsx:446 240 + #: src/view/com/profile/ProfileHeader.tsx:672 241 + msgid "Back" 242 + msgstr "Kembali" 243 + 244 + #: src/view/screens/Settings.tsx:461 245 + msgid "Basics" 246 + msgstr "Dasar" 247 + 248 + #: src/view/com/auth/create/Step2.tsx:131 249 + #: src/view/com/modals/BirthDateSettings.tsx:72 250 + msgid "Birthday" 251 + msgstr "Tanggal lahir" 252 + 253 + #: src/view/screens/Settings.tsx:312 254 + msgid "Birthday:" 255 + msgstr "Tanggal lahir:" 256 + 257 + #: src/view/com/profile/ProfileHeader.tsx:282 258 + #: src/view/com/profile/ProfileHeader.tsx:389 259 + msgid "Block Account" 260 + msgstr "Blokir Akun" 261 + 262 + #: src/view/screens/ProfileList.tsx:522 263 + msgid "Block accounts" 264 + msgstr "Blokir akun" 265 + 266 + #: src/view/screens/ProfileList.tsx:472 267 + msgid "Block list" 268 + msgstr "Daftar blokir" 269 + 270 + #: src/view/screens/ProfileList.tsx:307 271 + msgid "Block these accounts?" 272 + msgstr "Blokir akun ini?" 273 + 274 + #: src/view/screens/Moderation.tsx:123 275 + msgid "Blocked accounts" 276 + msgstr "Akun yang diblokir" 277 + 278 + #: src/view/screens/ModerationBlockedAccounts.tsx:107 279 + msgid "Blocked Accounts" 280 + msgstr "Akun yang diblokir" 281 + 282 + #: src/view/com/profile/ProfileHeader.tsx:284 283 + msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." 284 + msgstr "Akun yang diblokir tidak dapat membalas postingan Anda, menyebutkan Anda, dan interaksi lain dengan Anda." 285 + 286 + #: src/view/screens/ModerationBlockedAccounts.tsx:115 287 + msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." 288 + msgstr "Akun yang diblokir tidak dapat membalas postingan Anda, menyebutkan Anda, dan interaksi lain dengan Anda. Anda tidak akan melihat konten mereka dan mereka akan dicegah melihat konten Anda." 289 + 290 + #: src/view/com/post-thread/PostThread.tsx:250 291 + msgid "Blocked post." 292 + msgstr "Postingan yang diblokir." 293 + 294 + #: src/view/screens/ProfileList.tsx:309 295 + msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." 296 + msgstr "Blokir bersifat publik. Akun yang diblokir tidak dapat membalas postingan Anda, menyebutkan Anda, dan interaksi lain dengan Anda." 297 + 298 + #: src/view/com/auth/HomeLoggedOutCTA.tsx:93 299 + msgid "Blog" 300 + msgstr "Blog" 301 + 302 + #: src/view/com/auth/HomeLoggedOutCTA.tsx:31 303 + msgid "Bluesky" 304 + msgstr "Bluesky" 305 + 306 + #: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 307 + msgid "Bluesky is flexible." 308 + msgstr "Bluesky itu fleksibel." 309 + 310 + #: src/view/com/auth/onboarding/WelcomeMobile.tsx:69 311 + msgid "Bluesky is open." 312 + msgstr "Bluesky itu terbuka." 313 + 314 + #: src/view/com/auth/onboarding/WelcomeMobile.tsx:56 315 + msgid "Bluesky is public." 316 + msgstr "Bluesky bersifat publik." 317 + 318 + #: src/view/com/modals/Waitlist.tsx:70 319 + msgid "Bluesky uses invites to build a healthier community. If you don't know anybody with an invite, you can sign up for the waitlist and we'll send one soon." 320 + msgstr "Bluesky menggunakan undangan untuk membangun komunitas yang sehat. Jika Anda tidak tahu orang lain yang memiliki undangan, Anda bisa mendaftar di daftar tunggu dan kami akan segera mengirimkan undangannya." 321 + 322 + #: src/view/screens/Moderation.tsx:225 323 + msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." 324 + msgstr "Bluesky tidak akan menampilkan profil dan postingan Anda ke pengguna yang tidak login. Aplikasi lain mungkin tidak menghormati permintaan ini. Ini tidak membuat akun Anda menjadi privat." 325 + 326 + #: src/view/com/modals/ServerInput.tsx:78 327 + msgid "Bluesky.Social" 328 + msgstr "Bluesky.Social" 329 + 330 + #: src/view/screens/Settings.tsx:718 331 + msgid "Build version {0} {1}" 332 + msgstr "Versi {0} {1}" 333 + 334 + #: src/view/com/auth/HomeLoggedOutCTA.tsx:87 335 + msgid "Business" 336 + msgstr "Bisnis" 337 + 338 + #: src/view/com/composer/photos/OpenCameraBtn.tsx:60 339 + #: src/view/com/util/UserAvatar.tsx:221 340 + #: src/view/com/util/UserBanner.tsx:38 341 + msgid "Camera" 342 + msgstr "Kamera" 343 + 344 + #: src/view/com/modals/AddAppPasswords.tsx:214 345 + msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." 346 + msgstr "Hanya dapat terdiri dari huruf, angka, spasi, tanda hubung dan garis bawah. Minimal 4 karakter, namun tidak boleh lebih dari 32 karakter." 347 + 348 + #: src/view/com/composer/Composer.tsx:285 349 + #: src/view/com/composer/Composer.tsx:288 350 + #: src/view/com/modals/AltImage.tsx:128 351 + #: src/view/com/modals/ChangeEmail.tsx:218 352 + #: src/view/com/modals/ChangeEmail.tsx:220 353 + #: src/view/com/modals/Confirm.tsx:88 354 + #: src/view/com/modals/CreateOrEditList.tsx:267 355 + #: src/view/com/modals/CreateOrEditList.tsx:272 356 + #: src/view/com/modals/DeleteAccount.tsx:150 357 + #: src/view/com/modals/DeleteAccount.tsx:223 358 + #: src/view/com/modals/EditImage.tsx:323 359 + #: src/view/com/modals/EditProfile.tsx:248 360 + #: src/view/com/modals/LinkWarning.tsx:85 361 + #: src/view/com/modals/Repost.tsx:73 362 + #: src/view/com/modals/Waitlist.tsx:136 363 + #: src/view/screens/Search/Search.tsx:584 364 + #: src/view/shell/desktop/Search.tsx:182 365 + msgid "Cancel" 366 + msgstr "Batal" 367 + 368 + #: src/view/com/modals/DeleteAccount.tsx:146 369 + #: src/view/com/modals/DeleteAccount.tsx:219 370 + msgid "Cancel account deletion" 371 + msgstr "Batal menghapus akun" 372 + 373 + #: src/view/com/modals/AltImage.tsx:123 374 + msgid "Cancel add image alt text" 375 + msgstr "Batal menambahkan teks alt gambar" 376 + 377 + #: src/view/com/modals/ChangeHandle.tsx:149 378 + msgid "Cancel change handle" 379 + msgstr "Batal mengubah handle" 380 + 381 + #: src/view/com/modals/crop-image/CropImage.web.tsx:134 382 + msgid "Cancel image crop" 383 + msgstr "Batal memotong gambar" 384 + 385 + #: src/view/com/modals/EditProfile.tsx:243 386 + msgid "Cancel profile editing" 387 + msgstr "Batal mengedit profil" 388 + 389 + #: src/view/com/modals/Repost.tsx:64 390 + msgid "Cancel quote post" 391 + msgstr "Batal mengutip postingan" 392 + 393 + #: src/view/com/modals/ListAddRemoveUsers.tsx:87 394 + #: src/view/shell/desktop/Search.tsx:178 395 + msgid "Cancel search" 396 + msgstr "Batal mencari" 397 + 398 + #: src/view/com/modals/Waitlist.tsx:132 399 + msgid "Cancel waitlist signup" 400 + msgstr "Batal mendaftar di daftar tunggu" 401 + 402 + #: src/view/screens/Settings.tsx:306 403 + msgid "Change" 404 + msgstr "Ubah" 405 + 406 + #: src/view/screens/Settings.tsx:601 407 + #: src/view/screens/Settings.tsx:610 408 + msgid "Change handle" 409 + msgstr "Ubah handle" 410 + 411 + #: src/view/com/modals/ChangeHandle.tsx:161 412 + msgid "Change Handle" 413 + msgstr "Ubah Handle" 414 + 415 + #: src/view/com/modals/VerifyEmail.tsx:141 416 + msgid "Change my email" 417 + msgstr "Ubah email saya" 418 + 419 + #: src/view/com/modals/ChangeEmail.tsx:109 420 + msgid "Change Your Email" 421 + msgstr "Ubah Email Anda" 422 + 423 + #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:121 424 + msgid "Check out some recommended feeds. Tap + to add them to your list of pinned feeds." 425 + msgstr "Lihat beberapa rekomendasi feed. Ketuk + untuk menambahkan ke daftar feed yang disematkan." 426 + 427 + #: src/view/com/auth/onboarding/RecommendedFollows.tsx:185 428 + msgid "Check out some recommended users. Follow them to see similar users." 429 + msgstr "Lihat beberapa rekomendasi pengguna. Ikuti mereka untuk melihat pengguna serupa." 430 + 431 + #: src/view/com/modals/DeleteAccount.tsx:163 432 + msgid "Check your inbox for an email with the confirmation code to enter below:" 433 + msgstr "Periksa kotak masuk email Anda untuk kode konfirmasi dan masukkan di bawah ini:" 434 + 435 + #: src/view/com/modals/ServerInput.tsx:38 436 + msgid "Choose Service" 437 + msgstr "Pilih Layanan" 438 + 439 + #: src/view/com/auth/onboarding/WelcomeMobile.tsx:83 440 + msgid "Choose the algorithms that power your experience with custom feeds." 441 + msgstr "Pilih algoritma yang akan digunakan untuk kustom feed Anda." 442 + 443 + #: src/view/com/auth/create/Step2.tsx:106 444 + msgid "Choose your password" 445 + msgstr "Pilih kata sandi Anda" 446 + 447 + #: src/view/screens/Settings.tsx:694 448 + msgid "Clear all legacy storage data" 449 + msgstr "Hapus semua data penyimpanan lama" 450 + 451 + #: src/view/screens/Settings.tsx:696 452 + msgid "Clear all legacy storage data (restart after this)" 453 + msgstr "Hapus semua data penyimpanan lama (mulai ulang setelah ini)" 454 + 455 + #: src/view/screens/Settings.tsx:706 456 + msgid "Clear all storage data" 457 + msgstr "Hapus semua data penyimpanan" 458 + 459 + #: src/view/screens/Settings.tsx:708 460 + msgid "Clear all storage data (restart after this)" 461 + msgstr "Hapus semua data penyimpanan (mulai ulang setelah ini)" 462 + 463 + #: src/view/com/util/forms/SearchInput.tsx:73 464 + #: src/view/screens/Search/Search.tsx:569 465 + msgid "Clear search query" 466 + msgstr "Hapus kueri pencarian" 467 + 468 + #: src/view/com/auth/login/PasswordUpdatedForm.tsx:38 469 + msgid "Close alert" 470 + msgstr "Tutup peringatan" 471 + 472 + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:33 473 + msgid "Close bottom drawer" 474 + msgstr "Tutup kotak bawah" 475 + 476 + #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:26 477 + msgid "Close image" 478 + msgstr "Tutup gambar" 479 + 480 + #: src/view/com/lightbox/Lightbox.web.tsx:112 481 + msgid "Close image viewer" 482 + msgstr "Tutup penampil gambar" 483 + 484 + #: src/view/shell/index.web.tsx:49 485 + msgid "Close navigation footer" 486 + msgstr "Tutup footer navigasi" 487 + 488 + #: src/view/screens/CommunityGuidelines.tsx:32 489 + msgid "Community Guidelines" 490 + msgstr "Panduan Komunitas" 491 + 492 + #: src/view/com/composer/Prompt.tsx:24 493 + msgid "Compose reply" 494 + msgstr "Tulis balasan" 495 + 496 + #: src/view/com/modals/AppealLabel.tsx:98 497 + #: src/view/com/modals/Confirm.tsx:75 498 + #: src/view/com/modals/SelfLabel.tsx:154 499 + #: src/view/com/modals/VerifyEmail.tsx:225 500 + #: src/view/screens/PreferencesHomeFeed.tsx:299 501 + #: src/view/screens/PreferencesThreads.tsx:153 502 + msgid "Confirm" 503 + msgstr "Konfirmasi" 504 + 505 + #: src/view/com/modals/ChangeEmail.tsx:193 506 + #: src/view/com/modals/ChangeEmail.tsx:195 507 + msgid "Confirm Change" 508 + msgstr "Konfirmasi Perubahan" 509 + 510 + #: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34 511 + msgid "Confirm content language settings" 512 + msgstr "Konfirmasi pengaturan bahasa konten" 513 + 514 + #: src/view/com/modals/DeleteAccount.tsx:209 515 + msgid "Confirm delete account" 516 + msgstr "Konfirmasi hapus akun" 517 + 518 + #: src/view/com/modals/ChangeEmail.tsx:157 519 + #: src/view/com/modals/DeleteAccount.tsx:176 520 + #: src/view/com/modals/VerifyEmail.tsx:159 521 + msgid "Confirmation code" 522 + msgstr "Código de confirmación" 523 + 524 + #: src/view/com/auth/create/CreateAccount.tsx:174 525 + #: src/view/com/auth/login/LoginForm.tsx:268 526 + msgid "Connecting..." 527 + msgstr "Menghubungkan..." 528 + 529 + #: src/view/screens/Moderation.tsx:81 530 + msgid "Content filtering" 531 + msgstr "Penyaring Konten" 532 + 533 + #: src/view/com/modals/ContentFilteringSettings.tsx:44 534 + msgid "Content Filtering" 535 + msgstr "Penyaring Konten" 536 + 537 + #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 538 + #: src/view/screens/LanguageSettings.tsx:278 539 + msgid "Content Languages" 540 + msgstr "Bahasa konten" 541 + 542 + #: src/view/com/util/moderation/ScreenHider.tsx:78 543 + msgid "Content Warning" 544 + msgstr "Peringatan Konten" 545 + 546 + #: src/view/com/composer/labels/LabelsBtn.tsx:31 547 + msgid "Content warnings" 548 + msgstr "Peringatan konten" 549 + 550 + #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 551 + #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 552 + msgid "Continue" 553 + msgstr "Lanjutkan" 554 + 555 + #: src/view/com/modals/AddAppPasswords.tsx:193 556 + #: src/view/com/modals/InviteCodes.tsx:179 557 + msgid "Copied" 558 + msgstr "Disalin" 559 + 560 + #: src/view/com/modals/AddAppPasswords.tsx:186 561 + msgid "Copy" 562 + msgstr "Salin" 563 + 564 + #: src/view/screens/ProfileList.tsx:384 565 + msgid "Copy link to list" 566 + msgstr "Salin tautan ke daftar" 567 + 568 + #: src/view/com/util/forms/PostDropdownBtn.tsx:139 569 + msgid "Copy link to post" 570 + msgstr "Salin tautan ke postingan" 571 + 572 + #: src/view/com/profile/ProfileHeader.tsx:338 573 + msgid "Copy link to profile" 574 + msgstr "Salin tautan ke profil" 575 + 576 + #: src/view/com/util/forms/PostDropdownBtn.tsx:125 577 + msgid "Copy post text" 578 + msgstr "Salin teks postingan" 579 + 580 + #: src/view/screens/CopyrightPolicy.tsx:29 581 + msgid "Copyright Policy" 582 + msgstr "Kebijakan Hak Cipta" 583 + 584 + #: src/view/screens/ProfileFeed.tsx:94 585 + msgid "Could not load feed" 586 + msgstr "Tidak dapat memuat feed" 587 + 588 + #: src/view/screens/ProfileList.tsx:830 589 + msgid "Could not load list" 590 + msgstr "Tidak dapat memuat daftar" 591 + 592 + #: src/view/com/auth/HomeLoggedOutCTA.tsx:62 593 + #: src/view/com/auth/SplashScreen.tsx:46 594 + msgid "Create a new account" 595 + msgstr "Buat akun baru" 596 + 597 + #: src/view/com/auth/create/CreateAccount.tsx:120 598 + msgid "Create Account" 599 + msgstr "Buat Akun" 600 + 601 + #: src/view/com/auth/HomeLoggedOutCTA.tsx:54 602 + #: src/view/com/auth/SplashScreen.tsx:43 603 + msgid "Create new account" 604 + msgstr "Buat akun baru" 605 + 606 + #: src/view/screens/AppPasswords.tsx:248 607 + msgid "Created {0}" 608 + msgstr "Dibuat {0}" 609 + 610 + #: src/view/com/modals/ChangeHandle.tsx:387 611 + #: src/view/com/modals/ServerInput.tsx:102 612 + msgid "Custom domain" 613 + msgstr "Domain kustom" 614 + 615 + #: src/view/screens/Settings.tsx:615 616 + msgid "Danger Zone" 617 + msgstr "Zona Berbahaya" 618 + 619 + #: src/view/screens/Settings.tsx:622 620 + msgid "Delete account" 621 + msgstr "Hapus akun" 622 + 623 + #: src/view/com/modals/DeleteAccount.tsx:83 624 + msgid "Delete Account" 625 + msgstr "Hapus Akun" 626 + 627 + #: src/view/screens/AppPasswords.tsx:221 628 + #: src/view/screens/AppPasswords.tsx:241 629 + msgid "Delete app password" 630 + msgstr "Hapus kata sandi aplikasi" 631 + 632 + #: src/view/screens/ProfileList.tsx:351 633 + #: src/view/screens/ProfileList.tsx:411 634 + msgid "Delete List" 635 + msgstr "Hapus Daftar " 636 + 637 + #: src/view/com/modals/DeleteAccount.tsx:212 638 + msgid "Delete my account" 639 + msgstr "Hapus akun saya" 640 + 641 + #: src/view/screens/Settings.tsx:632 642 + msgid "Delete my account…" 643 + msgstr "Menghapus akun saya..." 644 + 645 + #: src/view/com/util/forms/PostDropdownBtn.tsx:214 646 + msgid "Delete post" 647 + msgstr "Hapus postingan" 648 + 649 + #: src/view/com/util/forms/PostDropdownBtn.tsx:218 650 + msgid "Delete this post?" 651 + msgstr "Hapus postingan ini?" 652 + 653 + #: src/view/com/post-thread/PostThread.tsx:242 654 + msgid "Deleted post." 655 + msgstr "Postingan dihapus." 656 + 657 + #: src/view/com/modals/CreateOrEditList.tsx:218 658 + #: src/view/com/modals/CreateOrEditList.tsx:234 659 + #: src/view/com/modals/EditProfile.tsx:197 660 + #: src/view/com/modals/EditProfile.tsx:209 661 + msgid "Description" 662 + msgstr "Deskripsi" 663 + 664 + #: src/view/com/auth/create/Step1.tsx:96 665 + msgid "Dev Server" 666 + msgstr "Server Dev" 667 + 668 + #: src/view/screens/Settings.tsx:637 669 + msgid "Developer Tools" 670 + msgstr "Alat Pengembang" 671 + 672 + #: src/view/com/composer/Composer.tsx:143 673 + msgid "Discard" 674 + msgstr "Buang" 675 + 676 + #: src/view/com/composer/Composer.tsx:137 677 + msgid "Discard draft" 678 + msgstr "Buang draf" 679 + 680 + #: src/view/screens/Moderation.tsx:207 681 + msgid "Discourage apps from showing my account to logged-out users" 682 + msgstr "Cegah aplikasi untuk menampilkan akun saya ke pengguna yang tidak login" 683 + 684 + #: src/view/screens/Feeds.tsx:405 685 + msgid "Discover new feeds" 686 + msgstr "Temukan feed baru" 687 + 688 + #: src/view/com/modals/EditProfile.tsx:191 689 + msgid "Display name" 690 + msgstr "Nama tampilan" 691 + 692 + #: src/view/com/modals/EditProfile.tsx:179 693 + msgid "Display Name" 694 + msgstr "Nama Tampilan" 695 + 696 + #: src/view/com/modals/ChangeHandle.tsx:485 697 + msgid "Domain verified!" 698 + msgstr "Domain terverifikasi!" 699 + 700 + #: src/view/com/auth/onboarding/RecommendedFollows.tsx:86 701 + #: src/view/com/modals/ContentFilteringSettings.tsx:88 702 + #: src/view/com/modals/ContentFilteringSettings.tsx:96 703 + #: src/view/com/modals/crop-image/CropImage.web.tsx:152 704 + #: src/view/com/modals/EditImage.tsx:333 705 + #: src/view/com/modals/ListAddRemoveUsers.tsx:142 706 + #: src/view/com/modals/SelfLabel.tsx:157 707 + #: src/view/com/modals/Threadgate.tsx:129 708 + #: src/view/com/modals/Threadgate.tsx:132 709 + #: src/view/com/modals/UserAddRemoveLists.tsx:79 710 + #: src/view/screens/PreferencesHomeFeed.tsx:302 711 + #: src/view/screens/PreferencesThreads.tsx:156 712 + msgid "Done" 713 + msgstr "Selesai" 714 + 715 + #: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:42 716 + msgid "Done{extraText}" 717 + msgstr "Selesai{extraText}" 718 + 719 + #: src/view/com/modals/InviteCodes.tsx:94 720 + msgid "Each code works once. You'll receive more invite codes periodically." 721 + msgstr "Tiap kode hanya berlaku sekali. Anda akan mendapatkan tambahan kode undangan secara berkala." 722 + 723 + #: src/view/com/composer/photos/Gallery.tsx:144 724 + #: src/view/com/modals/EditImage.tsx:207 725 + msgid "Edit image" 726 + msgstr "Edit gambar" 727 + 728 + #: src/view/screens/ProfileList.tsx:399 729 + msgid "Edit list details" 730 + msgstr "Edit detail daftar" 731 + 732 + #: src/view/screens/Feeds.tsx:367 733 + #: src/view/screens/SavedFeeds.tsx:84 734 + msgid "Edit My Feeds" 735 + msgstr "Edit Feed Saya" 736 + 737 + #: src/view/com/modals/EditProfile.tsx:151 738 + msgid "Edit my profile" 739 + msgstr "Edit profil saya" 740 + 741 + #: src/view/com/profile/ProfileHeader.tsx:453 742 + msgid "Edit profile" 743 + msgstr "Edit profil" 744 + 745 + #: src/view/com/profile/ProfileHeader.tsx:456 746 + msgid "Edit Profile" 747 + msgstr "Edit Profil" 748 + 749 + #: src/view/screens/Feeds.tsx:330 750 + msgid "Edit Saved Feeds" 751 + msgstr "Edit Feed Tersimpan" 752 + 753 + #: src/view/com/auth/create/Step2.tsx:90 754 + #: src/view/com/auth/login/ForgotPasswordForm.tsx:148 755 + #: src/view/com/modals/ChangeEmail.tsx:141 756 + #: src/view/com/modals/Waitlist.tsx:88 757 + msgid "Email" 758 + msgstr "Email" 759 + 760 + #: src/view/com/auth/create/Step2.tsx:81 761 + msgid "Email address" 762 + msgstr "Alamat email" 763 + 764 + #: src/view/com/modals/ChangeEmail.tsx:111 765 + msgid "Email Updated" 766 + msgstr "Email Diupdate" 767 + 768 + #: src/view/screens/Settings.tsx:290 769 + msgid "Email:" 770 + msgstr "Email:" 771 + 772 + #: src/view/screens/PreferencesHomeFeed.tsx:138 773 + msgid "Enable this setting to only see replies between people you follow." 774 + msgstr "Aktifkan opsi ini untuk hanya menampilkan balasan dari akun yang Anda ikuti." 775 + 776 + #: src/view/screens/Profile.tsx:426 777 + msgid "End of feed" 778 + msgstr "Akhir feed" 779 + 780 + #: src/view/com/auth/create/Step1.tsx:71 781 + msgid "Enter the address of your provider:" 782 + msgstr "Masukkan alamat provider Anda:" 783 + 784 + #: src/view/com/modals/ChangeHandle.tsx:369 785 + msgid "Enter the domain you want to use" 786 + msgstr "Masukkan domain yang ingin Anda gunakan" 787 + 788 + #: src/view/com/auth/login/ForgotPasswordForm.tsx:101 789 + msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." 790 + msgstr "Masukkan email yang Anda gunakan untuk membuat akun. Kami akan mengirimkan \"kode reset\" untuk mengatur kata sandi baru." 791 + 792 + #: src/view/com/auth/create/Step2.tsx:86 793 + msgid "Enter your email address" 794 + msgstr "Masukkan email Anda" 795 + 796 + #: src/view/com/modals/ChangeEmail.tsx:117 797 + msgid "Enter your new email address below." 798 + msgstr "Masukkan email baru Anda." 799 + 800 + #: src/view/com/auth/login/Login.tsx:99 801 + msgid "Enter your username and password" 802 + msgstr "Masukkan nama pengguna dan kata sandi Anda" 803 + 804 + #: src/view/screens/Search/Search.tsx:105 805 + msgid "Error:" 806 + msgstr "Eror:" 807 + 808 + #: src/view/com/modals/Threadgate.tsx:76 809 + msgid "Everybody" 810 + msgstr "Semua orang" 811 + 812 + #: src/view/com/lightbox/Lightbox.web.tsx:156 813 + msgid "Expand alt text" 814 + msgstr "Tampilkan teks alt" 815 + 816 + #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:109 817 + #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:141 818 + msgid "Failed to load recommended feeds" 819 + msgstr "Gagal memuat rekomendasi feed" 820 + 821 + #: src/view/screens/Feeds.tsx:554 822 + msgid "Feed offline" 823 + msgstr "Feed offline" 824 + 825 + #: src/view/com/feeds/FeedPage.tsx:143 826 + msgid "Feed Preferences" 827 + msgstr "Preferensi Feed" 828 + 829 + #: src/view/shell/desktop/RightNav.tsx:65 830 + #: src/view/shell/Drawer.tsx:311 831 + msgid "Feedback" 832 + msgstr "Masukan" 833 + 834 + #: src/view/screens/Feeds.tsx:475 835 + #: src/view/screens/Profile.tsx:165 836 + #: src/view/shell/bottom-bar/BottomBar.tsx:181 837 + #: src/view/shell/desktop/LeftNav.tsx:340 838 + #: src/view/shell/Drawer.tsx:474 839 + #: src/view/shell/Drawer.tsx:475 840 + msgid "Feeds" 841 + msgstr "Feed" 842 + 843 + #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:57 844 + msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." 845 + msgstr "Feed dibuat oleh pengguna untuk mengkurasi konten. Pilih beberapa feed yang menurut Anda menarik." 846 + 847 + #: src/view/screens/SavedFeeds.tsx:156 848 + msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." 849 + msgstr "Feed merupakan algoritma kustom yang dibuat pengguna dengan sedikit kemampuan menulis kode. <0/> untuk informasi lainnya." 850 + 851 + #: src/view/screens/Search/Search.tsx:414 852 + msgid "Find users on Bluesky" 853 + msgstr "Temukan pengguna di Bluesky" 854 + 855 + #: src/view/screens/Search/Search.tsx:412 856 + msgid "Find users with the search tool on the right" 857 + msgstr "Temukan pengguna dengan alat pencarian di sebelah kanan" 858 + 859 + #: src/view/com/auth/onboarding/RecommendedFollowsItem.tsx:150 860 + msgid "Finding similar accounts..." 861 + msgstr "Mencari akun serupa..." 862 + 863 + #: src/view/screens/PreferencesHomeFeed.tsx:102 864 + msgid "Fine-tune the content you see on your home screen." 865 + msgstr "Atur konten yang Anda lihat di beranda." 866 + 867 + #: src/view/screens/PreferencesThreads.tsx:60 868 + msgid "Fine-tune the discussion threads." 869 + msgstr "Atur utasan diskusi." 870 + 871 + #: src/view/com/profile/ProfileHeader.tsx:538 872 + msgid "Follow" 873 + msgstr "Ikuti" 874 + 875 + #: src/view/com/auth/onboarding/RecommendedFollows.tsx:64 876 + msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." 877 + msgstr "Ikuti beberapa pengguna untuk memulai. Kami dapat merekomendasikan lebih banyak pengguna yang mungkin menarik Anda." 878 + 879 + #: src/view/com/modals/Threadgate.tsx:98 880 + msgid "Followed users" 881 + msgstr "Pengguna yang diikuti" 882 + 883 + #: src/view/screens/PreferencesHomeFeed.tsx:145 884 + msgid "Followed users only" 885 + msgstr "Hanya pengguna yang diikuti" 886 + 887 + #: src/view/screens/ProfileFollowers.tsx:25 888 + msgid "Followers" 889 + msgstr "Pengikut" 890 + 891 + #: src/view/com/profile/ProfileHeader.tsx:624 892 + msgid "following" 893 + msgstr "mengikuti" 894 + 895 + #: src/view/com/profile/ProfileHeader.tsx:522 896 + #: src/view/screens/ProfileFollows.tsx:25 897 + msgid "Following" 898 + msgstr "Mengikuti" 899 + 900 + #: src/view/com/profile/ProfileHeader.tsx:571 901 + msgid "Follows you" 902 + msgstr "Mengikuti Anda" 903 + 904 + #: src/view/com/modals/DeleteAccount.tsx:107 905 + msgid "For security reasons, we'll need to send a confirmation code to your email address." 906 + msgstr "Untuk alasan keamanan, kami akan mengirimkan kode konfirmasi ke alamat email Anda." 907 + 908 + #: src/view/com/modals/AddAppPasswords.tsx:207 909 + msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." 910 + msgstr "Untuk alasan keamanan, Anda tidak akan dapat melihat ini lagi. Jika Anda lupa kata sandi ini, Anda harus membuat yang baru." 911 + 912 + #: src/view/com/auth/login/LoginForm.tsx:231 913 + msgid "Forgot" 914 + msgstr "Lupa" 915 + 916 + #: src/view/com/auth/login/LoginForm.tsx:228 917 + msgid "Forgot password" 918 + msgstr "Lupa kata sandi" 919 + 920 + #: src/view/com/auth/login/Login.tsx:127 921 + #: src/view/com/auth/login/Login.tsx:143 922 + msgid "Forgot Password" 923 + msgstr "Lupa Kata Sandi" 924 + 925 + #: src/view/com/composer/photos/SelectPhotoBtn.tsx:43 926 + msgid "Gallery" 927 + msgstr "Galeri" 928 + 929 + #: src/view/com/modals/VerifyEmail.tsx:183 930 + msgid "Get Started" 931 + msgstr "Mulai" 932 + 933 + #: src/view/com/auth/LoggedOut.tsx:81 934 + #: src/view/com/auth/LoggedOut.tsx:82 935 + #: src/view/com/util/moderation/ScreenHider.tsx:123 936 + #: src/view/shell/desktop/LeftNav.tsx:104 937 + msgid "Go back" 938 + msgstr "Kembali" 939 + 940 + #: src/view/screens/ProfileFeed.tsx:103 941 + #: src/view/screens/ProfileFeed.tsx:108 942 + #: src/view/screens/ProfileList.tsx:839 943 + #: src/view/screens/ProfileList.tsx:844 944 + msgid "Go Back" 945 + msgstr "Kembali" 946 + 947 + #: src/view/com/auth/login/ForgotPasswordForm.tsx:181 948 + #: src/view/com/auth/login/LoginForm.tsx:278 949 + #: src/view/com/auth/login/SetNewPasswordForm.tsx:163 950 + msgid "Go to next" 951 + msgstr "Berikutnya" 952 + 953 + #: src/view/com/modals/ChangeHandle.tsx:265 954 + msgid "Handle" 955 + msgstr "Handle" 956 + 957 + #: src/view/shell/desktop/RightNav.tsx:94 958 + #: src/view/shell/Drawer.tsx:321 959 + msgid "Help" 960 + msgstr "Bantuan" 961 + 962 + #: src/view/com/modals/AddAppPasswords.tsx:148 963 + msgid "Here is your app password." 964 + msgstr "Berikut kata sandi aplikasi Anda." 965 + 966 + #: src/view/com/notifications/FeedItem.tsx:316 967 + #: src/view/com/util/moderation/ContentHider.tsx:103 968 + msgid "Hide" 969 + msgstr "Sembunyikan" 970 + 971 + #: src/view/com/util/forms/PostDropdownBtn.tsx:173 972 + msgid "Hide post" 973 + msgstr "Sembunyikan postingan" 974 + 975 + #: src/view/com/util/forms/PostDropdownBtn.tsx:177 976 + msgid "Hide this post?" 977 + msgstr "Sembunyikan postingan ini?" 978 + 979 + #: src/view/com/notifications/FeedItem.tsx:308 980 + msgid "Hide user list" 981 + msgstr "Sembunyikan daftar pengguna" 982 + 983 + #: src/view/com/posts/FeedErrorMessage.tsx:110 984 + msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." 985 + msgstr "Hmm, sepertinya ada masalah saat menghubungi server feed. Beritahu pemilik feed tentang masalah ini." 986 + 987 + #: src/view/com/posts/FeedErrorMessage.tsx:98 988 + msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." 989 + msgstr "Hmm, sepertinya adalah kesalahan konfigurasi pada server feed. Beritahu pemilik feed tentang masalah ini." 990 + 991 + #: src/view/com/posts/FeedErrorMessage.tsx:104 992 + msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." 993 + msgstr "Hmm, sepertinya server feed offline. Beritahu pemilik feed tentang masalah ini." 994 + 995 + #: src/view/com/posts/FeedErrorMessage.tsx:101 996 + msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." 997 + msgstr "Hmm, server feed memberikan respon yang buruk. Beritahu pemilik feed tentang masalah ini." 998 + 999 + #: src/view/com/posts/FeedErrorMessage.tsx:95 1000 + msgid "Hmm, we're having trouble finding this feed. It may have been deleted." 1001 + msgstr "Hmm, kami tidak dapat menemukan feed ini. Mungkin sudah dihapus" 1002 + 1003 + #: src/view/shell/bottom-bar/BottomBar.tsx:137 1004 + #: src/view/shell/desktop/LeftNav.tsx:304 1005 + #: src/view/shell/Drawer.tsx:398 1006 + #: src/view/shell/Drawer.tsx:399 1007 + msgid "Home" 1008 + msgstr "Beranda" 1009 + 1010 + #: src/view/com/pager/FeedsTabBarMobile.tsx:96 1011 + #: src/view/screens/PreferencesHomeFeed.tsx:95 1012 + #: src/view/screens/Settings.tsx:481 1013 + msgid "Home Feed Preferences" 1014 + msgstr "Preferensi Feed Beranda" 1015 + 1016 + #: src/view/com/auth/login/ForgotPasswordForm.tsx:114 1017 + msgid "Hosting provider" 1018 + msgstr "Provider hosting" 1019 + 1020 + #: src/view/com/auth/create/Step1.tsx:76 1021 + #: src/view/com/auth/create/Step1.tsx:81 1022 + msgid "Hosting provider address" 1023 + msgstr "Alamat provider hosting" 1024 + 1025 + #: src/view/com/modals/VerifyEmail.tsx:208 1026 + msgid "I have a code" 1027 + msgstr "Saya punya kode" 1028 + 1029 + #: src/view/com/modals/ChangeHandle.tsx:281 1030 + msgid "I have my own domain" 1031 + msgstr "Saya punya domain sendiri" 1032 + 1033 + #: src/view/com/modals/SelfLabel.tsx:127 1034 + msgid "If none are selected, suitable for all ages." 1035 + msgstr "Jika tidak ada yang dipilih, cocok untuk semua umur." 1036 + 1037 + #: src/view/com/modals/AltImage.tsx:97 1038 + msgid "Image alt text" 1039 + msgstr "Teks alt gambar" 1040 + 1041 + #: src/view/com/util/UserAvatar.tsx:308 1042 + #: src/view/com/util/UserBanner.tsx:116 1043 + msgid "Image options" 1044 + msgstr "Pilihan gambar" 1045 + 1046 + #: src/view/com/auth/login/LoginForm.tsx:113 1047 + msgid "Invalid username or password" 1048 + msgstr "Username atau kata sandi salah" 1049 + 1050 + #: src/view/screens/Settings.tsx:383 1051 + msgid "Invite" 1052 + msgstr "Undang" 1053 + 1054 + #: src/view/com/modals/InviteCodes.tsx:91 1055 + #: src/view/screens/Settings.tsx:371 1056 + msgid "Invite a Friend" 1057 + msgstr "Undang Teman" 1058 + 1059 + #: src/view/com/auth/create/Step2.tsx:57 1060 + msgid "Invite code" 1061 + msgstr "Kode Undangan" 1062 + 1063 + #: src/view/com/auth/create/state.ts:136 1064 + msgid "Invite code not accepted. Check that you input it correctly and try again." 1065 + msgstr "Kode undangan salah. Periksa bahwa Anda memasukkannya dengan benar dan coba lagi." 1066 + 1067 + #: src/view/shell/Drawer.tsx:640 1068 + msgid "Invite codes: {invitesAvailable} available" 1069 + msgstr "Kode undangan: {invitesAvailable} tersedia" 1070 + 1071 + #: src/view/com/auth/HomeLoggedOutCTA.tsx:99 1072 + msgid "Jobs" 1073 + msgstr "Karir" 1074 + 1075 + #: src/view/com/modals/Waitlist.tsx:67 1076 + msgid "Join the waitlist" 1077 + msgstr "Gabung ke daftar tunggu" 1078 + 1079 + #: src/view/com/auth/create/Step2.tsx:68 1080 + #: src/view/com/auth/create/Step2.tsx:72 1081 + msgid "Join the waitlist." 1082 + msgstr "Gabung ke daftar tunggu." 1083 + 1084 + #: src/view/com/modals/Waitlist.tsx:124 1085 + msgid "Join Waitlist" 1086 + msgstr "Gabung ke Daftar Tunggu" 1087 + 1088 + #: src/view/com/composer/select-language/SelectLangBtn.tsx:104 1089 + msgid "Language selection" 1090 + msgstr "Pilih bahasa" 1091 + 1092 + #: src/view/screens/LanguageSettings.tsx:89 1093 + msgid "Language Settings" 1094 + msgstr "Pengaturan Bahasa" 1095 + 1096 + #: src/view/screens/Settings.tsx:541 1097 + msgid "Languages" 1098 + msgstr "Bahasa" 1099 + 1100 + #: src/view/com/util/moderation/ContentHider.tsx:101 1101 + msgid "Learn more" 1102 + msgstr "Pelajari lebih lanjut" 1103 + 1104 + #: src/view/com/util/moderation/PostAlerts.tsx:47 1105 + #: src/view/com/util/moderation/ProfileHeaderAlerts.tsx:65 1106 + #: src/view/com/util/moderation/ScreenHider.tsx:104 1107 + msgid "Learn More" 1108 + msgstr "Pelajari Lebih Lanjut" 1109 + 1110 + #: src/view/com/util/moderation/ContentHider.tsx:83 1111 + #: src/view/com/util/moderation/PostAlerts.tsx:40 1112 + #: src/view/com/util/moderation/PostHider.tsx:76 1113 + #: src/view/com/util/moderation/ProfileHeaderAlerts.tsx:49 1114 + #: src/view/com/util/moderation/ScreenHider.tsx:101 1115 + msgid "Learn more about this warning" 1116 + msgstr "Pelajari lebih lanjut tentang peringatan ini" 1117 + 1118 + #: src/view/screens/Moderation.tsx:242 1119 + msgid "Learn more about what is public on Bluesky." 1120 + msgstr "Pelajari lebih lanjut tentang apa yang publik di Bluesky." 1121 + 1122 + #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 1123 + msgid "Leave them all unchecked to see any language." 1124 + msgstr "Biarkan semua tidak tercentang untuk melihat bahasa apa pun." 1125 + 1126 + #: src/view/com/modals/LinkWarning.tsx:49 1127 + msgid "Leaving Bluesky" 1128 + msgstr "Meninggalkan Bluesky" 1129 + 1130 + #: src/view/com/auth/login/Login.tsx:128 1131 + #: src/view/com/auth/login/Login.tsx:144 1132 + msgid "Let's get your password reset!" 1133 + msgstr "Reset kata sandi Anda!" 1134 + 1135 + #: src/view/com/util/UserAvatar.tsx:245 1136 + #: src/view/com/util/UserBanner.tsx:60 1137 + msgid "Library" 1138 + msgstr "Pustaka" 1139 + 1140 + #: src/view/screens/ProfileFeed.tsx:577 1141 + msgid "Like this feed" 1142 + msgstr "Suka feed ini" 1143 + 1144 + #: src/view/screens/PostLikedBy.tsx:27 1145 + #: src/view/screens/ProfileFeedLikedBy.tsx:27 1146 + msgid "Liked by" 1147 + msgstr "Disukai oleh" 1148 + 1149 + #: src/view/screens/Profile.tsx:164 1150 + msgid "Likes" 1151 + msgstr "Suka" 1152 + 1153 + #: src/view/com/modals/CreateOrEditList.tsx:186 1154 + msgid "List Avatar" 1155 + msgstr "Avatar Daftar" 1156 + 1157 + #: src/view/com/modals/CreateOrEditList.tsx:199 1158 + msgid "List Name" 1159 + msgstr "Nama Daftar" 1160 + 1161 + #: src/view/screens/Profile.tsx:166 1162 + #: src/view/shell/desktop/LeftNav.tsx:377 1163 + #: src/view/shell/Drawer.tsx:490 1164 + #: src/view/shell/Drawer.tsx:491 1165 + msgid "Lists" 1166 + msgstr "Daftar" 1167 + 1168 + #: src/view/com/post-thread/PostThread.tsx:259 1169 + #: src/view/com/post-thread/PostThread.tsx:267 1170 + msgid "Load more posts" 1171 + msgstr "Muat postingan lainnya" 1172 + 1173 + #: src/view/screens/Notifications.tsx:144 1174 + msgid "Load new notifications" 1175 + msgstr "Muat notifikasi baru" 1176 + 1177 + #: src/view/com/feeds/FeedPage.tsx:189 1178 + msgid "Load new posts" 1179 + msgstr "Muat postingan baru" 1180 + 1181 + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:95 1182 + msgid "Loading..." 1183 + msgstr "Memuat..." 1184 + 1185 + #: src/view/com/modals/ServerInput.tsx:50 1186 + msgid "Local dev server" 1187 + msgstr "Server dev lokal" 1188 + 1189 + #: src/view/screens/Moderation.tsx:136 1190 + msgid "Logged-out visibility" 1191 + msgstr "Visibilitas pengguna yang tidak login" 1192 + 1193 + #: src/view/com/auth/login/ChooseAccountForm.tsx:133 1194 + msgid "Login to account that is not listed" 1195 + msgstr "Masuk ke akun yang tidak ada di daftar" 1196 + 1197 + #: src/view/screens/ProfileFeed.tsx:472 1198 + #~ msgid "Looks like this feed is only available to users with a Bluesky account. Please sign up or sign in to view this feed!" 1199 + #~ msgstr "Sepertinya feed ini hanya tersedia untuk pengguna dengan akun Bluesky. Silakan daftar atau masuk untuk melihat feed ini!" 1200 + 1201 + #: src/view/com/modals/LinkWarning.tsx:63 1202 + msgid "Make sure this is where you intend to go!" 1203 + msgstr "Pastikan ini adalah website yang Anda tuju!" 1204 + 1205 + #: src/view/screens/Profile.tsx:163 1206 + msgid "Media" 1207 + msgstr "Media" 1208 + 1209 + #: src/view/com/threadgate/WhoCanReply.tsx:139 1210 + msgid "mentioned users" 1211 + msgstr "pengguna yang disebutkan" 1212 + 1213 + #: src/view/com/modals/Threadgate.tsx:93 1214 + msgid "Mentioned users" 1215 + msgstr "Pengguna yang disebutkan" 1216 + 1217 + #: src/view/screens/Search/Search.tsx:529 1218 + msgid "Menu" 1219 + msgstr "Menu" 1220 + 1221 + #: src/view/com/posts/FeedErrorMessage.tsx:194 1222 + msgid "Message from server" 1223 + msgstr "Pesan dari server" 1224 + 1225 + #: src/view/screens/Moderation.tsx:64 1226 + #: src/view/screens/Settings.tsx:563 1227 + #: src/view/shell/desktop/LeftNav.tsx:395 1228 + #: src/view/shell/Drawer.tsx:509 1229 + #: src/view/shell/Drawer.tsx:510 1230 + msgid "Moderation" 1231 + msgstr "Moderasi" 1232 + 1233 + #: src/view/screens/Moderation.tsx:95 1234 + msgid "Moderation lists" 1235 + msgstr "Daftar moderasi" 1236 + 1237 + #: src/view/screens/ModerationModlists.tsx:58 1238 + msgid "Moderation Lists" 1239 + msgstr "Daftar Moderasi" 1240 + 1241 + #: src/view/shell/desktop/Feeds.tsx:53 1242 + msgid "More feeds" 1243 + msgstr "Feed lainnya" 1244 + 1245 + #: src/view/com/profile/ProfileHeader.tsx:548 1246 + #: src/view/screens/ProfileFeed.tsx:360 1247 + #: src/view/screens/ProfileList.tsx:583 1248 + msgid "More options" 1249 + msgstr "Pilihan lainnya" 1250 + 1251 + #: src/view/com/profile/ProfileHeader.tsx:370 1252 + msgid "Mute Account" 1253 + msgstr "Bisukan Akun" 1254 + 1255 + #: src/view/screens/ProfileList.tsx:510 1256 + msgid "Mute accounts" 1257 + msgstr "Bisukan akun" 1258 + 1259 + #: src/view/screens/ProfileList.tsx:457 1260 + msgid "Mute list" 1261 + msgstr "Daftar akun yang dibisukan" 1262 + 1263 + #: src/view/screens/ProfileList.tsx:270 1264 + msgid "Mute these accounts?" 1265 + msgstr "Bisukan akun ini?" 1266 + 1267 + #: src/view/com/util/forms/PostDropdownBtn.tsx:157 1268 + msgid "Mute thread" 1269 + msgstr "Bisukan utasan" 1270 + 1271 + #: src/view/screens/Moderation.tsx:109 1272 + msgid "Muted accounts" 1273 + msgstr "Akun yang dibisukan" 1274 + 1275 + #: src/view/screens/ModerationMutedAccounts.tsx:107 1276 + msgid "Muted Accounts" 1277 + msgstr "Akun yang Dibisukan" 1278 + 1279 + #: src/view/screens/ModerationMutedAccounts.tsx:115 1280 + msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." 1281 + msgstr "Postingan dari akun yang dibisukan akan dihilangkan dari feed dan notifikasi Anda. Pembisuan ini bersifat privat." 1282 + 1283 + #: src/view/screens/ProfileList.tsx:272 1284 + msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." 1285 + msgstr "Pembisuan akun bersifat privat. Akun yang dibisukan tetap dapat berinteraksi dengan Anda, namun Anda tidak akan melihat postingan atau notifikasi dari mereka." 1286 + 1287 + #: src/view/com/modals/BirthDateSettings.tsx:56 1288 + msgid "My Birthday" 1289 + msgstr "Tanggal Lahir Saya" 1290 + 1291 + #: src/view/screens/Feeds.tsx:363 1292 + msgid "My Feeds" 1293 + msgstr "Feed Saya" 1294 + 1295 + #: src/view/shell/desktop/LeftNav.tsx:65 1296 + msgid "My Profile" 1297 + msgstr "Profil Saya" 1298 + 1299 + #: src/view/screens/Settings.tsx:520 1300 + msgid "My Saved Feeds" 1301 + msgstr "Feed Tersimpan Saya" 1302 + 1303 + #: src/view/com/modals/AddAppPasswords.tsx:177 1304 + #: src/view/com/modals/CreateOrEditList.tsx:211 1305 + msgid "Name" 1306 + msgstr "Nama" 1307 + 1308 + #: src/view/com/auth/onboarding/WelcomeMobile.tsx:72 1309 + msgid "Never lose access to your followers and data." 1310 + msgstr "Tidak akan lagi kehilangan akses ke data dan pengikut Anda." 1311 + 1312 + #: src/view/screens/Lists.tsx:76 1313 + #: src/view/screens/ModerationModlists.tsx:78 1314 + msgid "New" 1315 + msgstr "Baru" 1316 + 1317 + #: src/view/com/feeds/FeedPage.tsx:200 1318 + #: src/view/screens/Feeds.tsx:505 1319 + #: src/view/screens/Profile.tsx:354 1320 + #: src/view/screens/ProfileFeed.tsx:430 1321 + #: src/view/screens/ProfileList.tsx:193 1322 + #: src/view/screens/ProfileList.tsx:221 1323 + #: src/view/shell/desktop/LeftNav.tsx:247 1324 + msgid "New post" 1325 + msgstr "Postingan baru" 1326 + 1327 + #: src/view/shell/desktop/LeftNav.tsx:257 1328 + msgid "New Post" 1329 + msgstr "Postingan Baru" 1330 + 1331 + #: src/view/com/auth/create/CreateAccount.tsx:154 1332 + #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 1333 + #: src/view/com/auth/login/ForgotPasswordForm.tsx:184 1334 + #: src/view/com/auth/login/LoginForm.tsx:281 1335 + #: src/view/com/auth/login/SetNewPasswordForm.tsx:156 1336 + #: src/view/com/auth/login/SetNewPasswordForm.tsx:166 1337 + #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 1338 + msgid "Next" 1339 + msgstr "Berikutnya" 1340 + 1341 + #: src/view/com/lightbox/Lightbox.web.tsx:142 1342 + msgid "Next image" 1343 + msgstr "Gambar berikutnya" 1344 + 1345 + #: src/view/screens/PreferencesHomeFeed.tsx:191 1346 + #: src/view/screens/PreferencesHomeFeed.tsx:226 1347 + #: src/view/screens/PreferencesHomeFeed.tsx:263 1348 + msgid "No" 1349 + msgstr "Tidak" 1350 + 1351 + #: src/view/screens/ProfileFeed.tsx:570 1352 + #: src/view/screens/ProfileList.tsx:711 1353 + msgid "No description" 1354 + msgstr "Tidak ada deskripsi" 1355 + 1356 + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:97 1357 + msgid "No result" 1358 + msgstr "Tidak ada hasil" 1359 + 1360 + #: src/view/screens/Feeds.tsx:452 1361 + msgid "No results found for \"{query}\"" 1362 + msgstr "Tidak ada hasil ditemukan untuk \"{query}\"" 1363 + 1364 + #: src/view/com/modals/ListAddRemoveUsers.tsx:127 1365 + #: src/view/screens/Search/Search.tsx:263 1366 + #: src/view/screens/Search/Search.tsx:291 1367 + #: src/view/screens/Search/Search.tsx:607 1368 + #: src/view/shell/desktop/Search.tsx:210 1369 + msgid "No results found for {query}" 1370 + msgstr "Tidak ada hasil ditemukan untuk {query}" 1371 + 1372 + #: src/view/com/modals/Threadgate.tsx:82 1373 + msgid "Nobody" 1374 + msgstr "Tak seorang pun" 1375 + 1376 + #: src/view/com/modals/SelfLabel.tsx:135 1377 + msgid "Not Applicable." 1378 + msgstr "Tidak Berlaku." 1379 + 1380 + #: src/view/screens/Moderation.tsx:232 1381 + msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." 1382 + msgstr "Catatan: Bluesky merupakan jaringan terbuka dan publik. Pengaturan ini hanya akan membatasi visibilitas konten Anda pada aplikasi dan website Bluesky, dan aplikasi lain mungkin tidak mengindahkan pengaturan ini. Konten Anda mungkin tetap ditampilkan kepada pengguna yang tidak login oleh aplikasi dan website lain." 1383 + 1384 + #: src/view/screens/Notifications.tsx:109 1385 + #: src/view/screens/Notifications.tsx:133 1386 + #: src/view/shell/bottom-bar/BottomBar.tsx:205 1387 + #: src/view/shell/desktop/LeftNav.tsx:359 1388 + #: src/view/shell/Drawer.tsx:435 1389 + #: src/view/shell/Drawer.tsx:436 1390 + msgid "Notifications" 1391 + msgstr "Notifikasi" 1392 + 1393 + #: src/view/com/util/ErrorBoundary.tsx:34 1394 + msgid "Oh no!" 1395 + msgstr "Oh tidak!" 1396 + 1397 + #: src/view/com/auth/login/PasswordUpdatedForm.tsx:41 1398 + msgid "Okay" 1399 + msgstr "Baiklah" 1400 + 1401 + #: src/view/com/composer/Composer.tsx:354 1402 + msgid "One or more images is missing alt text." 1403 + msgstr "Satu atau lebih gambar belum ada teks alt." 1404 + 1405 + #: src/view/com/threadgate/WhoCanReply.tsx:100 1406 + msgid "Only {0} can reply." 1407 + msgstr "Hanya {0} dapat membalas." 1408 + 1409 + #: src/view/com/pager/FeedsTabBarMobile.tsx:76 1410 + msgid "Open navigation" 1411 + msgstr "Buka navigasi" 1412 + 1413 + #: src/view/screens/Settings.tsx:533 1414 + msgid "Opens configurable language settings" 1415 + msgstr "Buka pengaturan bahasa yang dapat dikonfigurasi" 1416 + 1417 + #: src/view/shell/desktop/RightNav.tsx:148 1418 + #: src/view/shell/Drawer.tsx:641 1419 + msgid "Opens list of invite codes" 1420 + msgstr "Buka daftar kode undangan" 1421 + 1422 + #: src/view/com/modals/ChangeHandle.tsx:279 1423 + msgid "Opens modal for using custom domain" 1424 + msgstr "Buka modal untuk menggunakan domain kustom" 1425 + 1426 + #: src/view/screens/Settings.tsx:558 1427 + msgid "Opens moderation settings" 1428 + msgstr "Buka pengaturan moderasi" 1429 + 1430 + #: src/view/screens/Settings.tsx:514 1431 + msgid "Opens screen with all saved feeds" 1432 + msgstr "Buka halaman dengan semua feed tersimpan" 1433 + 1434 + #: src/view/screens/Settings.tsx:581 1435 + msgid "Opens the app password settings page" 1436 + msgstr "Buka halaman pengaturan kata sandi aplikasi" 1437 + 1438 + #: src/view/screens/Settings.tsx:473 1439 + msgid "Opens the home feed preferences" 1440 + msgstr "Buka preferensi feed beranda" 1441 + 1442 + #: src/view/screens/Settings.tsx:664 1443 + msgid "Opens the storybook page" 1444 + msgstr "Buka halaman storybook" 1445 + 1446 + #: src/view/screens/Settings.tsx:644 1447 + msgid "Opens the system log page" 1448 + msgstr "Buka halaman log sistem" 1449 + 1450 + #: src/view/screens/Settings.tsx:494 1451 + msgid "Opens the threads preferences" 1452 + msgstr "Buka preferensi utasan" 1453 + 1454 + #: src/view/com/auth/login/ChooseAccountForm.tsx:138 1455 + msgid "Other account" 1456 + msgstr "Akun lainnya" 1457 + 1458 + #: src/view/com/modals/ServerInput.tsx:88 1459 + msgid "Other service" 1460 + msgstr "Layanan lainnya" 1461 + 1462 + #: src/view/com/composer/select-language/SelectLangBtn.tsx:91 1463 + msgid "Other..." 1464 + msgstr "Lainnya..." 1465 + 1466 + #: src/view/screens/NotFound.tsx:42 1467 + #: src/view/screens/NotFound.tsx:45 1468 + msgid "Page not found" 1469 + msgstr "Halaman tidak ditemukan" 1470 + 1471 + #: src/view/com/auth/create/Step2.tsx:101 1472 + #: src/view/com/auth/create/Step2.tsx:111 1473 + #: src/view/com/auth/login/LoginForm.tsx:216 1474 + #: src/view/com/auth/login/SetNewPasswordForm.tsx:130 1475 + #: src/view/com/modals/DeleteAccount.tsx:191 1476 + msgid "Password" 1477 + msgstr "Kata sandi" 1478 + 1479 + #: src/view/com/auth/login/Login.tsx:157 1480 + msgid "Password updated" 1481 + msgstr "Kata sandi diganti" 1482 + 1483 + #: src/view/com/auth/login/PasswordUpdatedForm.tsx:28 1484 + msgid "Password updated!" 1485 + msgstr "Kata sandi diganti!" 1486 + 1487 + #: src/view/com/modals/SelfLabel.tsx:121 1488 + msgid "Pictures meant for adults." 1489 + msgstr "Gambar khusus dewasa." 1490 + 1491 + #: src/view/screens/SavedFeeds.tsx:88 1492 + msgid "Pinned Feeds" 1493 + msgstr "Feed Tersemat" 1494 + 1495 + #: src/view/com/auth/create/state.ts:116 1496 + msgid "Please choose your handle." 1497 + msgstr "Silakan pilih handle Anda." 1498 + 1499 + #: src/view/com/auth/create/state.ts:109 1500 + msgid "Please choose your password." 1501 + msgstr "Masukkan kata sandi Anda." 1502 + 1503 + #: src/view/com/modals/ChangeEmail.tsx:67 1504 + msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." 1505 + msgstr "Mohon konfirmasi email Anda sebelum menggantinya. Ini adalah syarat sementara sampai alat mengganti-email tersedia, setelah itu syarat ini akan dihilangkan." 1506 + 1507 + #: src/view/com/modals/AddAppPasswords.tsx:140 1508 + msgid "Please enter a unique name for this App Password or use our randomly generated one." 1509 + msgstr "Mohon masukkan nama unik untuk Kata Sandi Aplikasi ini atau gunakan nama acak yang kami buat." 1510 + 1511 + #: src/view/com/auth/create/state.ts:95 1512 + msgid "Please enter your email." 1513 + msgstr "Masukkan email Anda." 1514 + 1515 + #: src/view/com/modals/DeleteAccount.tsx:180 1516 + msgid "Please enter your password as well:" 1517 + msgstr "Masukkan juga kata sandi Anda:" 1518 + 1519 + #: src/view/com/modals/AppealLabel.tsx:72 1520 + #: src/view/com/modals/AppealLabel.tsx:75 1521 + msgid "Please tell us why you think this content warning was incorrectly applied!" 1522 + msgstr "Mohon beritahu kami mengapa menurut Anda peringatan konten ini salah!" 1523 + 1524 + #: src/view/com/modals/AppealLabel.tsx:72 1525 + #: src/view/com/modals/AppealLabel.tsx:75 1526 + #~ msgid "Please tell us why you think this decision was incorrect." 1527 + #~ msgstr "Mohon beritahu kami mengapa menurut Anda keputusan ini salah." 1528 + 1529 + #: src/view/com/composer/Composer.tsx:337 1530 + #: src/view/com/post-thread/PostThread.tsx:225 1531 + #: src/view/screens/PostThread.tsx:80 1532 + msgid "Post" 1533 + msgstr "Posting" 1534 + 1535 + #: src/view/com/post-thread/PostThread.tsx:378 1536 + msgid "Post hidden" 1537 + msgstr "Postingan disembunyikan" 1538 + 1539 + #: src/view/com/composer/select-language/SelectLangBtn.tsx:87 1540 + msgid "Post language" 1541 + msgstr "Bahasa postingan" 1542 + 1543 + #: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 1544 + msgid "Post Languages" 1545 + msgstr "Bahasa Postingan" 1546 + 1547 + #: src/view/com/post-thread/PostThread.tsx:430 1548 + msgid "Post not found" 1549 + msgstr "Postingan tidak ditemukan" 1550 + 1551 + #: src/view/screens/Profile.tsx:161 1552 + msgid "Posts" 1553 + msgstr "Postingan" 1554 + 1555 + #: src/view/com/modals/LinkWarning.tsx:44 1556 + msgid "Potentially Misleading Link" 1557 + msgstr "Tautan yang Mungkin Menyesatkan" 1558 + 1559 + #: src/view/com/lightbox/Lightbox.web.tsx:128 1560 + msgid "Previous image" 1561 + msgstr "Gambar sebelumnya" 1562 + 1563 + #: src/view/screens/LanguageSettings.tsx:187 1564 + msgid "Primary Language" 1565 + msgstr "Bahasa Utama" 1566 + 1567 + #: src/view/screens/PreferencesThreads.tsx:91 1568 + msgid "Prioritize Your Follows" 1569 + msgstr "Prioritaskan Pengikut Anda" 1570 + 1571 + #: src/view/shell/desktop/RightNav.tsx:76 1572 + msgid "Privacy" 1573 + msgstr "Privasi" 1574 + 1575 + #: src/view/screens/PrivacyPolicy.tsx:29 1576 + #: src/view/screens/Settings.tsx:750 1577 + #: src/view/shell/Drawer.tsx:262 1578 + msgid "Privacy Policy" 1579 + msgstr "Kebijakan Privasi" 1580 + 1581 + #: src/view/com/auth/login/ForgotPasswordForm.tsx:190 1582 + msgid "Processing..." 1583 + msgstr "Memproses..." 1584 + 1585 + #: src/view/shell/bottom-bar/BottomBar.tsx:247 1586 + #: src/view/shell/desktop/LeftNav.tsx:413 1587 + #: src/view/shell/Drawer.tsx:70 1588 + #: src/view/shell/Drawer.tsx:544 1589 + #: src/view/shell/Drawer.tsx:545 1590 + msgid "Profile" 1591 + msgstr "Profil" 1592 + 1593 + #: src/view/screens/Settings.tsx:808 1594 + msgid "Protect your account by verifying your email." 1595 + msgstr "Amankan akun Anda dengan memverifikasi email Anda." 1596 + 1597 + #: src/view/screens/ModerationModlists.tsx:61 1598 + msgid "Public, shareable lists of users to mute or block in bulk." 1599 + msgstr "Publik, daftar yang dapat dibagikan oleh pengguna untuk membisukan atau memblokir massal." 1600 + 1601 + #: src/view/screens/Lists.tsx:61 1602 + msgid "Public, shareable lists which can drive feeds." 1603 + msgstr "Publik, daftar yang dapat dibagikan dan dapat berimbas ke feed." 1604 + 1605 + #: src/view/com/modals/Repost.tsx:52 1606 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:58 1607 + msgid "Quote post" 1608 + msgstr "Kutip postingan" 1609 + 1610 + #: src/view/com/modals/Repost.tsx:56 1611 + msgid "Quote Post" 1612 + msgstr "Kutip Postingan" 1613 + 1614 + #: src/view/com/modals/EditImage.tsx:236 1615 + msgid "Ratios" 1616 + msgstr "Rasio" 1617 + 1618 + #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:116 1619 + msgid "Recommended Feeds" 1620 + msgstr "Feed Direkomendasikan" 1621 + 1622 + #: src/view/com/auth/onboarding/RecommendedFollows.tsx:180 1623 + msgid "Recommended Users" 1624 + msgstr "Pengguna Direkomendasikan" 1625 + 1626 + #: src/view/com/modals/ListAddRemoveUsers.tsx:264 1627 + #: src/view/com/modals/SelfLabel.tsx:83 1628 + #: src/view/com/modals/UserAddRemoveLists.tsx:193 1629 + #: src/view/com/util/UserAvatar.tsx:282 1630 + #: src/view/com/util/UserBanner.tsx:89 1631 + msgid "Remove" 1632 + msgstr "Hapus" 1633 + 1634 + #: src/view/com/feeds/FeedSourceCard.tsx:106 1635 + msgid "Remove {0} from my feeds?" 1636 + msgstr "Hapus {0} dari daftar feed saya?" 1637 + 1638 + #: src/view/com/util/AccountDropdownBtn.tsx:22 1639 + msgid "Remove account" 1640 + msgstr "Hapus akun" 1641 + 1642 + #: src/view/com/posts/FeedErrorMessage.tsx:130 1643 + msgid "Remove feed" 1644 + msgstr "Hapus feed" 1645 + 1646 + #: src/view/com/feeds/FeedSourceCard.tsx:105 1647 + #: src/view/com/feeds/FeedSourceCard.tsx:172 1648 + #: src/view/screens/ProfileFeed.tsx:270 1649 + msgid "Remove from my feeds" 1650 + msgstr "Hapus dari feed saya" 1651 + 1652 + #: src/view/com/composer/photos/Gallery.tsx:167 1653 + msgid "Remove image" 1654 + msgstr "Hapus gambar" 1655 + 1656 + #: src/view/com/composer/ExternalEmbed.tsx:70 1657 + msgid "Remove image preview" 1658 + msgstr "Hapus pratinjau gambar" 1659 + 1660 + #: src/view/com/feeds/FeedSourceCard.tsx:173 1661 + msgid "Remove this feed from my feeds?" 1662 + msgstr "Hapus feed ini dari feed saya?" 1663 + 1664 + #: src/view/com/posts/FeedErrorMessage.tsx:131 1665 + msgid "Remove this feed from your saved feeds?" 1666 + msgstr "Hapus feed ini dari feed tersimpan Anda?" 1667 + 1668 + #: src/view/com/modals/ListAddRemoveUsers.tsx:199 1669 + #: src/view/com/modals/UserAddRemoveLists.tsx:136 1670 + msgid "Removed from list" 1671 + msgstr "Dihapus dari daftar" 1672 + 1673 + #: src/view/screens/Profile.tsx:162 1674 + msgid "Replies" 1675 + msgstr "Balasan" 1676 + 1677 + #: src/view/com/threadgate/WhoCanReply.tsx:98 1678 + msgid "Replies to this thread are disabled" 1679 + msgstr "Balasan ke utas ini dinonaktifkan" 1680 + 1681 + #: src/view/screens/PreferencesHomeFeed.tsx:135 1682 + msgid "Reply Filters" 1683 + msgstr "Penyaring Balasan" 1684 + 1685 + #: src/view/com/modals/report/Modal.tsx:166 1686 + msgid "Report {collectionName}" 1687 + msgstr "Laporkan {collectionName}" 1688 + 1689 + #: src/view/com/profile/ProfileHeader.tsx:404 1690 + msgid "Report Account" 1691 + msgstr "Laporkan Akun" 1692 + 1693 + #: src/view/screens/ProfileFeed.tsx:290 1694 + msgid "Report feed" 1695 + msgstr "Laporkan feed" 1696 + 1697 + #: src/view/screens/ProfileList.tsx:425 1698 + msgid "Report List" 1699 + msgstr "Laporkan Daftar" 1700 + 1701 + #: src/view/com/modals/report/SendReportButton.tsx:37 1702 + #: src/view/com/util/forms/PostDropdownBtn.tsx:196 1703 + msgid "Report post" 1704 + msgstr "Laporkan postingan" 1705 + 1706 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:48 1707 + msgid "Repost" 1708 + msgstr "Posting ulang" 1709 + 1710 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:94 1711 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:105 1712 + msgid "Repost or quote post" 1713 + msgstr "Posting ulang atau kutip postingan" 1714 + 1715 + #: src/view/screens/PostRepostedBy.tsx:27 1716 + msgid "Reposted by" 1717 + msgstr "Diposting ulang oleh" 1718 + 1719 + #: src/view/com/modals/ChangeEmail.tsx:181 1720 + #: src/view/com/modals/ChangeEmail.tsx:183 1721 + msgid "Request Change" 1722 + msgstr "Ajukan Perubahan" 1723 + 1724 + #: src/view/com/auth/create/Step2.tsx:53 1725 + msgid "Required for this provider" 1726 + msgstr "Diwajibkan untuk provider ini" 1727 + 1728 + #: src/view/com/auth/login/SetNewPasswordForm.tsx:108 1729 + msgid "Reset code" 1730 + msgstr "Kode reset" 1731 + 1732 + #: src/view/screens/Settings.tsx:686 1733 + msgid "Reset onboarding state" 1734 + msgstr "Reset status onboarding" 1735 + 1736 + #: src/view/com/auth/login/ForgotPasswordForm.tsx:98 1737 + msgid "Reset password" 1738 + msgstr "Reset kata sandi" 1739 + 1740 + #: src/view/screens/Settings.tsx:676 1741 + msgid "Reset preferences state" 1742 + msgstr Reset status preferensi" 1743 + 1744 + #: src/view/screens/Settings.tsx:684 1745 + msgid "Resets the onboarding state" 1746 + msgstr "Reset status onboarding" 1747 + 1748 + #: src/view/screens/Settings.tsx:674 1749 + msgid "Resets the preferences state" 1750 + msgstr "Reset status preferensi" 1751 + 1752 + #: src/view/com/auth/create/CreateAccount.tsx:163 1753 + #: src/view/com/auth/create/CreateAccount.tsx:167 1754 + #: src/view/com/auth/login/LoginForm.tsx:258 1755 + #: src/view/com/auth/login/LoginForm.tsx:261 1756 + #: src/view/com/util/error/ErrorMessage.tsx:55 1757 + #: src/view/com/util/error/ErrorScreen.tsx:65 1758 + msgid "Retry" 1759 + msgstr "Ulangi" 1760 + 1761 + #: src/view/com/modals/AltImage.tsx:115 1762 + #: src/view/com/modals/BirthDateSettings.tsx:93 1763 + #: src/view/com/modals/BirthDateSettings.tsx:96 1764 + #: src/view/com/modals/ChangeHandle.tsx:173 1765 + #: src/view/com/modals/CreateOrEditList.tsx:249 1766 + #: src/view/com/modals/CreateOrEditList.tsx:257 1767 + #: src/view/com/modals/EditProfile.tsx:223 1768 + msgid "Save" 1769 + msgstr "Simpan" 1770 + 1771 + #: src/view/com/modals/AltImage.tsx:106 1772 + msgid "Save alt text" 1773 + msgstr "Simpan teks alt" 1774 + 1775 + #: src/view/com/modals/EditProfile.tsx:231 1776 + msgid "Save Changes" 1777 + msgstr "Simpan Perubahan" 1778 + 1779 + #: src/view/com/modals/ChangeHandle.tsx:170 1780 + msgid "Save handle change" 1781 + msgstr "Simpan perubahan handle" 1782 + 1783 + #: src/view/com/modals/crop-image/CropImage.web.tsx:144 1784 + msgid "Save image crop" 1785 + msgstr "Simpan potongan gambar" 1786 + 1787 + #: src/view/screens/SavedFeeds.tsx:122 1788 + msgid "Saved Feeds" 1789 + msgstr "Simpan Feed" 1790 + 1791 + #: src/view/com/modals/ListAddRemoveUsers.tsx:75 1792 + #: src/view/com/util/forms/SearchInput.tsx:64 1793 + #: src/view/screens/Search/Search.tsx:393 1794 + #: src/view/screens/Search/Search.tsx:559 1795 + #: src/view/shell/bottom-bar/BottomBar.tsx:159 1796 + #: src/view/shell/desktop/LeftNav.tsx:322 1797 + #: src/view/shell/desktop/Search.tsx:161 1798 + #: src/view/shell/desktop/Search.tsx:170 1799 + #: src/view/shell/Drawer.tsx:362 1800 + #: src/view/shell/Drawer.tsx:363 1801 + msgid "Search" 1802 + msgstr "Cari" 1803 + 1804 + #: src/view/com/auth/LoggedOut.tsx:104 1805 + #: src/view/com/auth/LoggedOut.tsx:105 1806 + msgid "Search for users" 1807 + msgstr "Cari pengguna" 1808 + 1809 + #: src/view/com/modals/ChangeEmail.tsx:110 1810 + msgid "Security Step Required" 1811 + msgstr "Langkah Keamanan Diperlukan" 1812 + 1813 + #: src/view/com/auth/HomeLoggedOutCTA.tsx:39 1814 + msgid "See what's next" 1815 + msgstr "Lihat apa yang akan datang" 1816 + 1817 + #: src/view/com/modals/ServerInput.tsx:75 1818 + msgid "Select Bluesky Social" 1819 + msgstr "Pilih Bluesky Social" 1820 + 1821 + #: src/view/com/auth/login/Login.tsx:117 1822 + msgid "Select from an existing account" 1823 + msgstr "Pilih dari akun yang sudah ada" 1824 + 1825 + #: src/view/com/auth/login/LoginForm.tsx:143 1826 + msgid "Select service" 1827 + msgstr "Pilih layanan" 1828 + 1829 + #: src/view/screens/LanguageSettings.tsx:281 1830 + msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." 1831 + msgstr "Pilih bahasa yang ingin Anda langgani di feed Anda. Jika tidak memilih, maka semua bahasa akan ditampilkan." 1832 + 1833 + #: src/view/screens/LanguageSettings.tsx:98 1834 + msgid "Select your app language for the default text to display in the app" 1835 + msgstr "Pilih bahasa aplikasi Anda untuk tampilan teks bawaan dalam aplikasi" 1836 + 1837 + #: src/view/screens/LanguageSettings.tsx:190 1838 + msgid "Select your preferred language for translations in your feed." 1839 + msgstr "Pilih bahasa yang disukai untuk penerjemahaan feed Anda." 1840 + 1841 + #: src/view/com/modals/VerifyEmail.tsx:196 1842 + msgid "Send Confirmation Email" 1843 + msgstr "Kirim Email Konfirmasi" 1844 + 1845 + #: src/view/com/modals/DeleteAccount.tsx:127 1846 + msgid "Send email" 1847 + msgstr "Kirim email" 1848 + 1849 + #: src/view/com/modals/DeleteAccount.tsx:138 1850 + msgid "Send Email" 1851 + msgstr "Kirim Email" 1852 + 1853 + #: src/view/shell/Drawer.tsx:295 1854 + #: src/view/shell/Drawer.tsx:316 1855 + msgid "Send feedback" 1856 + msgstr "Kirim masukan" 1857 + 1858 + #: src/view/com/modals/report/SendReportButton.tsx:45 1859 + msgid "Send Report" 1860 + msgstr "Kirim Laporan" 1861 + 1862 + #: src/view/com/auth/login/SetNewPasswordForm.tsx:78 1863 + msgid "Set new password" 1864 + msgstr "Buat kata sandi baru" 1865 + 1866 + #: src/view/screens/PreferencesHomeFeed.tsx:216 1867 + msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." 1868 + msgstr "Pilih \"Tidak\" untuk menyembunyikan semua kutipan postingan dari feed Anda. Posting ulang tetap akan terlihat." 1869 + 1870 + #: src/view/screens/PreferencesHomeFeed.tsx:113 1871 + msgid "Set this setting to \"No\" to hide all replies from your feed." 1872 + msgstr "Pilih \"Tidak\" untuk menyembunyikan semua balasan dari feed Anda." 1873 + 1874 + #: src/view/screens/PreferencesHomeFeed.tsx:182 1875 + msgid "Set this setting to \"No\" to hide all reposts from your feed." 1876 + msgstr "Pilih \"Tidak\" untuk menyembunyikan semua posting ulang dari feed Anda." 1877 + 1878 + #: src/view/screens/PreferencesThreads.tsx:116 1879 + msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." 1880 + msgstr "Pilih \"Ya\" untuk menampilkan balasan dalam bentuk utasan. Ini merupakan fitur eksperimental." 1881 + 1882 + #: src/view/screens/PreferencesHomeFeed.tsx:252 1883 + msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." 1884 + msgstr "Pilih \"Ya\" untuk menampilkan beberapa sampel dari feed tersimpan Anda pada feed mengikuti. Ini merupakan fitur eksperimental." 1885 + 1886 + #: src/view/screens/Settings.tsx:277 1887 + #: src/view/shell/desktop/LeftNav.tsx:431 1888 + #: src/view/shell/Drawer.tsx:565 1889 + #: src/view/shell/Drawer.tsx:566 1890 + msgid "Settings" 1891 + msgstr "Pengaturan" 1892 + 1893 + #: src/view/com/modals/SelfLabel.tsx:125 1894 + msgid "Sexual activity or erotic nudity." 1895 + msgstr "Aktivitas seksual atau ketelanjangan erotis." 1896 + 1897 + #: src/view/com/profile/ProfileHeader.tsx:338 1898 + #: src/view/com/util/forms/PostDropdownBtn.tsx:139 1899 + #: src/view/screens/ProfileList.tsx:384 1900 + msgid "Share" 1901 + msgstr "Bagikan" 1902 + 1903 + #: src/view/screens/ProfileFeed.tsx:302 1904 + msgid "Share feed" 1905 + msgstr "Bagikan feed" 1906 + 1907 + #: src/view/com/util/moderation/ContentHider.tsx:105 1908 + #: src/view/screens/Settings.tsx:316 1909 + msgid "Show" 1910 + msgstr "Tampilkan" 1911 + 1912 + #: src/view/com/util/moderation/ScreenHider.tsx:132 1913 + msgid "Show anyway" 1914 + msgstr "Tetap tampilkan" 1915 + 1916 + #: src/view/screens/PreferencesHomeFeed.tsx:249 1917 + msgid "Show Posts from My Feeds" 1918 + msgstr "Tampilkan Postingan dari Feed Saya" 1919 + 1920 + #: src/view/screens/PreferencesHomeFeed.tsx:213 1921 + msgid "Show Quote Posts" 1922 + msgstr "Tampilkan Kutipan Postingan" 1923 + 1924 + #: src/view/screens/PreferencesHomeFeed.tsx:110 1925 + msgid "Show Replies" 1926 + msgstr "Tampilkan Balasan" 1927 + 1928 + #: src/view/screens/PreferencesThreads.tsx:94 1929 + msgid "Show replies by people you follow before all other replies." 1930 + msgstr "Tampilkan balasan dari orang yang Anda ikuti sebelum balasan lainnya." 1931 + 1932 + #: src/view/screens/PreferencesHomeFeed.tsx:179 1933 + msgid "Show Reposts" 1934 + msgstr "Tampilkan Posting Ulang" 1935 + 1936 + #: src/view/com/notifications/FeedItem.tsx:337 1937 + msgid "Show users" 1938 + msgstr "Tampilkan pengguna" 1939 + 1940 + #: src/view/com/auth/HomeLoggedOutCTA.tsx:70 1941 + #: src/view/com/auth/login/Login.tsx:98 1942 + #: src/view/com/auth/SplashScreen.tsx:54 1943 + #: src/view/shell/bottom-bar/BottomBar.tsx:285 1944 + #: src/view/shell/bottom-bar/BottomBar.tsx:286 1945 + #: src/view/shell/bottom-bar/BottomBar.tsx:288 1946 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:177 1947 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:178 1948 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:180 1949 + #: src/view/shell/NavSignupCard.tsx:58 1950 + #: src/view/shell/NavSignupCard.tsx:59 1951 + msgid "Sign in" 1952 + msgstr "Masuk" 1953 + 1954 + #: src/view/com/auth/HomeLoggedOutCTA.tsx:78 1955 + #: src/view/com/auth/SplashScreen.tsx:57 1956 + #: src/view/com/auth/SplashScreen.web.tsx:87 1957 + msgid "Sign In" 1958 + msgstr "Masuk" 1959 + 1960 + #: src/view/com/auth/login/ChooseAccountForm.tsx:44 1961 + msgid "Sign in as {0}" 1962 + msgstr "Masuk sebagai {0}" 1963 + 1964 + #: src/view/com/auth/login/ChooseAccountForm.tsx:118 1965 + #: src/view/com/auth/login/Login.tsx:116 1966 + msgid "Sign in as..." 1967 + msgstr "Masuk sebagai..." 1968 + 1969 + #: src/view/com/auth/login/LoginForm.tsx:130 1970 + msgid "Sign into" 1971 + msgstr "Masuk ke" 1972 + 1973 + #: src/view/com/modals/SwitchAccount.tsx:64 1974 + #: src/view/com/modals/SwitchAccount.tsx:67 1975 + msgid "Sign out" 1976 + msgstr "Keluar" 1977 + 1978 + #: src/view/shell/bottom-bar/BottomBar.tsx:275 1979 + #: src/view/shell/bottom-bar/BottomBar.tsx:276 1980 + #: src/view/shell/bottom-bar/BottomBar.tsx:278 1981 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:167 1982 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:168 1983 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:170 1984 + #: src/view/shell/NavSignupCard.tsx:49 1985 + #: src/view/shell/NavSignupCard.tsx:50 1986 + #: src/view/shell/NavSignupCard.tsx:52 1987 + msgid "Sign up" 1988 + msgstr "Daftar" 1989 + 1990 + #: src/view/shell/NavSignupCard.tsx:42 1991 + msgid "Sign up or sign in to join the conversation" 1992 + msgstr "Daftar atau masuk untuk bergabung dalam obrolan" 1993 + 1994 + #: src/view/com/util/moderation/ScreenHider.tsx:76 1995 + msgid "Sign-in Required" 1996 + msgstr "Dibutuhkan Masuk" 1997 + 1998 + #: src/view/screens/Settings.tsx:327 1999 + msgid "Signed in as" 2000 + msgstr "Masuk sebagai" 2001 + 2002 + #: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 2003 + msgid "Skip" 2004 + msgstr "Lewati" 2005 + 2006 + #: src/view/screens/PreferencesThreads.tsx:69 2007 + msgid "Sort Replies" 2008 + msgstr "Urutkan Balasan" 2009 + 2010 + #: src/view/screens/PreferencesThreads.tsx:72 2011 + msgid "Sort replies to the same post by:" 2012 + msgstr Urutkan balasan ke postingan yang sama berdasarkan:" 2013 + 2014 + #: src/view/com/modals/crop-image/CropImage.web.tsx:122 2015 + msgid "Square" 2016 + msgstr "Persegi" 2017 + 2018 + #: src/view/com/auth/create/Step1.tsx:90 2019 + #: src/view/com/modals/ServerInput.tsx:62 2020 + msgid "Staging" 2021 + msgstr "Staging" 2022 + 2023 + #: src/view/screens/Settings.tsx:730 2024 + msgid "Status page" 2025 + msgstr "Halaman status" 2026 + 2027 + #: src/view/screens/Settings.tsx:666 2028 + msgid "Storybook" 2029 + msgstr "Storybook" 2030 + 2031 + #: src/view/com/modals/AppealLabel.tsx:101 2032 + msgid "Submit" 2033 + msgstr "Kirim" 2034 + 2035 + #: src/view/screens/ProfileList.tsx:574 2036 + msgid "Subscribe" 2037 + msgstr "Langganan" 2038 + 2039 + #: src/view/screens/ProfileList.tsx:570 2040 + msgid "Subscribe to this list" 2041 + msgstr "Langganan ke daftar ini" 2042 + 2043 + #: src/view/screens/Search/Search.tsx:349 2044 + msgid "Suggested Follows" 2045 + msgstr "Saran untuk Diikuti" 2046 + 2047 + #: src/view/screens/Support.tsx:30 2048 + #: src/view/screens/Support.tsx:33 2049 + msgid "Support" 2050 + msgstr "Dukungan" 2051 + 2052 + #: src/view/com/modals/SwitchAccount.tsx:115 2053 + msgid "Switch Account" 2054 + msgstr "Pindah Akun" 2055 + 2056 + #: src/view/screens/Settings.tsx:646 2057 + msgid "System log" 2058 + msgstr "Log sistem" 2059 + 2060 + #: src/view/com/modals/crop-image/CropImage.web.tsx:112 2061 + msgid "Tall" 2062 + msgstr "Tinggi" 2063 + 2064 + #: src/view/shell/desktop/RightNav.tsx:85 2065 + msgid "Terms" 2066 + msgstr "Ketentuan" 2067 + 2068 + #: src/view/screens/Settings.tsx:744 2069 + #: src/view/screens/TermsOfService.tsx:29 2070 + #: src/view/shell/Drawer.tsx:256 2071 + msgid "Terms of Service" 2072 + msgstr "Ketentuan Layanan" 2073 + 2074 + #: src/view/com/modals/AppealLabel.tsx:70 2075 + #: src/view/com/modals/report/InputIssueDetails.tsx:50 2076 + msgid "Text input field" 2077 + msgstr "Area input teks" 2078 + 2079 + #: src/view/com/profile/ProfileHeader.tsx:306 2080 + msgid "The account will be able to interact with you after unblocking." 2081 + msgstr "Akun ini akan dapat berinteraksi dengan Anda setelah blokir dibuka." 2082 + 2083 + #: src/view/screens/CommunityGuidelines.tsx:36 2084 + msgid "The Community Guidelines have been moved to <0/>" 2085 + msgstr "Panduan Komunitas telah dipindahkan ke <0/>" 2086 + 2087 + #: src/view/screens/CopyrightPolicy.tsx:33 2088 + msgid "The Copyright Policy has been moved to <0/>" 2089 + msgstr "Kebijakan Hak Cipta telah dipindahkan ke <0/>" 2090 + 2091 + #: src/view/com/post-thread/PostThread.tsx:433 2092 + msgid "The post may have been deleted." 2093 + msgstr "Postingan mungkin telah dihapus." 2094 + 2095 + #: src/view/screens/PrivacyPolicy.tsx:33 2096 + msgid "The Privacy Policy has been moved to <0/>" 2097 + msgstr "Kebijakan Privasi telah dipindahkan ke <0/>" 2098 + 2099 + #: src/view/screens/Support.tsx:36 2100 + msgid "The support form has been moved. If you need help, please<0/> or visit {HELP_DESK_URL} to get in touch with us." 2101 + msgstr "Formulir bantuan telah dipindahkan. Jika Anda butuh bantuan, silakan<0/> atau kunjungi {HELP_DESK_URL} untuk menghubungi kami." 2102 + 2103 + #: src/view/screens/TermsOfService.tsx:33 2104 + msgid "The Terms of Service have been moved to" 2105 + msgstr "Ketentuan Layanan telah dipindahkan ke" 2106 + 2107 + #: src/view/com/util/ErrorBoundary.tsx:35 2108 + msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" 2109 + msgstr "Sepertinya ada masalah pada aplikasi. Harap beri tahu kami jika Anda mengalaminya!" 2110 + 2111 + #: src/view/com/util/moderation/LabelInfo.tsx:45 2112 + #~ msgid "This {0} has been labeled." 2113 + #~ msgstr "Ini {0} telah diberi label." 2114 + 2115 + #: src/view/com/util/moderation/ScreenHider.tsx:88 2116 + msgid "This {screenDescription} has been flagged:" 2117 + msgstr "Ini {screenDescription} telah ditandai:" 2118 + 2119 + #: src/view/com/util/moderation/ScreenHider.tsx:83 2120 + msgid "This account has requested that users sign in to view their profile." 2121 + msgstr "Akun ini mewajibkan pengguna untuk masuk agar bisa melihat profilnya." 2122 + 2123 + #: src/view/com/posts/FeedErrorMessage.tsx:107 2124 + msgid "This content is not viewable without a Bluesky account." 2125 + msgstr "Konten ini tidak dapat dilihat tanpa akun Bluesky." 2126 + 2127 + #: src/view/com/posts/FeedErrorMessage.tsx:113 2128 + msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." 2129 + msgstr "Feed ini sedang menerima terlalu banyak trafik dan sementara tidak tersedia. Silakan coba lagi nanti." 2130 + 2131 + #: src/view/com/modals/BirthDateSettings.tsx:61 2132 + msgid "This information is not shared with other users." 2133 + msgstr "Informasi ini tidak akan dibagikan ke pengguna lainnya." 2134 + 2135 + #: src/view/com/modals/VerifyEmail.tsx:113 2136 + msgid "This is important in case you ever need to change your email or reset your password." 2137 + msgstr "Ini penting jika Anda butuh untuk mengganti email atau reset kata sandi Anda nantinya." 2138 + 2139 + #: src/view/com/auth/create/Step1.tsx:55 2140 + msgid "This is the service that keeps you online." 2141 + msgstr "Ini adalah layanan yang menjaga Anda tetap online." 2142 + 2143 + #: src/view/com/modals/LinkWarning.tsx:56 2144 + msgid "This link is taking you to the following website:" 2145 + msgstr "Tautan ini akan membawa Anda ke website:" 2146 + 2147 + #: src/view/com/post-thread/PostThreadItem.tsx:123 2148 + msgid "This post has been deleted." 2149 + msgstr "Postingan ini telah dihapus." 2150 + 2151 + #: src/view/com/modals/SelfLabel.tsx:137 2152 + msgid "This warning is only available for posts with media attached." 2153 + msgstr "Peringatan ini hanya tersedia untuk postingan dengan lampiran media." 2154 + 2155 + #: src/view/com/util/forms/PostDropdownBtn.tsx:178 2156 + msgid "This will hide this post from your feeds." 2157 + msgstr "Ini akan menyembunyikan postingan ini dari feed Anda." 2158 + 2159 + #: src/view/screens/PreferencesThreads.tsx:53 2160 + #: src/view/screens/Settings.tsx:503 2161 + msgid "Thread Preferences" 2162 + msgstr "Preferensi Utasan" 2163 + 2164 + #: src/view/screens/PreferencesThreads.tsx:113 2165 + msgid "Threaded Mode" 2166 + msgstr "Mode Utasan" 2167 + 2168 + #: src/view/com/util/forms/DropdownButton.tsx:230 2169 + msgid "Toggle dropdown" 2170 + msgstr "Beralih dropdown" 2171 + 2172 + #: src/view/com/modals/EditImage.tsx:271 2173 + msgid "Transformations" 2174 + msgstr "Transformasi" 2175 + 2176 + #: src/view/com/post-thread/PostThreadItem.tsx:704 2177 + #: src/view/com/post-thread/PostThreadItem.tsx:706 2178 + #: src/view/com/util/forms/PostDropdownBtn.tsx:111 2179 + msgid "Translate" 2180 + msgstr "Terjemahkan" 2181 + 2182 + #: src/view/com/util/error/ErrorScreen.tsx:73 2183 + msgid "Try again" 2184 + msgstr "Ulangi" 2185 + 2186 + #: src/view/screens/ProfileList.tsx:472 2187 + msgid "Un-block list" 2188 + msgstr "Buka blokir daftar" 2189 + 2190 + #: src/view/screens/ProfileList.tsx:457 2191 + msgid "Un-mute list" 2192 + msgstr "Bunyikan daftar" 2193 + 2194 + #: src/view/com/auth/create/CreateAccount.tsx:64 2195 + #: src/view/com/auth/login/Login.tsx:76 2196 + #: src/view/com/auth/login/LoginForm.tsx:117 2197 + msgid "Unable to contact your service. Please check your Internet connection." 2198 + msgstr "Tidak dapat terhubung ke layanan. Mohon periksa koneksi internet Anda." 2199 + 2200 + #: src/view/com/profile/ProfileHeader.tsx:466 2201 + #: src/view/com/profile/ProfileHeader.tsx:469 2202 + msgid "Unblock" 2203 + msgstr "Buka blokir" 2204 + 2205 + #: src/view/com/profile/ProfileHeader.tsx:304 2206 + #: src/view/com/profile/ProfileHeader.tsx:388 2207 + msgid "Unblock Account" 2208 + msgstr "Buka blokir Akun" 2209 + 2210 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:48 2211 + msgid "Undo repost" 2212 + msgstr "Batalkan posting ulang" 2213 + 2214 + #: src/view/com/auth/create/state.ts:210 2215 + msgid "Unfortunately, you do not meet the requirements to create an account." 2216 + msgstr "Sayangnya, Anda tidak memenuhi syarat untuk membuat akun." 2217 + 2218 + #: src/view/com/profile/ProfileHeader.tsx:369 2219 + msgid "Unmute Account" 2220 + msgstr "Bunyikan Akun" 2221 + 2222 + #: src/view/com/util/forms/PostDropdownBtn.tsx:157 2223 + msgid "Unmute thread" 2224 + msgstr "Bunyikan utasan" 2225 + 2226 + #: src/view/screens/ProfileList.tsx:440 2227 + msgid "Unpin moderation list" 2228 + msgstr "Lepas sematan daftar moderasi" 2229 + 2230 + #: src/view/com/modals/UserAddRemoveLists.tsx:54 2231 + msgid "Update {displayName} in Lists" 2232 + msgstr "Memperbarui {displayName} di Daftar" 2233 + 2234 + #: src/lib/hooks/useOTAUpdate.ts:15 2235 + msgid "Update Available" 2236 + msgstr "Pembaruan Tersedia" 2237 + 2238 + #: src/view/com/auth/login/SetNewPasswordForm.tsx:172 2239 + msgid "Updating..." 2240 + msgstr "Memperbarui..." 2241 + 2242 + #: src/view/com/modals/ChangeHandle.tsx:453 2243 + msgid "Upload a text file to:" 2244 + msgstr "Unggah berkas teks ke:" 2245 + 2246 + #: src/view/screens/AppPasswords.tsx:194 2247 + msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." 2248 + msgstr "Gunakan kata sandi aplikasi untuk masuk ke klien Bluesky lainnya tanpa memberikan akses penuh ke akun atau kata sandi Anda." 2249 + 2250 + #: src/view/com/modals/ChangeHandle.tsx:513 2251 + msgid "Use default provider" 2252 + msgstr "Gunakan layanan bawaan" 2253 + 2254 + #: src/view/com/modals/AddAppPasswords.tsx:150 2255 + msgid "Use this to sign into the other app along with your handle." 2256 + msgstr "Gunakan ini untuk masuk ke aplikasi lain dengan handle Anda." 2257 + 2258 + #: src/view/com/modals/InviteCodes.tsx:197 2259 + msgid "Used by:" 2260 + msgstr "Digunakan oleh:" 2261 + 2262 + #: src/view/com/auth/create/Step3.tsx:38 2263 + msgid "User handle" 2264 + msgstr "Handle pengguna" 2265 + 2266 + #: src/view/screens/Lists.tsx:58 2267 + msgid "User Lists" 2268 + msgstr "Daftar Pengguna" 2269 + 2270 + #: src/view/com/auth/login/LoginForm.tsx:170 2271 + #: src/view/com/auth/login/LoginForm.tsx:187 2272 + msgid "Username or email address" 2273 + msgstr "Nama pengguna atau alamat email" 2274 + 2275 + #: src/view/screens/ProfileList.tsx:738 2276 + msgid "Users" 2277 + msgstr "Pengguna" 2278 + 2279 + #: src/view/com/threadgate/WhoCanReply.tsx:143 2280 + msgid "users followed by <0/>" 2281 + msgstr "pengguna yang diikuti <0/>" 2282 + 2283 + #: src/view/com/modals/Threadgate.tsx:106 2284 + msgid "Users in \"{0}\"" 2285 + msgstr "Pengguna di \"{0}\"" 2286 + 2287 + #: src/view/screens/Settings.tsx:769 2288 + msgid "Verify email" 2289 + msgstr "Verifikasi email" 2290 + 2291 + #: src/view/screens/Settings.tsx:794 2292 + msgid "Verify my email" 2293 + msgstr "Verifikasi email saya" 2294 + 2295 + #: src/view/screens/Settings.tsx:803 2296 + msgid "Verify My Email" 2297 + msgstr "Verifikasi Email Saya" 2298 + 2299 + #: src/view/com/modals/ChangeEmail.tsx:205 2300 + #: src/view/com/modals/ChangeEmail.tsx:207 2301 + msgid "Verify New Email" 2302 + msgstr "Verifikasi Email Baru" 2303 + 2304 + #: src/view/screens/Log.tsx:52 2305 + msgid "View debug entry" 2306 + msgstr "Lihat entri debug" 2307 + 2308 + #: src/view/com/profile/ProfileSubpageHeader.tsx:128 2309 + msgid "View the avatar" 2310 + msgstr "Lihat avatar" 2311 + 2312 + #: src/view/com/modals/LinkWarning.tsx:73 2313 + msgid "Visit Site" 2314 + msgstr "Kunjungi Halaman" 2315 + 2316 + #: src/view/com/auth/create/CreateAccount.tsx:121 2317 + msgid "We're so excited to have you join us!" 2318 + msgstr "Kami sangat senang Anda bergabung dengan kami!" 2319 + 2320 + #: src/view/screens/Search/Search.tsx:236 2321 + msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." 2322 + msgstr "Maaf, pencarian Anda tidak dapat dilakukan. Mohon coba lagi dalam beberapa menit." 2323 + 2324 + #: src/view/screens/NotFound.tsx:48 2325 + msgid "We're sorry! We can't find the page you were looking for." 2326 + msgstr "Maaf! Kami tidak dapat menemukan halaman yang Anda cari." 2327 + 2328 + #: src/view/com/auth/onboarding/WelcomeMobile.tsx:46 2329 + msgid "Welcome to <0>Bluesky</0>" 2330 + msgstr "Selamat Datang di <0>Bluesky</0>" 2331 + 2332 + #: src/view/com/modals/report/Modal.tsx:169 2333 + msgid "What is the issue with this {collectionName}?" 2334 + msgstr "Apa yang bermasalah dengan {collectionName}?" 2335 + 2336 + #: src/view/com/auth/SplashScreen.tsx:34 2337 + #~ msgid "What's next?" 2338 + #~ msgstr "Apa selanjutnya?" 2339 + 2340 + #: src/view/com/auth/SplashScreen.tsx:34 2341 + msgid "What's up?" 2342 + msgstr "Apa kabar?" 2343 + 2344 + #: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 2345 + msgid "Which languages are used in this post?" 2346 + msgstr "Bahasa apa yang digunakan di postingan ini?" 2347 + 2348 + #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 2349 + msgid "Which languages would you like to see in your algorithmic feeds?" 2350 + msgstr "Bahasa apa yang ingin Anda lihat di feed Anda?" 2351 + 2352 + #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 2353 + #: src/view/com/modals/Threadgate.tsx:66 2354 + msgid "Who can reply" 2355 + msgstr "Siapa yang dapat membalas" 2356 + 2357 + #: src/view/com/modals/crop-image/CropImage.web.tsx:102 2358 + msgid "Wide" 2359 + msgstr "Lebar" 2360 + 2361 + #: src/view/com/composer/Composer.tsx:409 2362 + msgid "Write post" 2363 + msgstr "Tulis postingan" 2364 + 2365 + #: src/view/com/composer/Prompt.tsx:33 2366 + msgid "Write your reply" 2367 + msgstr "Tulis balasan Anda" 2368 + 2369 + #: src/view/screens/PreferencesHomeFeed.tsx:192 2370 + #: src/view/screens/PreferencesHomeFeed.tsx:227 2371 + #: src/view/screens/PreferencesHomeFeed.tsx:262 2372 + msgid "Yes" 2373 + msgstr "Ya" 2374 + 2375 + #: src/view/com/auth/create/Step1.tsx:106 2376 + msgid "You can change hosting providers at any time." 2377 + msgstr "Anda dapat mengganti layanan hosting kapan pun." 2378 + 2379 + #: src/view/com/auth/login/Login.tsx:158 2380 + #: src/view/com/auth/login/PasswordUpdatedForm.tsx:31 2381 + msgid "You can now sign in with your new password." 2382 + msgstr "Sekarang Anda dapat masuk dengan kata sandi baru." 2383 + 2384 + #: src/view/com/modals/InviteCodes.tsx:64 2385 + msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." 2386 + msgstr "Anda belum memiliki kode undangan! Kami akan mengirimkan kode saat Anda sudah sedikit lama di Bluesky." 2387 + 2388 + #: src/view/screens/SavedFeeds.tsx:102 2389 + msgid "You don't have any pinned feeds." 2390 + msgstr "Anda tidak memiliki feed yang disematkan." 2391 + 2392 + #: src/view/screens/Feeds.tsx:383 2393 + msgid "You don't have any saved feeds!" 2394 + msgstr "Anda tidak memiliki feed yang disimpan!" 2395 + 2396 + #: src/view/screens/SavedFeeds.tsx:135 2397 + msgid "You don't have any saved feeds." 2398 + msgstr "Anda tidak memiliki feed yang disimpan." 2399 + 2400 + #: src/view/com/post-thread/PostThread.tsx:381 2401 + msgid "You have blocked the author or you have been blocked by the author." 2402 + msgstr "Anda telah memblokir atau diblokir oleh penulis ini." 2403 + 2404 + #: src/view/com/feeds/ProfileFeedgens.tsx:134 2405 + msgid "You have no feeds." 2406 + msgstr "Anda tidak punya feed." 2407 + 2408 + #: src/view/com/lists/MyLists.tsx:89 2409 + #: src/view/com/lists/ProfileLists.tsx:138 2410 + msgid "You have no lists." 2411 + msgstr "Anda tidak punya daftar." 2412 + 2413 + #: src/view/screens/ModerationBlockedAccounts.tsx:132 2414 + msgid "You have not blocked any accounts yet. To block an account, go to their profile and selected \"Block account\" from the menu on their account." 2415 + msgstr "Anda belum memblokir akun lain. Untuk memblokir akun, kunjungi profil mereka dan pilih \"Blokir akun\" pada menu di akun mereka." 2416 + 2417 + #: src/view/screens/AppPasswords.tsx:86 2418 + msgid "You have not created any app passwords yet. You can create one by pressing the button below." 2419 + msgstr "Anda belum membuat kata sandi aplikasi. Anda dapat membuatnya dengan menekan tombol di bawah ini." 2420 + 2421 + #: src/view/screens/ModerationMutedAccounts.tsx:131 2422 + msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." 2423 + msgstr "Anda belum membisukan akun lain. Untuk membisukan akun, kunjungi profil mereka dan pilih \"Bisukan akun\" pada menu di akun mereka." 2424 + 2425 + #: src/view/com/auth/login/SetNewPasswordForm.tsx:81 2426 + msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." 2427 + msgstr "Anda akan menerima email berisikan \"kode reset\". Masukkan kode tersebut di sini, lalu masukkan kata sandi baru." 2428 + 2429 + #: src/view/com/auth/create/Step2.tsx:43 2430 + msgid "Your account" 2431 + msgstr "Akun Anda" 2432 + 2433 + #: src/view/com/auth/create/Step2.tsx:122 2434 + msgid "Your birth date" 2435 + msgstr "Tanggal lahir Anda" 2436 + 2437 + #: src/view/com/auth/create/state.ts:102 2438 + msgid "Your email appears to be invalid." 2439 + msgstr "Email Anda tidak valid." 2440 + 2441 + #: src/view/com/modals/Waitlist.tsx:107 2442 + msgid "Your email has been saved! We'll be in touch soon." 2443 + msgstr "Email Anda telah disimpan. Kami akan segera menghubungi Anda." 2444 + 2445 + #: src/view/com/modals/ChangeEmail.tsx:125 2446 + msgid "Your email has been updated but not verified. As a next step, please verify your new email." 2447 + msgstr "Alamat email Anda telah diperbarui namun belum diverifikasi. Silakan verifikasi alamat email baru Anda." 2448 + 2449 + #: src/view/com/modals/VerifyEmail.tsx:108 2450 + msgid "Your email has not yet been verified. This is an important security step which we recommend." 2451 + msgstr "Alamat email Anda belum diverifikasi. Ini merupakan langkah keamanan penting yang kami rekomendasikan." 2452 + 2453 + #: src/view/com/auth/create/Step3.tsx:42 2454 + #: src/view/com/modals/ChangeHandle.tsx:270 2455 + msgid "Your full handle will be" 2456 + msgstr "Handle lengkap Anda akan menjadi" 2457 + 2458 + #: src/view/com/auth/create/Step1.tsx:53 2459 + msgid "Your hosting provider" 2460 + msgstr "Layanan hosting Anda" 2461 + 2462 + #: src/view/screens/Settings.tsx:402 2463 + #: src/view/shell/desktop/RightNav.tsx:129 2464 + #: src/view/shell/Drawer.tsx:655 2465 + msgid "Your invite codes are hidden when logged in using an App Password" 2466 + msgstr "Kode undangan Anda disembunyikan saat masuk menggunakan Kata Sandi Aplikasi" 2467 + 2468 + #: src/view/com/auth/onboarding/WelcomeMobile.tsx:59 2469 + msgid "Your posts, likes, and blocks are public. Mutes are private." 2470 + msgstr "Postingan, suka, dan blokir Anda bersifat publik. Bisukan bersifat privat." 2471 + 2472 + #: src/view/com/modals/SwitchAccount.tsx:82 2473 + msgid "Your profile" 2474 + msgstr "Profil Anda" 2475 + 2476 + #: src/view/com/auth/create/Step3.tsx:28 2477 + msgid "Your user handle" 2478 + msgstr "Handle Anda"