diff options
author | Nano Akron <nanoakron@users.noreply.github.com> | 2017-04-24 20:27:12 +0100 |
---|---|---|
committer | Nano Akron <nanoakron@users.noreply.github.com> | 2017-04-24 20:27:12 +0100 |
commit | 12fff108ea0d538478ccdba3e4e8052a32f15054 (patch) | |
tree | 820c9fbf1c28bcd5138c8759e4627769e5aac8c3 /src/mnemonics/english_old.h | |
parent | Change all wallet language names into native names (and scripts) (diff) | |
download | monero-12fff108ea0d538478ccdba3e4e8052a32f15054.tar.xz |
Change Old_English to English_Old - 'Old English' is actually a language
Diffstat (limited to '')
-rw-r--r-- | src/mnemonics/english_old.h (renamed from src/mnemonics/old_english.h) | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mnemonics/old_english.h b/src/mnemonics/english_old.h index 21ac95de3..9fa5e81e1 100644 --- a/src/mnemonics/old_english.h +++ b/src/mnemonics/english_old.h @@ -29,13 +29,13 @@ // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/*!
- * \file old_english.h
+ * \file english_old.h
*
- * \brief Old English word list and map.
+ * \brief Older version of English word list and map.
*/
-#ifndef OLD_ENGLISH_H
-#define OLD_ENGLISH_H
+#ifndef ENGLISH_OLD_H
+#define ENGLISH_OLD_H
#include <vector>
#include <unordered_map>
@@ -48,10 +48,10 @@ */
namespace Language
{
- class OldEnglish: public Base
+ class EnglishOld: public Base
{
public:
- OldEnglish(): Base("OldEnglish", std::vector<std::string>({
+ EnglishOld(): Base("EnglishOld", std::vector<std::string>({
"like",
"just",
"love",
|