forked from darwin-morocho/OneCalendarView
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ref darwin-morocho#3. Made support of RUS language. Made ENG language…
… is default.
- Loading branch information
1 parent
408d983
commit d076eb9
Showing
2 changed files
with
61 additions
and
32 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<declare-styleable name="OneCalendarView"> | ||
<attr name="mainBackgroundColor" format="color" /> | ||
<attr name="calendarBackgroundColor" format="color" /> | ||
<attr name="currentDayBackgroundColor" format="color" /> | ||
<attr name="backgroundColorDaysOfMonth" format="color" /> | ||
<attr name="backgroundColorDaysOfAnotherMonth" format="color" /> | ||
<attr name="textColorDaysOfMonth" format="color" /> | ||
<attr name="textColorDaysOfAnotherMonth" format="color" /> | ||
<attr name="textColorMonthAndYear" format="color" /> | ||
<attr name="textColorSelectedDay" format="color" /> | ||
<attr name="backgroundColorSelectedDay" format="color" /> | ||
<attr name="calendarLanguage" format="enum"> | ||
<enum name="ES" value="0" /> | ||
<enum name="EN" value="1" /> | ||
</attr> | ||
|
||
|
||
</declare-styleable> | ||
<declare-styleable name="OneCalendarView"> | ||
<attr name="mainBackgroundColor" format="color"/> | ||
<attr name="calendarBackgroundColor" format="color"/> | ||
<attr name="currentDayBackgroundColor" format="color"/> | ||
<attr name="backgroundColorDaysOfMonth" format="color"/> | ||
<attr name="backgroundColorDaysOfAnotherMonth" format="color"/> | ||
<attr name="textColorDaysOfMonth" format="color"/> | ||
<attr name="textColorDaysOfAnotherMonth" format="color"/> | ||
<attr name="textColorMonthAndYear" format="color"/> | ||
<attr name="textColorSelectedDay" format="color"/> | ||
<attr name="backgroundColorSelectedDay" format="color"/> | ||
<attr name="calendarLanguage" format="enum"> | ||
<enum name="EN" value="0"/> | ||
<enum name="ES" value="1"/> | ||
<enum name="RU" value="2"/> | ||
</attr> | ||
</declare-styleable> | ||
</resources> |