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
30441cd6
Kaydet (Commit)
30441cd6
authored
Tem 23, 2012
tarafından
Ariel Constenla-Haile
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#i120341# - Make SCSTR_FIELDSEP less translation-error-prone
üst
c931d7f1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
5 deletions
+20
-5
sc.hrc
sc/inc/sc.hrc
+4
-1
scuiasciiopt.cxx
sc/source/ui/dbgui/scuiasciiopt.cxx
+0
-1
scuiimoptdlg.cxx
sc/source/ui/dbgui/scuiimoptdlg.cxx
+5
-1
scuiasciiopt.hxx
sc/source/ui/inc/scuiasciiopt.hxx
+0
-1
scstring.src
sc/source/ui/src/scstring.src
+11
-1
No files found.
sc/inc/sc.hrc
Dosyayı görüntüle @
30441cd6
...
@@ -1062,7 +1062,10 @@
...
@@ -1062,7 +1062,10 @@
#define SCSTR_SET_TAB_BG_COLOR (STR_START + 403)
#define SCSTR_SET_TAB_BG_COLOR (STR_START + 403)
#define SCSTR_NO_TAB_BG_COLOR (STR_START + 404)
#define SCSTR_NO_TAB_BG_COLOR (STR_START + 404)
#define STR_END (SCSTR_NO_TAB_BG_COLOR)
#define SCSTR_FIELDSEP_TAB (STR_START + 405)
#define SCSTR_FIELDSEP_SPACE (STR_START + 406)
#define STR_END (SCSTR_FIELDSEP_SPACE)
#define BMP_START (STR_END)
#define BMP_START (STR_END)
...
...
sc/source/ui/dbgui/scuiasciiopt.cxx
Dosyayı görüntüle @
30441cd6
...
@@ -245,7 +245,6 @@ ScImportAsciiDlg::ScImportAsciiDlg( Window* pParent,String aDatName,
...
@@ -245,7 +245,6 @@ ScImportAsciiDlg::ScImportAsciiDlg( Window* pParent,String aDatName,
aCharSetUser
(
ScResId
(
SCSTR_CHARSET_USER
)
),
aCharSetUser
(
ScResId
(
SCSTR_CHARSET_USER
)
),
aColumnUser
(
ScResId
(
SCSTR_COLUMN_USER
)
),
aColumnUser
(
ScResId
(
SCSTR_COLUMN_USER
)
),
aFldSepList
(
ScResId
(
SCSTR_FIELDSEP
)
),
aTextSepList
(
ScResId
(
SCSTR_TEXTSEP
)
),
aTextSepList
(
ScResId
(
SCSTR_TEXTSEP
)
),
mcTextSep
(
ScAsciiOptions
::
cDefaultTextSep
),
mcTextSep
(
ScAsciiOptions
::
cDefaultTextSep
),
maStrTextToColumns
(
ScResId
(
STR_TEXTTOCOLUMNS
)
),
maStrTextToColumns
(
ScResId
(
STR_TEXTTOCOLUMNS
)
),
...
...
sc/source/ui/dbgui/scuiimoptdlg.cxx
Dosyayı görüntüle @
30441cd6
...
@@ -135,8 +135,12 @@ ScImportOptionsDlg::ScImportOptionsDlg(
...
@@ -135,8 +135,12 @@ ScImportOptionsDlg::ScImportOptionsDlg(
aBtnCancel
(
this
,
ScResId
(
BTN_CANCEL
)
),
aBtnCancel
(
this
,
ScResId
(
BTN_CANCEL
)
),
aBtnHelp
(
this
,
ScResId
(
BTN_HELP
)
)
aBtnHelp
(
this
,
ScResId
(
BTN_HELP
)
)
{
{
String
sFieldSep
(
ScResId
(
SCSTR_FIELDSEP
)
);
sFieldSep
.
SearchAndReplaceAscii
(
"%TAB"
,
String
(
ScResId
(
SCSTR_FIELDSEP_TAB
))
);
sFieldSep
.
SearchAndReplaceAscii
(
"%SPACE"
,
String
(
ScResId
(
SCSTR_FIELDSEP_SPACE
))
);
// im Ctor-Initializer nicht moeglich (MSC kann das nicht):
// im Ctor-Initializer nicht moeglich (MSC kann das nicht):
pFieldSepTab
=
new
ScDelimiterTable
(
String
(
ScResId
(
SCSTR_FIELDSEP
))
);
pFieldSepTab
=
new
ScDelimiterTable
(
sFieldSep
);
pTextSepTab
=
new
ScDelimiterTable
(
String
(
ScResId
(
SCSTR_TEXTSEP
))
);
pTextSepTab
=
new
ScDelimiterTable
(
String
(
ScResId
(
SCSTR_TEXTSEP
))
);
String
aStr
=
pFieldSepTab
->
FirstDel
();
String
aStr
=
pFieldSepTab
->
FirstDel
();
...
...
sc/source/ui/inc/scuiasciiopt.hxx
Dosyayı görüntüle @
30441cd6
...
@@ -82,7 +82,6 @@ class ScImportAsciiDlg : public ModalDialog
...
@@ -82,7 +82,6 @@ class ScImportAsciiDlg : public ModalDialog
String
aCharSetUser
;
String
aCharSetUser
;
String
aColumnUser
;
String
aColumnUser
;
String
aFldSepList
;
String
aTextSepList
;
String
aTextSepList
;
String
maFieldSeparators
;
// selected field separators
String
maFieldSeparators
;
// selected field separators
sal_Unicode
mcTextSep
;
sal_Unicode
mcTextSep
;
...
...
sc/source/ui/src/scstring.src
Dosyayı görüntüle @
30441cd6
...
@@ -482,7 +482,17 @@ String SCSTR_COLUMN_USER
...
@@ -482,7 +482,17 @@ String SCSTR_COLUMN_USER
String SCSTR_FIELDSEP
String SCSTR_FIELDSEP
{
{
Text [ en-US ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{space}\t32 " ;
Text = ",\t44\t;\t59\t:\t58\t{%TAB}\t9\t{%SPACE}\t32 " ;
};
String SCSTR_FIELDSEP_TAB
{
Text [ en-US ] = "Tab" ;
};
String SCSTR_FIELDSEP_SPACE
{
Text [ en-US ] = "space" ;
};
};
String SCSTR_TEXTSEP
String SCSTR_TEXTSEP
...
...
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