Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
150267f9
Kaydet (Commit)
150267f9
authored
Ock 07, 2018
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Related: tdf#114873 if fallback returned as result, drop context
Change-Id: I82676e4a0b3dee33e248b3ba81e99f949ee9227a
üst
384c16ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
strings.hrc
wizards/com/sun/star/wizards/common/strings.hrc
+4
-1
No files found.
wizards/com/sun/star/wizards/common/strings.hrc
Dosyayı görüntüle @
150267f9
...
@@ -23,7 +23,10 @@ def NC_(context, string):
...
@@ -23,7 +23,10 @@ def NC_(context, string):
# Contextual strings are stored with the concatenation of
# Contextual strings are stored with the concatenation of
# the context, a EOT byte, and the original string, instead of the original string
# the context, a EOT byte, and the original string, instead of the original string
# see https://www.gnu.org/software/gettext/manual/html_node/MO-Files.html
# see https://www.gnu.org/software/gettext/manual/html_node/MO-Files.html
return gettext.gettext(context + chr(4) + string)
ret = gettext.gettext(context + chr(4) + string)
if ret.find(chr(4)) == -1:
return ret
return string
# common section
# common section
RID_COMMON_START_0 = NC_("RID_COMMON_START_0", "The directory '%1' could not be created.<BR>There may not be enough space left on your hard disk.")
RID_COMMON_START_0 = NC_("RID_COMMON_START_0", "The directory '%1' could not be created.<BR>There may not be enough space left on your hard disk.")
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment