This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files

35 lines
603 B
C#
Raw Permalink Normal View History

2019-05-23 22:15:57 +01:00
namespace Claunia.Localization.Core
{
/// <summary>Enumerates programming languages for parameters</summary>
public enum Language
{
2019-05-24 00:27:00 +01:00
None,
2019-05-23 22:15:57 +01:00
C,
ObjectiveC,
CSharp,
Shell,
Python,
Lisp,
EmacsLisp,
PythonBraced,
Librep,
Scheme,
Smalltalk,
Java,
Awk,
ObjectPascal,
Ycp,
Tcl,
Perl,
2019-05-24 00:27:00 +01:00
PerlBraced,
2019-05-23 22:15:57 +01:00
Php,
GccInternal,
GfcInternal,
Qt,
QtPlural,
Kde,
Boost,
2019-05-24 00:27:00 +01:00
JavaScript,
Lua
2019-05-23 22:15:57 +01:00
}
}