Skip to content

Commit

Permalink
s/chessPlayers/players
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Feb 1, 2014
1 parent 3318419 commit 4c1c7cf
Show file tree
Hide file tree
Showing 74 changed files with 77 additions and 77 deletions.
2 changes: 1 addition & 1 deletion app/ui/SiteMenu.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ final class SiteMenu(trans: I18nKeys) {
val play = new Elem("play", routes.Lobby.home, trans.play)
val game = new Elem("game", routes.Game.realtime, trans.games)
val tournament = new Elem("tournament", routes.Tournament.home, trans.tournament)
val user = new Elem("user", routes.User.list(page = 1), trans.chessPlayers)
val user = new Elem("user", routes.User.list(page = 1), trans.players)
val team = new Elem("team", routes.Team.home(page = 1), trans.teams)
val forum = new Elem("forum", routes.ForumCateg.index, trans.forum)
val tv = new Elem("tv", routes.Tv.index, I18nKey.untranslated("TV"))
Expand Down
2 changes: 1 addition & 1 deletion app/views/game/search.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h1 class="title">@trans.advancedSearch()</h1>
<table>
<tr>
<th>
<label>@trans.chessPlayers()</label>
<label>@trans.players()</label>
</th>
<td class="usernames">
<div class="half">@base.input(form("players")("a"))</div>
Expand Down
4 changes: 2 additions & 2 deletions app/views/lobby/undertable.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<div class="leaderboard undertable half">
<div class="user_top">
<div class="undertable_top">
<a class="more" title="@trans.chessPlayers()" href="@routes.User.list()">@trans.more() »</a>
<a class="more" title="@trans.players()" href="@routes.User.list()">@trans.more() »</a>
<span class="title">@trans.todaysLeaders()</span>
</div>
<div class="undertable_inner">
Expand All @@ -36,7 +36,7 @@
<div class="leaderboard undertable half">
<div class="user_top">
<div class="undertable_top">
<a class="more" title="@trans.chessPlayers()" href="@routes.User.list()">@trans.more() »</a>
<a class="more" title="@trans.players()" href="@routes.User.list()">@trans.more() »</a>
<span class="title">@trans.progressToday()</span>
</div>
<div class="undertable_inner">
Expand Down
2 changes: 1 addition & 1 deletion app/views/tournament/form.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ <h1>@trans.createANewTournament()</h1>
<td>@base.select(form("minutes"), config.minuteChoices)</td>
</tr>
<tr>
<th><label for="@form("minPlayers").id">@trans.chessPlayers()</label></th>
<th><label for="@form("minPlayers").id">@trans.players()</label></th>
<td>@base.select(form("minPlayers"), config.minPlayerChoices)</td>
</tr>
<tr>
Expand Down
6 changes: 3 additions & 3 deletions app/views/tournament/homeInner.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1>@trans.tournaments()</h1>
<th class="large">@trans.openTournaments()</th>
<th>@trans.mode()</th>
<th>@trans.timeControl()</th>
<th colspan="2">@trans.chessPlayers()</th>
<th colspan="2">@trans.players()</th>
</tr>
</thead>
<tbody>
Expand Down Expand Up @@ -58,7 +58,7 @@ <h1>@trans.tournaments()</h1>
<th class="large">@trans.playingRightNow()</th>
<th>@trans.mode()</th>
<th>@trans.timeControl()</th>
<th>@trans.chessPlayers()</th>
<th>@trans.players()</th>
<th>Leader</th>
</tr>
</thead>
Expand Down Expand Up @@ -89,7 +89,7 @@ <h1>@trans.tournaments()</h1>
<th class="large">@trans.finished()</th>
<th>@trans.mode()</th>
<th>@trans.timeControl()</th>
<th>@trans.chessPlayers()</th>
<th>@trans.players()</th>
<th>@trans.winner()</th>
</tr>
</thead>
Expand Down
2 changes: 1 addition & 1 deletion app/views/tournament/table.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<th class="large">@name</th>
<th>@trans.timeControl()</th>
<th>@trans.duration()</th>
<th colspan="2">@trans.chessPlayers()</th>
<th colspan="2">@trans.players()</th>
</tr>
</thead>
<tbody class="@cssClass">
Expand Down
2 changes: 1 addition & 1 deletion app/views/user/list.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h2>@trans.onlinePlayers()</h2>
</div>
}

