This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
using System.Threading.Tasks; | |
using Microsoft.CodeAnalysis.Scripting; | |
using Microsoft.CodeAnalysis.Scripting.CSharp; | |
namespace RoslynScriptingTest | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Core Language File | |
*/ | |
// Titles | |
$lang['core title welcome'] = "Willkommen zu %s"; | |
// Buttons | |
$lang['core button admin'] = "Admin"; | |
$lang['core button cancel'] = "Abbrechen"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Runtime.InteropServices; | |
using System.Windows.Forms; | |
using System.Windows.Input; | |
using KeyEventArgs = System.Windows.Forms.KeyEventArgs; | |
using KeyEventHandler = System.Windows.Forms.KeyEventHandler; | |
/* | |
This file is part of VOTC. |