Skip to content

Commit

Permalink
Work around vibe-d/vibe.d#1955. Fixes #14.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ludwig committed Oct 20, 2017
1 parent 7661648 commit 47bc915
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/userman/web.d
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,6 @@ class UserManWebInterface {

private struct TranslationContext {
import std.meta : AliasSeq;
alias languages = AliasSeq!();
alias languages = AliasSeq!("en_US", "de_DE");
//mixin translationModule!"userman";
}
2 changes: 1 addition & 1 deletion source/userman/webadmin.d
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ private struct AuthInfo {

private struct TranslationContext {
import std.meta : AliasSeq;
alias languages = AliasSeq!();
alias languages = AliasSeq!("en_US", "de_DE");
//mixin translationModule!"userman";
}

Expand Down

0 comments on commit 47bc915

Please sign in to comment.