@user.layout(trans.chessPlayers.str(), goodies = goodies.some) {
@user.layout(trans.players.str(), goodies = goodies.some) {
<div class="content_box">
<div class="user_lists clearfix">
@user.topLeader(progressDay, trans.progressToday())
Expand Down
2 changes: 1 addition & 1 deletion app/views/user/online.scala.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@(users: List[User])(implicit ctx: Context)

@user.layout(trans.chessPlayers.str()) {
@user.layout(trans.players.str()) {
<div class="content_box">
<h1>@trans.onlinePlayers() (@users.size)</h1>
<br />
Expand Down
2 changes: 1 addition & 1 deletion conf/messages
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ signUp=Register
games=Games
forum=Forum
xPostedInForumY=%s posted in topic %s
chessPlayers=Players
players=Players
minutesPerSide=Minutes per side
variant=Variant
timeControl=Time control
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.af
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Registreer
games=Spelle
forum=Forum
xPostedInForumY=%S het 'n boodskak gepos in forum %s
chessPlayers=Skaak spelers
players=Skaak spelers
minutesPerSide=Minute per kant
variant=Wissel
timeControl=Teen tyd
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.ar
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=تسجيل
games=ألعاب
forum=المنتدى
xPostedInForumY=%s منشور في المندى %s
chessPlayers=لاعبي الشطرنج
players=لاعبي الشطرنج
minutesPerSide=دقائق لكل طرف
variant=النوع
timeControl=التحكم بالوقت
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.az
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ youNeedAnAccountToDoThat=Bunun üçün siz qeydiyyatdan keçməlisiniz
signUp=Üzv ol
games=Oyunlar
forum=Forum
chessPlayers=Şahmatçılar
players=Şahmatçılar
minutesPerSide=Hər şahmatçının oyun müddəti
variant=Variant
timeControl=Vaxta nəzarət
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.be
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Зарэгістравацца
games=Гульні
forum=Форум
xPostedInForumY=%s апублікавана на форуме %s
chessPlayers=Гульцы
players=Гульцы
minutesPerSide=Хвілінаў на партыю
variant=Варыянт
timeControl=Абмежаваньне часу
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.bg
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Регистрирай се
games=Игри
forum=Форум
xPostedInForumY=%s публикува във форум %s
chessPlayers=Играчи
players=Играчи
minutesPerSide=Минути за страна
variant=Вариант
timeControl=Контрол на времето
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.bn
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=সাইন আপ
games=সকল খেলা
forum=ফোরাম
xPostedInForumY=%s ছেপেছেন %s ফোরামে
chessPlayers=খেলোয়াড়
players=খেলোয়াড়
minutesPerSide=প্রতিটি পক্ষের জন্য বরাদ্দ মিনিট
variant=বিকল্প
timeControl=সময় নিয়ন্ত্রণ
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.bs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Registrovati se
games=Igre
forum=Forum
xPostedInForumY=%s objavio u forumu %s
chessPlayers=Igrači
players=Igrači
minutesPerSide=Minuta po igraču
variant=Varijanta
timeControl=Vremenska kontrola
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.ca
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Registra't
games=Partides
forum=Fòrum
xPostedInForumY=%s ha penjat al fòrum %s
chessPlayers=Jugadors d'escacs
players=Jugadors d'escacs
minutesPerSide=Minuts per jugador
variant=Variant
timeControl=Control de temps
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
games=Partie
forum=Fórum
xPostedInForumY=%s napsal do fóra %s
chessPlayers=Hráči
players=Hráči
minutesPerSide=Minut pro každého hráče
variant=Varianta
timeControl=Tempo hry
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.cy
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ signIn=Lofnodi mewn
signUp=Lofnodi lan
games=Gêmau
forum=Fforwm
chessPlayers=Chwaraewr chess
players=Chwaraewr chess
minutesPerSide=Munudau pob ochr
variant=Amrywiad
timeControl=Reolaith Amser
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.da
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Registrer
games=Partier
forum=Forum
xPostedInForumY=%s skrev i forum %s
chessPlayers=Skakspillere
players=Skakspillere
minutesPerSide=Minutter per side
variant=Variant
timeControl=Tidskontrol
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.de
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Registrieren
games=Partien
forum=Forum
xPostedInForumY=%s postete im Forum %s
chessPlayers=Schachspieler
players=Schachspieler
minutesPerSide=Minuten je Seite
variant=Variante
timeControl=Zeitkontrolle
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.el
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Εγγραφή
games=Παιχνίδια
forum=Φόρουμ
xPostedInForumY=Ο %s έγραψε στη συζήτηση %s
chessPlayers=Σκακιστές
players=Σκακιστές
minutesPerSide=Λεπτά ανά πλευρά
variant=Εκδοχή
timeControl=Χρονόμετρο
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.eo
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Aliĝi
games=Ludoj
forum=Forumo
xPostedInForumY=%s skribis en forumon %s
chessPlayers=Ŝakludantoj
players=Ŝakludantoj
minutesPerSide=Minutoj por ĉiu flanko
variant=Variaĵo
timeControl=Temporegado
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.es
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Regístrate
games=Partidas
forum=Foro
xPostedInForumY=%s ha escrito en el foro %s
chessPlayers=Jugadores
players=Jugadores
minutesPerSide=Minutos por jugador
variant=Variante
timeControl=Tiempo
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.et
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Registreeri
games=Mängud
forum=Foorum
xPostedInForumY=%s postitas foorumisse %s
chessPlayers=Maletajad
players=Maletajad
minutesPerSide=Minutit poole kohta
variant=Valik
timeControl=Aja kontroll
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.eu
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ gamesBeingPlayedRightNow=Momentuak jokatzen dauden jokoak
signUp=Sartu
games=Jokoak
forum=Foroa
chessPlayers=Jokalariak
players=Jokalariak
minutesPerSide=Minutuak alde bakoitzeko
time=Denbora
username=Ezizena
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.fa
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=ثبت نام
games=بازی ها
forum=انجمن
xPostedInForumY=%s پست شده در فروم %s
chessPlayers=بازیکنان شطرنج
players=بازیکنان شطرنج
minutesPerSide=دقیقه در هر طرف
variant=گوناگونی
timeControl=کنترل زمان
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.fi
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Rekisteröidy
games=Pelit
forum=Keskustelualue
xPostedInForumY=%s lähetti viestin alueelle %s
chessPlayers=Pelaajat
players=Pelaajat
minutesPerSide=Minuuttia per puoli
variant=Variantti
timeControl=Ajan hallinta
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.fp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ signIn=Se conectar
signUp=S'inscrire
games=Passes
forum=Pllacèta
chessPlayers=Joyor d'echec
players=Joyor d'echec
minutesPerSide=Minites per làt
variant=Variacion
timeControl=Controlo d’o tèmps
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.fr
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Inscription
games=Parties
forum=Forum
xPostedInForumY=%s a posté dans le forum %s
chessPlayers=Joueurs
players=Joueurs
minutesPerSide=Minutes par joueur
variant=Variante
timeControl=Contrôle du temps
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.gd
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ signUp=Clàraich
games=Geamannan
forum=Bòrd-brath
xPostedInForumY=Sgrìobh %s san fhòram %s
chessPlayers=Geamaichean tàileisg
players=Geamaichean tàileisg
minutesPerSide=Mionaidean an taobh
variant=Caochladh
timeControl=Smachdadh-ùine
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.gl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Inscribirse
games=Partidas
forum=Foro
xPostedInForumY=%s escrito no foro %s
chessPlayers=Xogadores de xadrez
players=Xogadores de xadrez
minutesPerSide=Minutos por bando
variant=Variante
timeControl=Control de tempo
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.he
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=הירשם
games=משחקים
forum=פורום
xPostedInForumY=%s כתב בפורום %s
chessPlayers=שחקני שחמט
players=שחקני שחמט
minutesPerSide=דקות עבור כל צד
variant=משתנה
timeControl=פיקוח זמנים
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.hi
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=साइन अप करें
games=खेल
forum=जनसभा
xPostedInForumY=%s ने %s जनसभा में ब्यौरा दिया
chessPlayers=शतरंज खिलाड़ी
players=शतरंज खिलाड़ी
minutesPerSide=मिनट प्रति खिलाड़ी
variant=रूपान्तर
timeControl=समय नियंत्रण
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.hr
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Registriraj se
games=Igre
forum=Forum
xPostedInForumY=%s objavljeno na forumu %s
chessPlayers=Igrači šaha
players=Igrači šaha
minutesPerSide=Minuta po igraču
variant=Varijanta
timeControl=Vremenska kontrola
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.hu
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Regisztráció
games=Játszmák
forum=Fórum
xPostedInForumY=%s írt üzenetet a fórumban %s
chessPlayers=Játékosok
players=Játékosok
minutesPerSide=Perc játékosonként
variant=Változat
timeControl=Játék időre
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.hy
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Գրանցվել
games=Խաղերը
forum=Ֆորում
xPostedInForumY=%s գրառել է %s ֆորումում
chessPlayers=Խաղացողները
players=Խաղացողները
minutesPerSide=Րոպեներ ամեն կողմի համար
variant=Տեսակ
timeControl=Ժամանակի վերահսկողություն
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.id
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Daftar baru
games=Permainan
forum=Forum
xPostedInForumY=%s postingan di forum %s
chessPlayers=Pemain catur
players=Pemain catur
minutesPerSide=Menit untuk tiap sisi
variant=Variasi
timeControl=Kontrol waktu
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.io
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ signIn=Ensalutar
signUp=Enrejistrar
games=Ludi
forum=Forumo
chessPlayers=Shakoluderi
players=Shakoluderi
minutesPerSide=Minuti per partiso
variant=Varianto
timeControl=Tempodirekto
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.is
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Sækja um
games=Leikir
forum=Umræðukorkur
xPostedInForumY=%s póstað í spjalli %s
chessPlayers=Skákmenn
players=Skákmenn
minutesPerSide=Mínútur á lið
variant=Afbrigði
timeControl=Tímaskorður
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.it
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signUp=Registrati
games=Partite
forum=Forum
xPostedInForumY=%s ha postato nel forum %s
chessPlayers=Giocatori
players=Giocatori
minutesPerSide=Minuti per lato
variant=Variante
timeControl=Controllo del tempo
Expand Down
Loading

0 comments on commit 4c1c7cf

Please sign in to comment.