Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions inflection/src/inflection/dialog/DisplayValue.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ INFLECTION_CBEGIN
typedef struct IDDisplayValue_Constraint {
/**
* The semantic feature name. This should be a valid name from
* {@link LanguageGrammarFeatures_GrammarCategory} or
* {@link LanguageGrammarFeatures_GrammarFeatures}. In all
* {@link inflection::lang::features::LanguageGrammarFeatures_GrammarCategory} or
* {@link inflection::lang::features::LanguageGrammarFeatures_GrammarFeatures}. In all
* languages, there is also a special key for the speak part
* of a SpeakableString named "speak". When that is provided,
* the associated value will be returned as a part of the
Expand All @@ -24,8 +24,8 @@ typedef struct IDDisplayValue_Constraint {
const char16_t* name;
/**
* The semantic feature name. This should be a valid value from
* {@link LanguageGrammarFeatures_GrammarCategory} or
* {@link LanguageGrammarFeatures_GrammarFeatures}. Some constraints
* {@link inflection::lang::features::LanguageGrammarFeatures_GrammarCategory} or
* {@link inflection::lang::features::LanguageGrammarFeatures_GrammarFeatures}. Some constraints
* are bounded, and some are unbounded. Typically, grammar
* categories are bounded. The grammar features may or may not be
* bounded. This string must be null-terminated.
Expand Down
15 changes: 15 additions & 0 deletions inflection/src/inflection/util/LocaleUtils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -480,10 +480,25 @@ class INFLECTION_CLASS_API inflection::util::LocaleUtils final
* uk_UA: Ukrainian (Ukraine)
*/
static const ::inflection::util::ULocale& UKRAINE();
/**
* vi: Vietnamese
*/
static const ::inflection::util::ULocale& VIETNAMESE();
/**
* vi_VN: Vietnamese (Vietnam)
*/
static const ::inflection::util::ULocale& VIETNAM();
/**
* wuu: Shanghainese
*/
static const ::inflection::util::ULocale& SHANGHAINESE();
/**
* wuu_CN: Shanghainese (China)
*/
static const ::inflection::util::ULocale& CHINA_SHANGHAINESE();
/**
* yue: Cantonese
*/
static const ::inflection::util::ULocale& CANTONESE();
/**
* yue_CN: Cantonese (China)
Expand Down
15 changes: 15 additions & 0 deletions inflection/src/inflection/util/LoggerConfig.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,25 @@
class INFLECTION_CLASS_API inflection::util::LoggerConfig final
{
public:
/**
* Is trace logging currently enabled?
*/
static bool isTraceEnabled();
/**
* Is debug logging currently enabled?
*/
static bool isDebugEnabled();
/**
* Is info logging currently enabled?
*/
static bool isInfoEnabled();
/**
* Is warn logging currently enabled?
*/
static bool isWarnEnabled();
/**
* Is error logging currently enabled?
*/
static bool isErrorEnabled();

/**
Expand Down
Loading