mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 01:40:00 +00:00
Set header text according to the language.
This commit is contained in:
parent
fd36c7676b
commit
b8ff30885a
1 changed files with 41 additions and 2 deletions
|
@ -31,6 +31,27 @@
|
||||||
#include "nel/misc/diff_tool.h"
|
#include "nel/misc/diff_tool.h"
|
||||||
#include "nel/misc/i18n.h"
|
#include "nel/misc/i18n.h"
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
|
||||||
|
QString getLang( const QString &fn )
|
||||||
|
{
|
||||||
|
QString lang = fn;
|
||||||
|
int idx = lang.lastIndexOf( '/' );
|
||||||
|
if( idx == -1 )
|
||||||
|
return "";
|
||||||
|
|
||||||
|
lang = lang.mid( idx + 1 );
|
||||||
|
idx = lang.lastIndexOf( '.' );
|
||||||
|
if( idx == -1 )
|
||||||
|
return "";
|
||||||
|
|
||||||
|
lang = lang.left( idx );
|
||||||
|
return lang;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
namespace TranslationManager
|
namespace TranslationManager
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -68,12 +89,30 @@ UXTEditor::~UXTEditor()
|
||||||
void UXTEditor::open( QString filename )
|
void UXTEditor::open( QString filename )
|
||||||
{
|
{
|
||||||
std::vector< STRING_MANAGER::TStringInfo > &infos = d_ptr->infos;
|
std::vector< STRING_MANAGER::TStringInfo > &infos = d_ptr->infos;
|
||||||
|
QString lang = getLang( filename );
|
||||||
|
|
||||||
infos.clear();
|
infos.clear();
|
||||||
STRING_MANAGER::loadStringFile( filename.toUtf8().constData(), infos, true );
|
STRING_MANAGER::loadStringFile( filename.toUtf8().constData(), infos, true );
|
||||||
|
|
||||||
if( d_ptr->infos.size() == 0 )
|
if( d_ptr->infos.size() == 0 )
|
||||||
|
{
|
||||||
|
// The work file cannot be found, cannot proceed
|
||||||
|
if( filename.endsWith( "wk.uxt" ) )
|
||||||
|
{
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
int l = filename.lastIndexOf( "/" );
|
||||||
|
if( l == -1 )
|
||||||
|
return;
|
||||||
|
filename = filename.left( l );
|
||||||
|
filename += "/wk.uxt";
|
||||||
|
|
||||||
|
// The work file cannot be found, cannot proceed
|
||||||
|
STRING_MANAGER::loadStringFile( filename.toUtf8().constData(), infos, true );
|
||||||
|
if( d_ptr->infos.size() == 0 )
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
blockTableSignals( true );
|
blockTableSignals( true );
|
||||||
|
|
||||||
|
@ -81,7 +120,7 @@ void UXTEditor::open( QString filename )
|
||||||
d_ptr->t->setColumnCount( 2 );
|
d_ptr->t->setColumnCount( 2 );
|
||||||
d_ptr->t->setRowCount( infos.size() );
|
d_ptr->t->setRowCount( infos.size() );
|
||||||
|
|
||||||
setHeaderText( "Id", "Text" );
|
setHeaderText( "Id", lang.toUpper() + " Text" );
|
||||||
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue