fixed translation (#1228)
This commit is contained in:
parent
9e5da8d4e2
commit
28d174840a
|
|
@ -341,27 +341,27 @@ void MemoryMapView::refreshMap()
|
|||
|
||||
// Content
|
||||
if(wS.contains(".bss"))
|
||||
wS = QString("Uninitialized data");
|
||||
wS = tr("Uninitialized data");
|
||||
else if(wS.contains(".data"))
|
||||
wS = QString("Initialized data");
|
||||
wS = tr("Initialized data");
|
||||
else if(wS.contains(".edata"))
|
||||
wS = QString("Export tables");
|
||||
wS = tr("Export tables");
|
||||
else if(wS.contains(".idata"))
|
||||
wS = QString("Import tables");
|
||||
wS = tr("Import tables");
|
||||
else if(wS.contains(".pdata"))
|
||||
wS = QString("Exception information");
|
||||
wS = tr("Exception information");
|
||||
else if(wS.contains(".rdata"))
|
||||
wS = QString("Read-only initialized data");
|
||||
wS = tr("Read-only initialized data");
|
||||
else if(wS.contains(".reloc"))
|
||||
wS = QString("Base relocations");
|
||||
wS = tr("Base relocations");
|
||||
else if(wS.contains(".rsrc"))
|
||||
wS = QString("Resources");
|
||||
wS = tr("Resources");
|
||||
else if(wS.contains(".text"))
|
||||
wS = QString("Executable code");
|
||||
wS = tr("Executable code");
|
||||
else if(wS.contains(".tls"))
|
||||
wS = QString("Thread-local storage");
|
||||
wS = tr("Thread-local storage");
|
||||
else if(wS.contains(".xdata"))
|
||||
wS = QString("Exception information");
|
||||
wS = tr("Exception information");
|
||||
else
|
||||
wS = QString("");
|
||||
setCellContent(wI, 3, wS);
|
||||
|
|
|
|||
|
|
@ -210,7 +210,8 @@ SOURCES += \
|
|||
dbg/commands/cmd-variables.cpp \
|
||||
dbg/commands/cmd-watch-control.cpp \
|
||||
gui/Src/Gui/CustomizeMenuDialog.cpp \
|
||||
gui/Src/Utils/MenuBuilder.cpp
|
||||
gui/Src/Utils/MenuBuilder.cpp \
|
||||
gui/Src/Gui/SimpleTraceDialog.cpp
|
||||
|
||||
HEADERS += \
|
||||
gui/Src/Exports.h \
|
||||
|
|
@ -432,7 +433,8 @@ HEADERS += \
|
|||
dbg/commands/cmd-user-database.h \
|
||||
dbg/commands/cmd-variables.h \
|
||||
dbg/commands/cmd-watch-control.h \
|
||||
gui/Src/Gui/CustomizeMenuDialog.h
|
||||
gui/Src/Gui/CustomizeMenuDialog.h \
|
||||
gui/Src/Gui/SimpleTraceDialog.h
|
||||
|
||||
FORMS += \
|
||||
gui/Src/Gui/AppearanceDialog.ui \
|
||||
|
|
@ -468,7 +470,8 @@ FORMS += \
|
|||
gui/Src/Gui/WordEditDialog.ui \
|
||||
gui/Src/Gui/XrefBrowseDialog.ui \
|
||||
gui/Src/Gui/YaraRuleSelectionDialog.ui \
|
||||
gui/Src/Gui/CustomizeMenuDialog.ui
|
||||
gui/Src/Gui/CustomizeMenuDialog.ui \
|
||||
gui/Src/Gui/SimpleTraceDialog.ui
|
||||
|
||||
TRANSLATIONS += \
|
||||
gui/Translations/x64dbg.ts
|
||||
Loading…
Reference in New Issue