Merge pull request #352
1d1a77b
slight modification to wordlist contributor tagline (as these contributors haven't used git to submit a PR, so we're creating the wordlist on their behalf (Riccardo Spagni)ef7671a
added Russian wordlist (Riccardo Spagni)
This commit is contained in:
commit
40e703c87c
|
@ -40,6 +40,7 @@ set(mnemonics_private_headers
|
|||
language_base.h
|
||||
old_english.h
|
||||
portuguese.h
|
||||
russian.h
|
||||
singleton.h
|
||||
spanish.h)
|
||||
|
||||
|
|
|
@ -57,6 +57,7 @@
|
|||
#include "spanish.h"
|
||||
#include "portuguese.h"
|
||||
#include "japanese.h"
|
||||
#include "russian.h"
|
||||
#include "old_english.h"
|
||||
#include "language_base.h"
|
||||
#include "singleton.h"
|
||||
|
@ -84,6 +85,7 @@ namespace
|
|||
Language::Singleton<Language::Italian>::instance(),
|
||||
Language::Singleton<Language::Portuguese>::instance(),
|
||||
Language::Singleton<Language::Japanese>::instance(),
|
||||
Language::Singleton<Language::Russian>::instance(),
|
||||
Language::Singleton<Language::OldEnglish>::instance()
|
||||
});
|
||||
|
||||
|
@ -305,6 +307,10 @@ namespace crypto
|
|||
{
|
||||
language = Language::Singleton<Language::German>::instance();
|
||||
}
|
||||
else if (language_name == "Russian")
|
||||
{
|
||||
language = Language::Singleton<Language::Russian>::instance();
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
|
@ -355,6 +361,7 @@ namespace crypto
|
|||
Language::Singleton<Language::German>::instance(),
|
||||
Language::Singleton<Language::Italian>::instance(),
|
||||
Language::Singleton<Language::Portuguese>::instance(),
|
||||
Language::Singleton<Language::Russian>::instance(),
|
||||
Language::Singleton<Language::Japanese>::instance()
|
||||
});
|
||||
for (std::vector<Language::Base*>::iterator it = language_instances.begin();
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// Word list originally created by Shrikez
|
||||
// Word list created by Monero contributor Shrikez
|
||||
//
|
||||
// Copyright (c) 2014-2015, The Monero Project
|
||||
//
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// Word list originally created by Shrikez
|
||||
// Word list created by Monero contributor Shrikez
|
||||
//
|
||||
// Copyright (c) 2014-2015, The Monero Project
|
||||
//
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue