[Notice] Announcing the End of Demo Server [Read me]

initial commit
@1293a4670dbdd1ed9750b9d42703b6b69eb217c9
--- app/views/alert.scala.html
+++ app/views/alert.scala.html
... | ... | @@ -1,20 +1,20 @@ |
1 | 1 |
@if(flash.containsKey("warning")) { |
2 | 2 |
<div class="alert"> |
3 | 3 |
<a class="close" data-dismiss="alert">×</a> |
4 |
- <strong>Warning!</strong> @flash.get("warning") |
|
4 |
+ <strong>@Messages("message.warning")</strong> @Messages(flash.get("warning")) |
|
5 | 5 |
</div> |
6 | 6 |
} |
7 | 7 |
|
8 | 8 |
@if(flash.containsKey("success")) { |
9 | 9 |
<div class="alert alert-success"> |
10 | 10 |
<a class="close" data-dismiss="alert">×</a> |
11 |
- <strong>Well done!</strong> @flash.get("success") |
|
11 |
+ <strong>@Messages("message.success")</strong> @Messages(flash.get("success")) |
|
12 | 12 |
</div> |
13 | 13 |
} |
14 | 14 |
|
15 | 15 |
@if(flash.containsKey("info")) { |
16 | 16 |
<div class="alert alert-info"> |
17 | 17 |
<a class="close" data-dismiss="alert">×</a> |
18 |
- <strong>Info!</strong> @flash.get("info") |
|
18 |
+ <strong>@Messages("message.info")</strong> @Messages(flash.get("info")) |
|
19 | 19 |
</div> |
20 | 20 |
}(파일 끝에 줄바꿈 문자 없음) |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?