Replace the project-owned 2026 copyright owner in src headers from Switchroot to NiklasCFW while leaving vendored third-party notices unchanged.
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
/*
|
|
SWR INI Tool - Switchroot INI Configuration Editor
|
|
Copyright (C) 2026 NiklasCFW
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace I18n
|
|
{
|
|
|
|
void init();
|
|
|
|
bool isGerman();
|
|
|
|
const char* appTitle();
|
|
|
|
const char* tabSettings();
|
|
const char* tabAbout();
|
|
|
|
const char* wordOn();
|
|
const char* wordOff();
|
|
|
|
std::string sectionEditLine(const std::string& section, const std::string& path);
|
|
|
|
const char* headerToggleOptions();
|
|
const char* headerFrequencySettings();
|
|
const char* headerVoltageSettings();
|
|
const char* headerOther();
|
|
const char* headerIniFilePaths();
|
|
const char* headerLinksAndResources();
|
|
|
|
const char* errorListItemTitleIni();
|
|
std::string iniLoadErrorBody(const std::string& path);
|
|
std::string iniSectionErrorBody(const std::string& path, const std::string& osName);
|
|
|
|
const char* notifyConfigSaved();
|
|
const char* notifyConfigSaveError();
|
|
const char* notifyPathUpdated();
|
|
|
|
const char* settingsIntro();
|
|
|
|
const char* pathListDescriptionLakka();
|
|
|
|
const char* fileBrowserTitlePrefix();
|
|
std::string fileBrowserNoIni(const std::string& dir);
|
|
|
|
const char* aboutSubtitle();
|
|
const char* aboutCopyright();
|
|
const char* aboutLinks();
|
|
|
|
const char* ocBoolLabel(const std::string& key);
|
|
const char* ocFreqLabel(const std::string& key);
|
|
const char* ocVoltageLabel(const std::string& key);
|
|
|
|
} // namespace I18n
|