// SPDX-FileCopyrightText: 2019-2026 Connor McLaughlin <[email protected]>1// SPDX-License-Identifier: CC-BY-NC-ND-4.023#include "core/core.h"4#include "util/translation.h"56bool Core::GetBaseBoolSettingValue(const char* section, const char* key, bool default_value /* = false */)7{8return default_value;9}1011s32 Host::Internal::GetTranslatedStringImpl(std::string_view context, std::string_view msg,12std::string_view disambiguation, char* tbuf, size_t tbuf_space)13{14if (msg.size() > tbuf_space)15return -1;16else if (msg.empty())17return 0;1819std::memcpy(tbuf, msg.data(), msg.size());20return static_cast<s32>(msg.size());21}222324