diff --git a/cockatrice/src/playerlistwidget.cpp b/cockatrice/src/playerlistwidget.cpp index 03c79867..70a3b746 100644 --- a/cockatrice/src/playerlistwidget.cpp +++ b/cockatrice/src/playerlistwidget.cpp @@ -72,6 +72,7 @@ void PlayerListWidget::updatePlayerProperties(ServerInfo_PlayerProperties *prop) player->setIcon(1, prop->getSpectator() ? spectatorIcon : playerIcon); player->setIcon(2, gameStarted ? (prop->getConceded() ? concededIcon : QIcon()) : (prop->getReadyStart() ? readyIcon : notReadyIcon)); + player->setData(3, Qt::UserRole, prop->getUserInfo()->getUserLevel()); player->setIcon(3, QIcon(UserLevelPixmapGenerator::generatePixmap(12, prop->getUserInfo()->getUserLevel()))); player->setText(4, prop->getUserInfo()->getName()); if (!prop->getUserInfo()->getCountry().isEmpty()) @@ -131,6 +132,7 @@ void PlayerListWidget::showContextMenu(const QPoint &pos, const QModelIndex &ind { const QString &userName = index.sibling(index.row(), 4).data(Qt::UserRole).toString(); int playerId = index.sibling(index.row(), 4).data(Qt::UserRole + 1).toInt(); + ServerInfo_User::UserLevelFlags userLevel = static_cast(index.sibling(index.row(), 3).data(Qt::UserRole).toInt()); QAction *aUserName = new QAction(userName, this); aUserName->setEnabled(false); @@ -147,15 +149,17 @@ void PlayerListWidget::showContextMenu(const QPoint &pos, const QModelIndex &ind menu->addSeparator(); menu->addAction(aDetails); menu->addAction(aChat); - menu->addSeparator(); - if (tabSupervisor->getUserListsTab()->getBuddyList()->userInList(userName)) - menu->addAction(aRemoveFromBuddyList); - else - menu->addAction(aAddToBuddyList); - if (tabSupervisor->getUserListsTab()->getIgnoreList()->userInList(userName)) - menu->addAction(aRemoveFromIgnoreList); - else - menu->addAction(aAddToIgnoreList); + if (userLevel & ServerInfo_User::IsRegistered) { + menu->addSeparator(); + if (tabSupervisor->getUserListsTab()->getBuddyList()->userInList(userName)) + menu->addAction(aRemoveFromBuddyList); + else + menu->addAction(aAddToBuddyList); + if (tabSupervisor->getUserListsTab()->getIgnoreList()->userInList(userName)) + menu->addAction(aRemoveFromIgnoreList); + else + menu->addAction(aAddToIgnoreList); + } if (gameCreator) { menu->addSeparator(); menu->addAction(aKick); diff --git a/cockatrice/src/userlist.cpp b/cockatrice/src/userlist.cpp index c95c8f4a..e365ba0a 100644 --- a/cockatrice/src/userlist.cpp +++ b/cockatrice/src/userlist.cpp @@ -166,6 +166,7 @@ void UserList::userClicked(QTreeWidgetItem *item, int /*column*/) void UserList::showContextMenu(const QPoint &pos, const QModelIndex &index) { const QString &userName = index.sibling(index.row(), 2).data(Qt::UserRole).toString(); + ServerInfo_User::UserLevelFlags userLevel = static_cast(index.sibling(index.row(), 0).data(Qt::UserRole).toInt()); QAction *aUserName = new QAction(userName, this); aUserName->setEnabled(false); @@ -182,15 +183,17 @@ void UserList::showContextMenu(const QPoint &pos, const QModelIndex &index) menu->addSeparator(); menu->addAction(aDetails); menu->addAction(aChat); - menu->addSeparator(); - if (tabSupervisor->getUserListsTab()->getBuddyList()->userInList(userName)) - menu->addAction(aRemoveFromBuddyList); - else - menu->addAction(aAddToBuddyList); - if (tabSupervisor->getUserListsTab()->getIgnoreList()->userInList(userName)) - menu->addAction(aRemoveFromIgnoreList); - else - menu->addAction(aAddToIgnoreList); + if (userLevel & ServerInfo_User::IsRegistered) { + menu->addSeparator(); + if (tabSupervisor->getUserListsTab()->getBuddyList()->userInList(userName)) + menu->addAction(aRemoveFromBuddyList); + else + menu->addAction(aAddToBuddyList); + if (tabSupervisor->getUserListsTab()->getIgnoreList()->userInList(userName)) + menu->addAction(aRemoveFromIgnoreList); + else + menu->addAction(aAddToIgnoreList); + } if (!tabSupervisor->getAdminLocked()) { menu->addSeparator(); menu->addAction(aBan); diff --git a/cockatrice/translations/cockatrice_de.ts b/cockatrice/translations/cockatrice_de.ts index ffceada9..d5b55413 100644 --- a/cockatrice/translations/cockatrice_de.ts +++ b/cockatrice/translations/cockatrice_de.ts @@ -159,27 +159,27 @@ CardDatabaseModel - + Name Name - + Sets Editionen - + Mana cost Manakosten - + Card type Kartentyp - + P/T S/W @@ -187,22 +187,22 @@ CardInfoWidget - + Name: Name: - + Mana cost: Manakosten: - + Card type: Kartentyp: - + P / T: S/W: @@ -952,27 +952,42 @@ &Beschreibung: - + &Password: &Passwort: - + P&layers: &Spieler: - + Game type Spieltyp + Only &buddies can join + Nur &Freunde können teilnehmen + + + + Only &registered users can join + Nur &registrierte Benutzer können teilnehmen + + + + Joining restrictions + Teilnahmebedingungen + + + &Spectators allowed &Zuschauer zugelassen - + Spectators &need a password to join Zuschauer brauchen &auch ein Passwort @@ -981,37 +996,37 @@ Zuschauer können sp&rechen - + Spectators can &chat Zuschauer können s&chreiben - + Spectators see &everything Zuschauer sehen &alles - + Spectators Zuschauer - + &OK &OK - + &Cancel &Abbruch - + Create game Spiel erstellen - + Error Fehler @@ -1020,7 +1035,7 @@ Ungültige Anzahl an Spielern. - + Server error. Serverfehler. @@ -1518,20 +1533,23 @@ GameSelector - + C&reate Spiel e&rstellen - + &Join &Teilnehmen - + + + + Error Fehler @@ -1540,42 +1558,57 @@ XXX - + Wrong password. Falsches Passwort. - + Spectators are not allowed in this game. In diesem Spiel sind keine Zuschauer zugelassen. - + The game is already full. Das Spiel ist bereits voll. - + The game does not exist any more. Dieses Spiel gibt es nicht mehr. - + + This game is only open to registered users. + Dieses Spiel kann nur von registrierten Benutzern betreten werden. + + + + This game is only open to its creator's buddies. + Dieses Spiel kann nur von Freunden des Erstellers betreten werden. + + + + You are being ignored by the creator of this game. + Der Ersteller dieses Spiels ignoriert Sie. + + + Join game Spiel beitreten - + Password: Passwort: - + Games Spiele - + Show &full games &Volle Spiele anzeigen @@ -1584,7 +1617,7 @@ &Volle Spiele anzeigen - + J&oin as spectator &Zuschauen @@ -1614,12 +1647,12 @@ Spiel ID - + Creator Ersteller - + Description Beschreibung @@ -1629,27 +1662,42 @@ ja, außer für Zuschauer - + + buddies only + nur Freunde + + + + reg. users only + nur reg. Benutzer + + + not allowed nicht erlaubt - + Game type Spieltyp - + Password Passwort - + + Restrictions + Bedingungen + + + Players Spieler - + Spectators Zuschauer @@ -1708,104 +1756,139 @@ MainWindow - + + There are too many concurrent connections from your address. + Es gibt zu viele gleichzeitige Verbindungen von Ihrer Adresse. + + + + Banned by moderator. + Gebannt von einem Moderator. + + + + Unknown reason. + Unbekannter Grund. + + + + Connection closed + Verbindung geschlossen + + + + The server has terminated your connection. +Reason: %1 + Der Server hat Ihre Verbindung beendet. +Grund: %1 + + + Number of players Spieleranzahl - + Please enter the number of players. Bitte die Spieleranzahl eingeben: - - + + Player %1 Spieler %1 - + About Cockatrice Über Cockatrice - + Version %1 Version %1 - + Authors: Autoren: - + Translators: Übersetzer: - + Spanish: Spanisch: - + Portugese (Portugal): Portugiesisch (Portugal): - + Portugese (Brazil): Portugiesisch (Brasilien): - + French: Französisch: - + Japanese: Japanisch: - + Russian: Russisch: - - - - + + + + + Error Fehler - + Server timeout Server Zeitüberschreitung - + Invalid login data. Ungültige Anmeldedaten. - + + There is already an active session using this user name. +Please close that session first and re-login. + Es gibt bereits eine aktive Verbindung mit diesem Benutzernamen. +Bitte schließen Sie diese Verbindung zuerst und versuchen Sie es dann erneut. + + + Socket error: %1 Netzwerkfehler: %1 - + You are trying to connect to an obsolete server. Please downgrade your Cockatrice version or connect to a suitable server. Local version is %1, remote version is %2. Sie versuchen sich an einem veralteten Server anzumelden. Bitte verwenden Sie eine ältere Cockatrice-Version oder melden Sie sich an einem aktuellen Server an. Lokale Version ist %1, Serverversion ist %2. - + Your Cockatrice client is obsolete. Please update your Cockatrice version. Local version is %1, remote version is %2. Ihr Cockatrice-Client ist veraltet. Bitte laden Sie sich die neueste Version herunter. @@ -1816,52 +1899,52 @@ Lokale Version ist %1, Serverversion ist %2. Protokollversionen stimmen nicht überein. Lokale Version: %1, Serverversion: %2. - + Connecting to %1... Verbinde zu %1... - + Disconnected nicht verbunden - + Logged in at %1 Angemeldet bei %1 - + &Connect... &Verbinden... - + &Disconnect Verbindung &trennen - + Start &local game... &Lokales Spiel starten... - + &About Cockatrice &Über Cockatrice - + &Help &Hilfe - + Are you sure? Sind Sie sicher? - + There are still open games. Are you sure you want to quit? Es gibt noch offene Spiele. Wollen Sie das Programm wirklich beenden? @@ -1878,27 +1961,27 @@ Lokale Version ist %1, Serverversion ist %2. Spiel ver&lassen - + &Deck editor &Deck-Editor - + &Full screen &Vollbild - + Ctrl+F Ctrl+F - + &Settings... &Einstellungen... - + &Exit &Beenden @@ -1911,7 +1994,7 @@ Lokale Version ist %1, Serverversion ist %2. Esc - + &Cockatrice &Cockatrice @@ -3294,37 +3377,73 @@ Lokale Version ist %1, Serverversion ist %2. PlayerListWidget - Player name - Spielername + Spielername - Deck - Deck + Deck - --- - --- + --- - local - lokal + lokal - #%1 - #%1 + #%1 no deck kein Deck + local deck - lokales Deck + lokales Deck + + + + deck #%1 + Deck #%1 + + + + User &details + Benutzer&details + + + + Direct &chat + &Persönliches Gespräch + + + + Add to &buddy list + Zur &Freundesliste hinzufügen + + + + Remove from &buddy list + Von &Freundesliste entfernen + + + + Add to &ignore list + &Ignorieren + + + + Remove from &ignore list + Nicht mehr &ignorieren + + + + Kick from &game + Aus dem &Spiel werfen ID #%1 @@ -3392,32 +3511,32 @@ Lokale Version ist %1, Serverversion ist %2. RoomSelector - + Rooms Räume - + Joi&n Teil&nehmen - + Room Raum - + Description Beschreibung - + Players Spieler - + Games Spiele @@ -3475,7 +3594,7 @@ Lokale Version ist %1, Serverversion ist %2. Möchten Sie wirklich die Sperre der Wartungsfunktionen aufheben? - + Administration Wartung @@ -3570,95 +3689,105 @@ Bitte geben Sie einen Namen ein: TabGame - + F5 F5 - + F6 F6 - + F7 F7 - + F8 F8 - + F9 F9 - + F10 F10 - + &Phases &Phasen - + &Game Spi&el - + Next &phase Nächste &Phase - + Ctrl+Space Ctrl+Space - + Next &turn Nächster &Zug - + Ctrl+Return Ctrl+Return - + Ctrl+Enter Ctrl+Enter - + &Remove all local arrows &Lokale Pfeile entfernen - + Ctrl+R Ctrl+R - + &Concede - + F2 F2 - + &Leave game Spiel ver&lassen + + + Kicked + Herausgeworfen + + + + You have been kicked out of the game. + Sie wurden aus dem Spiel geworfen. + Load &local deck &Lokales Deck laden @@ -3676,7 +3805,7 @@ Bitte geben Sie einen Namen ein: Spiel s&tarten - + &Say: &Sagen: @@ -3689,22 +3818,22 @@ Bitte geben Sie einen Namen ein: Esc - + Concede Aufgeben - + Are you sure you want to concede this game? Sind Sie sicher, dass Sie das Spiel aufgeben möchten? - + Leave game Spiel verlassen - + Are you sure you want to leave this game? Sind Sie sicher, dass Sie das Spiel verlassen möchten? @@ -3713,7 +3842,7 @@ Bitte geben Sie einen Namen ein: Deck laden - + Game %1: %2 Spiel %1: %2 @@ -3731,17 +3860,22 @@ Bitte geben Sie einen Namen ein: Ver&lassen - + + This user is ignoring you. + Dieser Benutzer ignoriert Sie. + + + %1 has left the server. %1 hat den Server verlassen. - + %1 has joined the server. %1 hat den Server betreten. - + Talking to %1 Gespräch mit %1 @@ -3749,25 +3883,30 @@ Bitte geben Sie einen Namen ein: TabRoom - + &Say: &Sagen: - + Chat Unterhaltung - + &Room &Raum - + &Leave room Raum ver&lassen + + + You are flooding the chat. Please wait a couple of seconds. + Sie überfluten den Chatraum. Bitte warten Sie ein paar Sekunden. + %1 has joined the room. %1 hat den Raum betreten. @@ -3780,7 +3919,7 @@ Bitte geben Sie einen Namen ein: TabServer - + Server Server @@ -3800,6 +3939,14 @@ Bitte geben Sie einen Namen ein: Spiel %1 + + TabUserLists + + + User lists + Benutzerlisten + + UserInfoBox @@ -3869,25 +4016,72 @@ Bitte geben Sie einen Namen ein: UserList - + Users online: %1 Benutzer online: %1 - + Users in this room: %1 Benutzer in diesem Raum: %1 - + + Buddies online: %1 / %2 + Freunde online: %1 / %2 + + + + Ignored users online: %1 / %2 + Ignorierte Benutzer online: %1 / %2 + + + User &details Benutzer&details - + Direct &chat &Persönliches Gespräch + + + Add to &buddy list + Zur &Freundesliste hinzufügen + + + + Remove from &buddy list + Von &Freundesliste entfernen + + + + Add to &ignore list + &Ignorieren + + + + Remove from &ignore list + Nicht mehr &ignorieren + + + + Ban from &server + Vom &Server bannen + + + + Duration + Dauer + + + + Please enter the duration of the ban (in minutes). +Enter 0 for an indefinite ban. + Bitte geben Sie die Dauer des Banns ein (in Minuten). +Geben Sie 0 ein für einen unbefristeten Bann. + WndDeckEditor diff --git a/cockatrice/translations/cockatrice_en.ts b/cockatrice/translations/cockatrice_en.ts index cb527708..20e2914a 100644 --- a/cockatrice/translations/cockatrice_en.ts +++ b/cockatrice/translations/cockatrice_en.ts @@ -124,27 +124,27 @@ CardDatabaseModel - + Name - + Sets - + Mana cost - + Card type - + P/T @@ -152,22 +152,22 @@ CardInfoWidget - + Name: - + Mana cost: - + Card type: - + P / T: @@ -673,67 +673,82 @@ - + &Password: - + P&layers: - + Game type + Only &buddies can join + + + + + Only &registered users can join + + + + + Joining restrictions + + + + &Spectators allowed - + Spectators &need a password to join - + Spectators can &chat - + Spectators see &everything - + Spectators - + &OK - + &Cancel - + Create game - + Error - + Server error. @@ -930,65 +945,83 @@ GameSelector - + C&reate - + &Join - + + + + Error - + Wrong password. - + Spectators are not allowed in this game. - + The game is already full. - + The game does not exist any more. - + + This game is only open to registered users. + + + + + This game is only open to its creator's buddies. + + + + + You are being ignored by the creator of this game. + + + + Join game - + Password: - + Games - + Show &full games - + J&oin as spectator @@ -1014,12 +1047,12 @@ - + Creator - + Description @@ -1029,27 +1062,42 @@ - + + buddies only + + + + + reg. users only + + + + not allowed - + Game type - + Password - + + Restrictions + + + + Players - + Spectators @@ -1108,184 +1156,217 @@ MainWindow - + + There are too many concurrent connections from your address. + + + + + Banned by moderator. + + + + + Unknown reason. + + + + + Connection closed + + + + + The server has terminated your connection. +Reason: %1 + + + + Number of players - + Please enter the number of players. - - + + Player %1 - + About Cockatrice - + Version %1 - + Authors: - + Translators: - + Spanish: - + Portugese (Portugal): - + Portugese (Brazil): - + French: - + Japanese: - + Russian: - - - - + + + + + Error - + Server timeout - + Invalid login data. - + + There is already an active session using this user name. +Please close that session first and re-login. + + + + Socket error: %1 - + You are trying to connect to an obsolete server. Please downgrade your Cockatrice version or connect to a suitable server. Local version is %1, remote version is %2. - + Your Cockatrice client is obsolete. Please update your Cockatrice version. Local version is %1, remote version is %2. - + Connecting to %1... - + Disconnected - + Logged in at %1 - + &Connect... - + &Disconnect - + Start &local game... - + &Deck editor - + &Full screen - + Ctrl+F - + &Settings... - + &Exit - + &Cockatrice - + &About Cockatrice - + &Help - + Are you sure? - + There are still open games. Are you sure you want to quit? @@ -2188,28 +2269,48 @@ Local version is %1, remote version is %2. PlayerListWidget - - Player name + + local deck - - Deck + + deck #%1 - - --- + + User &details - - local + + Direct &chat - - #%1 + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Kick from &game @@ -2262,32 +2363,32 @@ Local version is %1, remote version is %2. RoomSelector - + Rooms - + Joi&n - + Room - + Description - + Players - + Games @@ -2338,7 +2439,7 @@ Local version is %1, remote version is %2. - + Administration @@ -2413,122 +2514,132 @@ Please enter a name: TabGame - + F5 - + F6 - + F7 - + F8 - + F9 - + F10 - + &Phases - + &Game - + Next &phase - + Ctrl+Space - + Next &turn - + Ctrl+Return - + Ctrl+Enter - + &Remove all local arrows - + Ctrl+R - + &Concede - + F2 - + &Leave game - + &Say: - + Concede - + Are you sure you want to concede this game? - + Leave game - + Are you sure you want to leave this game? - + + Kicked + + + + + You have been kicked out of the game. + + + + Game %1: %2 @@ -2546,17 +2657,22 @@ Please enter a name: - + + This user is ignoring you. + + + + %1 has left the server. - + %1 has joined the server. - + Talking to %1 @@ -2564,34 +2680,47 @@ Please enter a name: TabRoom - + &Say: - + Chat - + &Room - + &Leave room + + + You are flooding the chat. Please wait a couple of seconds. + + TabServer - + Server + + TabUserLists + + + User lists + + + UserInfoBox @@ -2661,25 +2790,71 @@ Please enter a name: UserList - + Users online: %1 - + Users in this room: %1 - + + Buddies online: %1 / %2 + + + + + Ignored users online: %1 / %2 + + + + User &details - + Direct &chat + + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Ban from &server + + + + + Duration + + + + + Please enter the duration of the ban (in minutes). +Enter 0 for an indefinite ban. + + WndDeckEditor diff --git a/cockatrice/translations/cockatrice_es.ts b/cockatrice/translations/cockatrice_es.ts index da3f7cfa..6f25fd44 100644 --- a/cockatrice/translations/cockatrice_es.ts +++ b/cockatrice/translations/cockatrice_es.ts @@ -132,27 +132,27 @@ CardDatabaseModel - + Name Nombre - + Sets Edición - + Mana cost Coste de mana - + Card type Tipo de carta - + P/T F/R @@ -160,22 +160,22 @@ CardInfoWidget - + Name: Nombre: - + Mana cost: Coste de mana: - + Card type: Tipo de carta: - + P / T: F / R: @@ -872,67 +872,82 @@ &Descripción: - + &Password: &Contraseña: - + P&layers: &Jugadores: - + Game type + Only &buddies can join + + + + + Only &registered users can join + + + + + Joining restrictions + + + + &Spectators allowed Permitir e&spectadores - + Spectators &need a password to join Los espectadores &necesitan contraseña para unirse - + Spectators can &chat Los espectadores pueden &chatear - + Spectators see &everything Los espectadores pueden verlo &todo - + Spectators Espectadores - + &OK &Aceptar - + &Cancel &Cancelar - + Create game Crear partida - + Error Error - + Server error. Error del servidor. @@ -1141,60 +1156,78 @@ GameSelector - + C&reate C&rear - + &Join E&ntrar - + + + + Error Error - + Wrong password. Contraseña incorrecta. - + Spectators are not allowed in this game. No se permiten espectadores en esta partida. - + The game is already full. La partida no tiene plazas libres. - + The game does not exist any more. La partida ya no existe. - + + This game is only open to registered users. + + + + + This game is only open to its creator's buddies. + + + + + You are being ignored by the creator of this game. + + + + Join game Entrar en la partida - + Password: Contraseña: - + Games Partidas - + Show &full games Ver partidas &sin plazas libres @@ -1203,7 +1236,7 @@ &Ver partidas sin plazas libres - + J&oin as spectator Entrar como e&spectador @@ -1229,12 +1262,12 @@ no - + Creator Creador - + Description Descripción @@ -1244,27 +1277,42 @@ sí, libre para espectadores - + + buddies only + + + + + reg. users only + + + + not allowed no permitido - + Game type - + Password Contraseña - + + Restrictions + + + + Players Jugadores - + Spectators Espectadores @@ -1323,103 +1371,136 @@ MainWindow - + + There are too many concurrent connections from your address. + + + + + Banned by moderator. + + + + + Unknown reason. + + + + + Connection closed + + + + + The server has terminated your connection. +Reason: %1 + + + + Number of players Número de jugadores - + Please enter the number of players. Por favor, introduzca el número de jugadores. - - + + Player %1 Jugador %1 - + About Cockatrice Acerca de Cockatrice - + Version %1 Versión %1 - + Authors: Autores: - + Translators: Traductores: - + Spanish: Español: - + Portugese (Portugal): Portugués (Portugal): - + Portugese (Brazil): Portugués (Brasil): - + French: Francés: - + Japanese: Japonés: - + Russian: - - - - + + + + + Error Error - + Server timeout Tiempo de espera del servidor agotado - + Invalid login data. Datos de conexión invalidos. - + + There is already an active session using this user name. +Please close that session first and re-login. + + + + Socket error: %1 Error del Socket: %1 - + You are trying to connect to an obsolete server. Please downgrade your Cockatrice version or connect to a suitable server. Local version is %1, remote version is %2. - + Your Cockatrice client is obsolete. Please update your Cockatrice version. Local version is %1, remote version is %2. @@ -1429,82 +1510,82 @@ Local version is %1, remote version is %2. La versión del protocolo es diferente. Version local: %1, version remota: %2. - + Connecting to %1... Conectando a %1... - + Disconnected Desconectado - + Logged in at %1 Conectado en %1 - + &Connect... &Conectar... - + &Disconnect &Desconectar - + Start &local game... Empezar partida &local... - + &Deck editor Editor de &mazos - + &Full screen &Pantalla completa - + Ctrl+F CTRL+F - + &Settings... &Preferencias... - + &Exit &Salir - + &Cockatrice &Cockatrice - + &About Cockatrice &Acerca de Cockatrice - + &Help A&yuda - + Are you sure? ¿Estás seguro? - + There are still open games. Are you sure you want to quit? Todavía hay partidas abiertas. ¿Estás seguro que quieres salir? @@ -2423,37 +2504,73 @@ Local version is %1, remote version is %2. PlayerListWidget - Player name - Nombre del jugador + Nombre del jugador - Deck - Mazo + Mazo - --- - --- + --- - local - local + local - #%1 - #%1 + #%1 no deck no mazo + local deck - mazo local + mazo local + + + + deck #%1 + + + + + User &details + &Detalles del usuario + + + + Direct &chat + &Chat privado + + + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Kick from &game + ID #%1 @@ -2509,32 +2626,32 @@ Local version is %1, remote version is %2. RoomSelector - + Rooms Salas - + Joi&n E&ntrar - + Room Sala - + Description Descripción - + Players Jugadores - + Games Partidas @@ -2592,7 +2709,7 @@ Local version is %1, remote version is %2. ¿Realmente quieres desbloquear las funciones de administración? - + Administration Administración @@ -2687,122 +2804,132 @@ Por favor, introduzca un nombre: TabGame - + F5 F5 - + F6 F6 - + F7 F7 - + F8 F8 - + F9 F9 - + F10 F10 - + &Phases - + &Game &Partida - + Next &phase Próxima &fase - + Ctrl+Space Ctrl+Space - + Next &turn Próximo &turno - + Ctrl+Return Ctrl+Return - + Ctrl+Enter Ctrl+Enter - + &Remove all local arrows &Retirar todas las flechas locales - + Ctrl+R Ctrl+R - + &Concede &Conceder - + F2 F2 - + &Leave game &Abandonar la partida - + &Say: &Decir: - + Concede Conceder - + Are you sure you want to concede this game? ¿Estás seguro de que quieres conceder esta partida? - + Leave game Abandonar la partida - + Are you sure you want to leave this game? ¿Estás seguro de que quieres abandonar la partida? - + + Kicked + + + + + You have been kicked out of the game. + + + + Game %1: %2 Partida %1: %2 @@ -2820,17 +2947,22 @@ Por favor, introduzca un nombre: &Cerrar - + + This user is ignoring you. + + + + %1 has left the server. %1 ha abandonado el servidor. - + %1 has joined the server. - + Talking to %1 Hablando con %1 @@ -2838,25 +2970,30 @@ Por favor, introduzca un nombre: TabRoom - + &Say: &Decir: - + Chat Chat - + &Room &Sala - + &Leave room &Dejar sala + + + You are flooding the chat. Please wait a couple of seconds. + + %1 has joined the room. %1 se ha unido a la sala. @@ -2869,11 +3006,19 @@ Por favor, introduzca un nombre: TabServer - + Server Servidor + + TabUserLists + + + User lists + + + UserInfoBox @@ -2943,25 +3088,71 @@ Por favor, introduzca un nombre: UserList - + Users online: %1 Usuarios online: %1 - + Users in this room: %1 Usuarios en esta sala: %1 - + + Buddies online: %1 / %2 + + + + + Ignored users online: %1 / %2 + + + + User &details &Detalles del usuario - + Direct &chat &Chat privado + + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Ban from &server + + + + + Duration + + + + + Please enter the duration of the ban (in minutes). +Enter 0 for an indefinite ban. + + WndDeckEditor diff --git a/cockatrice/translations/cockatrice_fr.ts b/cockatrice/translations/cockatrice_fr.ts index 164fc102..835956ab 100644 --- a/cockatrice/translations/cockatrice_fr.ts +++ b/cockatrice/translations/cockatrice_fr.ts @@ -124,27 +124,27 @@ CardDatabaseModel - + Name Nom - + Sets Sets - + Mana cost Cout de mana - + Card type Type de carte - + P/T F/E @@ -152,22 +152,22 @@ CardInfoWidget - + Name: Nom: - + Mana cost: Cout de mana: - + Card type: Type de carte - + P / T: F / E: @@ -734,67 +734,82 @@ &Description: - + &Password: Mot de &Passe: - + P&layers: - + Game type + Only &buddies can join + + + + + Only &registered users can join + + + + + Joining restrictions + + + + &Spectators allowed &Spectateurs autorisés - + Spectators &need a password to join Les spectateurs ont besoin d'un mot de passe pour rejoindre - + Spectators can &chat Les spectateurs peuvent discuter - + Spectators see &everything Les spectateurs p&euvent tout voir - + Spectators Spectateurs - + &OK &OK - + &Cancel &Annuler - + Create game Créer partie - + Error Erreur - + Server error. Erreur serveur. @@ -991,50 +1006,68 @@ GameSelector - + + + + Error Erreur - + Wrong password. Mauvais mot de passe - + Spectators are not allowed in this game. Les spectateurs ne sont pas autorisés dans cette partie - + The game is already full. Cette partie est déjà pleine. - + The game does not exist any more. La partie n'existe plus. - + + This game is only open to registered users. + + + + + This game is only open to its creator's buddies. + + + + + You are being ignored by the creator of this game. + + + + Join game Rejoindre partie - + Password: Mot de passe: - + Games Parties - + Show &full games Montrer &toutes les parties @@ -1044,17 +1077,17 @@ &Montrer toutes les parties - + C&reate C&réer - + &Join Re&joindre - + J&oin as spectator J&oindre en tant que spectateur @@ -1085,37 +1118,52 @@ non - + + buddies only + + + + + reg. users only + + + + not allowed non autorisé - + Description Description - + Creator Créateur - + Game type - + Password Mot de passe - + + Restrictions + + + + Players Joueurs - + Spectators Spectateurs @@ -1174,23 +1222,23 @@ MainWindow - + Number of players Nombre de joueurs - + Please enter the number of players. Entrez s'il vous plait le nombre de joueurs - - + + Player %1 Joueur %1 - + About Cockatrice à propos de Cockatrice @@ -1199,71 +1247,72 @@ <font size="8"><b>Cockatrice</b></font><br>Version %1<br><br><br><b>Auteurs:</b><br>Max-Wilhelm Bruker<br>Marcus Schütz<br>Marius van Zundert<br><br><b>Tranducteurs:</b><br>Espagnol: Gocho<br>Portugais: Milton Gonçalves<br>Portugais: Milton Gonçalves<br>Français: Yannick HAMMER<br> - + Version %1 Version %1 - + Authors: Auteurs: - + Translators: Traducteurs: - + Spanish: Espagnol: - + Portugese (Portugal): Portugais (Portugal): - + Portugese (Brazil): Portugais (Brésil): - + French: Français: - + Japanese: Japonais: - + Russian: - - - - + + + + + Error Erreur - + Server timeout Délai de la demande dépassé - + Invalid login data. Information de connexion érronée - + Socket error: %1 Erreur de socket: %1 @@ -1272,95 +1321,127 @@ Version de protocole différente. Version locale: %1 ,version distante: %2. - + + There are too many concurrent connections from your address. + + + + + Banned by moderator. + + + + + Unknown reason. + + + + + Connection closed + + + + + The server has terminated your connection. +Reason: %1 + + + + + There is already an active session using this user name. +Please close that session first and re-login. + + + + You are trying to connect to an obsolete server. Please downgrade your Cockatrice version or connect to a suitable server. Local version is %1, remote version is %2. - + Your Cockatrice client is obsolete. Please update your Cockatrice version. Local version is %1, remote version is %2. - + Connecting to %1... Connexion à %1... - + Disconnected Déconnecté - + Logged in at %1 Connecté à %1 - + &Connect... à verifier &Connecter... - + &Disconnect &Déconnecter - + Start &local game... Démarrer une partie &locale... - + &Deck editor Editeur de &deck - + &Full screen &Plein écran - + Ctrl+F Ctrl+F - + &Settings... &Paramètres - + &Exit &Quitter - + &Cockatrice &Cockatrice - + &About Cockatrice &A propos de Cockatrice - + &Help A&ide - + Are you sure? Etes vous sur? - + There are still open games. Are you sure you want to quit? Il y a encore des parties en cours. Etes vous sure de vouloir quitter? @@ -2288,29 +2369,69 @@ Local version is %1, remote version is %2. PlayerListWidget - Player name - Nom du joueur + Nom du joueur - Deck - Deck + Deck - --- - --- + --- - local - local + local - #%1 - #%1 + #%1 + + + + local deck + + + + + deck #%1 + + + + + User &details + &Détails utilisateur + + + + Direct &chat + &Chat directe + + + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Kick from &game + @@ -2363,32 +2484,32 @@ Local version is %1, remote version is %2. RoomSelector - + Rooms Salons - + Joi&n &Rejoindre - + Room Salon - + Description Description - + Players Joueurs - + Games Parties @@ -2446,7 +2567,7 @@ Local version is %1, remote version is %2. Etes vous sûre de vouloir débloquer les fonctions d'administration? - + Administration Administration @@ -2541,122 +2662,132 @@ Entrez un nom s'il vous plait: TabGame - + F5 F5 - + F6 F6 - + F7 F7 - + F8 F8 - + F9 F9 - + F10 F10 - + &Phases - + &Game &Partie - + Next &phase &Prochaine phase - + Ctrl+Space Ctrl+Espace - + Next &turn Prochain &Tour - + Ctrl+Return Ctrl+Retour - + Ctrl+Enter Ctrl+Entrée - + &Remove all local arrows &Retirer toutes les fléches locale - + Ctrl+R Ctrl+R - + &Concede &Concéder - + F2 F2 - + &Leave game &Quitter la partie - + &Say: &Dire: - + Concede Concéder - + Are you sure you want to concede this game? Etes vous sur de vouloir concéder la partie? - + Leave game Quitter la partie - + Are you sure you want to leave this game? Etes vous sur de vouloir quitter la partie? - + + Kicked + + + + + You have been kicked out of the game. + + + + Game %1: %2 Partie %1:%2 @@ -2675,17 +2806,22 @@ Entrez un nom s'il vous plait: &Quitter - + + This user is ignoring you. + + + + %1 has left the server. %1 a quitté le serveur. - + %1 has joined the server. - + Talking to %1 Vous parlez à %1 @@ -2693,25 +2829,30 @@ Entrez un nom s'il vous plait: TabRoom - + &Say: &Dire: - + Chat Chat - + &Room &Salon - + &Leave room &Partir du salon + + + You are flooding the chat. Please wait a couple of seconds. + + %1 has joined the room. %1 a rejoin le salon. @@ -2724,11 +2865,19 @@ Entrez un nom s'il vous plait: TabServer - + Server Serveur + + TabUserLists + + + User lists + + + UserInfoBox @@ -2799,25 +2948,71 @@ Entrez un nom s'il vous plait: UserList - + Users online: %1 Utilisateurs en ligne:%1 - + Users in this room: %1 Utilisateurs dans ce salon: %1 - + + Buddies online: %1 / %2 + + + + + Ignored users online: %1 / %2 + + + + User &details &Détails utilisateur - + Direct &chat &Chat directe + + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Ban from &server + + + + + Duration + + + + + Please enter the duration of the ban (in minutes). +Enter 0 for an indefinite ban. + + WndDeckEditor diff --git a/cockatrice/translations/cockatrice_ja.ts b/cockatrice/translations/cockatrice_ja.ts index a1e98d39..b1a2e279 100644 --- a/cockatrice/translations/cockatrice_ja.ts +++ b/cockatrice/translations/cockatrice_ja.ts @@ -128,27 +128,27 @@ CardDatabaseModel - + Name カード名 - + Sets エクスパンション - + Mana cost マナコスト - + Card type カードタイプ - + P/T @@ -156,22 +156,22 @@ CardInfoWidget - + Name: カード名: - + Mana cost: マナコスト: - + Card type: カードタイプ: - + P / T: @@ -720,67 +720,82 @@ 説明: - + &Password: パスワード: - + P&layers: プレイヤー人数: - + Game type + Only &buddies can join + + + + + Only &registered users can join + + + + + Joining restrictions + + + + &Spectators allowed 観戦者を許可する - + Spectators &need a password to join 観戦者は参加にパスワードが必要 - + Spectators can &chat 観戦者はチャットに参加できる - + Spectators see &everything 観戦者は全て見れる - + Spectators 観戦者 - + &OK - + &Cancel - + Create game 部屋を作る - + Error エラー - + Server error. サーバーエラー. @@ -977,60 +992,78 @@ GameSelector - + C&reate 部屋を作る - + &Join 参加する - + + + + Error エラー - + Wrong password. パスワードが間違っています. - + Spectators are not allowed in this game. この試合は観戦者は許可されていません. - + The game is already full. このゲームはすでに満員です. - + The game does not exist any more. このゲームはもう存在しません. - + + This game is only open to registered users. + + + + + This game is only open to its creator's buddies. + + + + + You are being ignored by the creator of this game. + + + + Join game 参加 - + Password: パスワード: - + Games ゲーム - + Show &full games 全てのゲームを見る @@ -1039,7 +1072,7 @@ 全てのゲームを見る - + J&oin as spectator 観戦者として参加 @@ -1065,12 +1098,12 @@ なし - + Creator 作成者 - + Description 説明 @@ -1080,27 +1113,42 @@ あり,観戦は自由 - + + buddies only + + + + + reg. users only + + + + not allowed 不許可 - + Game type - + Password パスワード - + + Restrictions + + + + Players プレイヤー - + Spectators 観戦者 @@ -1159,184 +1207,217 @@ MainWindow - + + There are too many concurrent connections from your address. + + + + + Banned by moderator. + + + + + Unknown reason. + + + + + Connection closed + + + + + The server has terminated your connection. +Reason: %1 + + + + Number of players プレイヤー人数 - + Please enter the number of players. プレイヤーの人数を入れてください. - - + + Player %1 プレイヤー %1 - + About Cockatrice Cockatriceについて - + Version %1 - + Authors: 著者: - + Translators: 翻訳者: - + Spanish: スペイン語: - + Portugese (Portugal): ポルトガル語(ポルトガル): - + Portugese (Brazil): ポルトガル語(ブラジル): - + French: フランス語: - + Japanese: 日本語: - + Russian: - - - - + + + + + Error エラー - + Server timeout サーバータイムアウト - + Invalid login data. 無効なログインデータです. - + + There is already an active session using this user name. +Please close that session first and re-login. + + + + Socket error: %1 ソケットエラー: %1 - + You are trying to connect to an obsolete server. Please downgrade your Cockatrice version or connect to a suitable server. Local version is %1, remote version is %2. - + Your Cockatrice client is obsolete. Please update your Cockatrice version. Local version is %1, remote version is %2. - + Connecting to %1... %1へ接続しています... - + Disconnected 切断されました - + Logged in at %1 %1にログイン中 - + &Connect... 接続... - + &Disconnect 切断 - + Start &local game... ローカルゲームを開始... - + &Deck editor デッキエディター - + &Full screen フルスクリーン - + Ctrl+F - + &Settings... 設定... - + &Exit 終了 - + &Cockatrice - + &About Cockatrice - + &Help ヘルプ - + Are you sure? よろしいですか? - + There are still open games. Are you sure you want to quit? ゲームがまだ開いています.本当に退出しますか? @@ -2231,29 +2312,61 @@ Local version is %1, remote version is %2. PlayerListWidget - Player name - プレイヤーネーム + プレイヤーネーム - Deck - デッキ + デッキ - - --- - - - - local - ローカル + ローカル - - #%1 - + + local deck + + + + + deck #%1 + + + + + User &details + ユーザー補足 + + + + Direct &chat + 個人チャット + + + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Kick from &game + @@ -2305,32 +2418,32 @@ Local version is %1, remote version is %2. RoomSelector - + Rooms 部屋 - + Joi&n 参加する - + Room 部屋 - + Description 説明 - + Players プレイヤー - + Games ゲーム @@ -2388,7 +2501,7 @@ Local version is %1, remote version is %2. 本当に管理機能をアンロックしますか? - + Administration 管理者 @@ -2482,122 +2595,132 @@ Please enter a name: TabGame - + F5 - + F6 - + F7 - + F8 - + F9 - + F10 - + &Phases - + &Game ゲーム - + Next &phase 次のフェイズ - + Ctrl+Space - + Next &turn 次のターン - + Ctrl+Return - + Ctrl+Enter - + &Remove all local arrows 全ての矢印を消す - + Ctrl+R - + &Concede 投了する - + F2 - + &Leave game ゲームを退出する - + &Say: 発言する - + Concede 投了する - + Are you sure you want to concede this game? 本当にこのゲームに投了しますか? - + Leave game ゲームから退出する - + Are you sure you want to leave this game? 本当にこのゲームから退出しますか? - + + Kicked + + + + + You have been kicked out of the game. + + + + Game %1: %2 ゲーム %1: %2 @@ -2615,17 +2738,22 @@ Please enter a name: 退出する - + + This user is ignoring you. + + + + %1 has left the server. %1はサーバーから退出しました. - + %1 has joined the server. - + Talking to %1 %1と会話 @@ -2633,25 +2761,30 @@ Please enter a name: TabRoom - + &Say: 発言する - + Chat チャット - + &Room 部屋 - + &Leave room 部屋から出る + + + You are flooding the chat. Please wait a couple of seconds. + + %1 has joined the room. %1は部屋に参加しました @@ -2664,11 +2797,19 @@ Please enter a name: TabServer - + Server サーバー + + TabUserLists + + + User lists + + + UserInfoBox @@ -2738,25 +2879,71 @@ Please enter a name: UserList - + Users online: %1 ユーザー オンライン: %1 - + Users in this room: %1 部屋のユーザー数: %1 - + + Buddies online: %1 / %2 + + + + + Ignored users online: %1 / %2 + + + + User &details ユーザー補足 - + Direct &chat 個人チャット + + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Ban from &server + + + + + Duration + + + + + Please enter the duration of the ban (in minutes). +Enter 0 for an indefinite ban. + + WndDeckEditor diff --git a/cockatrice/translations/cockatrice_pt-br.ts b/cockatrice/translations/cockatrice_pt-br.ts index eefacbba..a348b9ff 100644 --- a/cockatrice/translations/cockatrice_pt-br.ts +++ b/cockatrice/translations/cockatrice_pt-br.ts @@ -128,27 +128,27 @@ CardDatabaseModel - + Name Nome - + Sets Expansões - + Mana cost Custo de mana - + Card type Tipo de card - + P/T P/R @@ -156,22 +156,22 @@ CardInfoWidget - + Name: Nome: - + Mana cost: Custo de mana: - + Card type: Tipo de card: - + P / T: P / R: @@ -738,67 +738,82 @@ &Descrição: - + &Password: S&enha: - + P&layers: &Jogadores: - + Game type + Only &buddies can join + + + + + Only &registered users can join + + + + + Joining restrictions + + + + &Spectators allowed &Permitir visitantes - + Spectators &need a password to join Visitantes &precisam de senha para entrar - + Spectators can &chat Visitantes podem c&onversar - + Spectators see &everything Visitantes podem ver &tudo - + Spectators Visitantes - + &OK &OK - + &Cancel &Cancelar - + Create game Criar jogo - + Error Erro - + Server error. Erro do servidor. @@ -995,60 +1010,78 @@ GameSelector - + C&reate &Criar - + &Join &Entrar - + + + + Error Erro - + Wrong password. Senha incorreta. - + Spectators are not allowed in this game. Não são permitidos visitantes neste jogo. - + The game is already full. O jogo está cheio. - + The game does not exist any more. O jogo não existe mais. - + + This game is only open to registered users. + + + + + This game is only open to its creator's buddies. + + + + + You are being ignored by the creator of this game. + + + + Join game Entrar no jogo - + Password: Senha: - + Games Jogos - + Show &full games &Mostrar os jogos cheios @@ -1057,7 +1090,7 @@ &Mostrar os jogos cheios - + J&oin as spectator E&ntrar como visitante @@ -1083,12 +1116,12 @@ não - + Creator Criador - + Description Descrição @@ -1098,27 +1131,42 @@ sim, livre para visitantes - + + buddies only + + + + + reg. users only + + + + not allowed não permitidos - + Game type - + Password Senha - + + Restrictions + + + + Players Jogadores - + Spectators Visitantes @@ -1177,23 +1225,23 @@ MainWindow - + Number of players Número de jogadores - + Please enter the number of players. Por favor, entre o número de jogadores. - - + + Player %1 Jogador %1 - + About Cockatrice Sobre o Cockatrice @@ -1202,71 +1250,72 @@ <font size="8"><b>Cockatrice</b></font><br>Version %1<br><br><br><b>Authors:</b><br>Max-Wilhelm Bruker<br>Marcus Schütz<br>Marius van Zundert<br><br><b>Translators:</b><br>Spanish: Gocho<br>Portugese: Milton Gonçalves<br>Brazilian Portuguese: Thiago Queiroz<br> - + Version %1 Versão %1 - + Authors: Autores: - + Translators: Tradutores: - + Spanish: Espanhol: - + Portugese (Portugal): Português (Portugal): - + Portugese (Brazil): Português (Brasil): - + French: Francês: - + Japanese: Japonês: - + Russian: - - - - + + + + + Error Erro - + Server timeout Tempo esgotado do servidor - + Invalid login data. Informações de login inválidas. - + Socket error: %1 Erro de ligação:%1 @@ -1275,94 +1324,126 @@ Versão dos protocolos incompatível. Versão local:%1, versão remota:%2. - + + There are too many concurrent connections from your address. + + + + + Banned by moderator. + + + + + Unknown reason. + + + + + Connection closed + + + + + The server has terminated your connection. +Reason: %1 + + + + + There is already an active session using this user name. +Please close that session first and re-login. + + + + You are trying to connect to an obsolete server. Please downgrade your Cockatrice version or connect to a suitable server. Local version is %1, remote version is %2. - + Your Cockatrice client is obsolete. Please update your Cockatrice version. Local version is %1, remote version is %2. - + Connecting to %1... Conectando a %1... - + Disconnected Desconectado - + Logged in at %1 Logado em %1 - + &Connect... &Conectar... - + &Disconnect &Desconectar - + Start &local game... Iniciar jogo &local... - + &Deck editor Editor de &decks - + &Full screen Tela &cheia - + Ctrl+F Ctrl+F - + &Settings... &Configurações... - + &Exit &Sair - + &Cockatrice &Cockatrice - + &About Cockatrice So&bre o Cockatrice - + &Help &Ajuda - + Are you sure? Você tem certeza? - + There are still open games. Are you sure you want to quit? Ainda existem jogos abertos. Você tem certeza que deseja sair? @@ -2273,29 +2354,69 @@ Local version is %1, remote version is %2. PlayerListWidget - Player name - Nome do jogador + Nome do jogador - Deck - Deck + Deck - --- - --- + --- - local - local + local - #%1 - nº %1 + nº %1 + + + + local deck + + + + + deck #%1 + + + + + User &details + &Detalhes do usuário + + + + Direct &chat + &Chat direto + + + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Kick from &game + @@ -2347,32 +2468,32 @@ Local version is %1, remote version is %2. RoomSelector - + Rooms Salas - + Joi&n &Entrar - + Room Sala - + Description Descrição - + Players Jogadores - + Games Jogos @@ -2430,7 +2551,7 @@ Local version is %1, remote version is %2. Você quer mesmo desbloquear as funções do administrador? - + Administration Administração @@ -2525,122 +2646,132 @@ Por favor, entre um nome: TabGame - + F5 F5 - + F6 F6 - + F7 F7 - + F8 F8 - + F9 F9 - + F10 F10 - + &Phases - + &Game &Jogo - + Next &phase Próxima &etapa - + Ctrl+Space Ctrl+Espaço - + Next &turn Próximo &turno - + Ctrl+Return Ctrl+Return - + Ctrl+Enter Ctrl+Enter - + &Remove all local arrows &Apagar todas as setas locais - + Ctrl+R Ctrl+R - + &Concede &Conceder - + F2 F2 - + &Leave game &Sair do jogo - + &Say: &Falar: - + Concede Conceder - + Are you sure you want to concede this game? Você tem certeza que deseja conceder este jogo? - + Leave game Sair do jogo - + Are you sure you want to leave this game? Você tem certeza que deseja sair deste jogo? - + + Kicked + + + + + You have been kicked out of the game. + + + + Game %1: %2 Jogo %1: %2 @@ -2658,17 +2789,22 @@ Por favor, entre um nome: &Sair - + + This user is ignoring you. + + + + %1 has left the server. %1 saiu do servidor. - + %1 has joined the server. - + Talking to %1 Falando com %1 @@ -2676,25 +2812,30 @@ Por favor, entre um nome: TabRoom - + &Say: &Falar: - + Chat Chat - + &Room &Sala - + &Leave room S&air da sala + + + You are flooding the chat. Please wait a couple of seconds. + + %1 has joined the room. %1 entrou na sala. @@ -2707,11 +2848,19 @@ Por favor, entre um nome: TabServer - + Server Servidor + + TabUserLists + + + User lists + + + UserInfoBox @@ -2781,25 +2930,71 @@ Por favor, entre um nome: UserList - + Users online: %1 Usuários online: %1 - + Users in this room: %1 Usuários nesta sala: %1 - + + Buddies online: %1 / %2 + + + + + Ignored users online: %1 / %2 + + + + User &details &Detalhes do usuário - + Direct &chat &Chat direto + + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Ban from &server + + + + + Duration + + + + + Please enter the duration of the ban (in minutes). +Enter 0 for an indefinite ban. + + WndDeckEditor diff --git a/cockatrice/translations/cockatrice_pt.ts b/cockatrice/translations/cockatrice_pt.ts index af659eea..f4820b14 100644 --- a/cockatrice/translations/cockatrice_pt.ts +++ b/cockatrice/translations/cockatrice_pt.ts @@ -128,27 +128,27 @@ CardDatabaseModel - + Name Nome - + Sets Expansões - + Mana cost Custo de mana - + Card type Tipo de carta - + P/T P/R @@ -156,22 +156,22 @@ CardInfoWidget - + Name: Nome: - + Mana cost: Custo de Mana: - + Card type: Tipo de carta: - + P / T: P / R: @@ -738,67 +738,82 @@ &Descrição: - + &Password: &Password: - + P&layers: &Jogadores: - + Game type + Only &buddies can join + + + + + Only &registered users can join + + + + + Joining restrictions + + + + &Spectators allowed &Espectadores permitidos - + Spectators &need a password to join Espectadores &necessitam de password para aceder - + Spectators can &chat Espectadores podem c&onversar - + Spectators see &everything Espectadores podem ver &tudo - + Spectators Espectadores - + &OK O&K - + &Cancel &Cancelar - + Create game Criar jogo - + Error Erro - + Server error. Erro do servidor. @@ -995,50 +1010,68 @@ GameSelector - + + + + Error Erro - + Wrong password. Password incorrecta. - + Spectators are not allowed in this game. Não são permitidos espectadores neste jogo. - + The game is already full. O jogo já se encontra cheio. - + The game does not exist any more. O jogo já não existe. - + + This game is only open to registered users. + + + + + This game is only open to its creator's buddies. + + + + + You are being ignored by the creator of this game. + + + + Join game Entrar no jogo - + Password: Password: - + Games Jogos - + Show &full games &Mostrar jogos cheios @@ -1047,17 +1080,17 @@ &Mostrar jogos cheios - + C&reate &Criar - + &Join &Entrar - + J&oin as spectator Entrar como &espectador @@ -1088,37 +1121,52 @@ não - + + buddies only + + + + + reg. users only + + + + not allowed não permitidos - + Description Descrição - + Creator Criador - + Game type - + Password Password - + + Restrictions + + + + Players Jogadores - + Spectators Espectadores @@ -1177,23 +1225,23 @@ MainWindow - + Number of players Número de jogadores - + Please enter the number of players. Por favor introduza o número de jogadores. - - + + Player %1 Jogador %1 - + About Cockatrice Sobre o Cockatrice @@ -1202,22 +1250,22 @@ <font size="8"><b>Cockatrice</b></font><br>Versão %1<br><br><br><b>Autores:</b><br>Max-Wilhelm Bruker<br>Marcus Schütz<br>Marius van Zundert<br><br><b>Tradutores:</b><br>Espanhol: Gocho<br>Português: Milton Gonçalves<br> - + Version %1 Versão %1 - + Authors: Autores: - + Translators: Tradutores: - + Spanish: Espanhol: @@ -1226,51 +1274,52 @@ Português: - + Portugese (Portugal): Português (Portugal): - + Portugese (Brazil): Português (Brasil): - + French: Francês: - + Japanese: Japonês: - + Russian: - - - - + + + + + Error Erro - + Server timeout Tempo do servidor esgotado - + Invalid login data. Informação de login incorrecta. - + Socket error: %1 Erro de ligação:%1 @@ -1279,94 +1328,126 @@ Versão dos protocolos incompatível. Versão local:%1, versão remota:%2. - + + There are too many concurrent connections from your address. + + + + + Banned by moderator. + + + + + Unknown reason. + + + + + Connection closed + + + + + The server has terminated your connection. +Reason: %1 + + + + + There is already an active session using this user name. +Please close that session first and re-login. + + + + You are trying to connect to an obsolete server. Please downgrade your Cockatrice version or connect to a suitable server. Local version is %1, remote version is %2. - + Your Cockatrice client is obsolete. Please update your Cockatrice version. Local version is %1, remote version is %2. - + Connecting to %1... Ligando a %1... - + Disconnected Desligado - + Logged in at %1 Logado em %1 - + &Connect... &Ligar... - + &Disconnect &Desligar - + Start &local game... Começar &jogo local... - + &Deck editor &Editor de decks - + &Full screen Ecrã &inteiro - + Ctrl+F Ctrl+F - + &Settings... &Configurações... - + &Exit &Sair - + &Cockatrice &Cockatrice - + &About Cockatrice S&obre o Cockatrice - + &Help &Ajuda - + Are you sure? Tens a certeza? - + There are still open games. Are you sure you want to quit? Ainda há jogos abertos. Tem a certeza que deseja sair? @@ -2277,29 +2358,69 @@ Local version is %1, remote version is %2. PlayerListWidget - Player name - Nome do jogador + Nome do jogador - Deck - Deck + Deck - --- - --- + --- - local - local + local - #%1 - #%1 + #%1 + + + + local deck + + + + + deck #%1 + + + + + User &details + Detalhes do &utilizador + + + + Direct &chat + Conversação &directa + + + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Kick from &game + @@ -2351,32 +2472,32 @@ Local version is %1, remote version is %2. RoomSelector - + Rooms Salas - + Joi&n E&ntrar - + Room Sala - + Description Descrição - + Players Jogadores - + Games Jogos @@ -2434,7 +2555,7 @@ Local version is %1, remote version is %2. Quer mesmo desbloquear as funçõesde administração? - + Administration Administração @@ -2529,122 +2650,132 @@ Por favor introduza um nome: TabGame - + F5 F5 - + F6 F6 - + F7 F7 - + F8 F8 - + F9 F9 - + F10 F10 - + &Phases - + &Game &Jogo - + Next &phase Próxima &fase - + Ctrl+Space Ctrl+Space - + Next &turn Próximo &turno - + Ctrl+Return Ctrl+Return - + Ctrl+Enter Ctrl+Enter - + &Remove all local arrows &Remover todas as setas locais - + Ctrl+R Ctrl+R - + &Concede &Conceder - + F2 F2 - + &Leave game Sair do &jogo - + &Say: &Dizer: - + Concede Conceder - + Are you sure you want to concede this game? Tem a certeza que deseja conceder este jogo? - + Leave game Sair do jogo - + Are you sure you want to leave this game? Tem a certeza que deseja sair deste jogo? - + + Kicked + + + + + You have been kicked out of the game. + + + + Game %1: %2 Jogo %1: %2 @@ -2662,17 +2793,22 @@ Por favor introduza um nome: &Abandonar - + + This user is ignoring you. + + + + %1 has left the server. %1 abandonou o servidor. - + %1 has joined the server. - + Talking to %1 Falar para %1 @@ -2680,25 +2816,30 @@ Por favor introduza um nome: TabRoom - + &Say: &Dizer: - + Chat - + &Room &Sala - + &Leave room &Abandonar a sala + + + You are flooding the chat. Please wait a couple of seconds. + + %1 has joined the room. %1 entrou na sala. @@ -2711,11 +2852,19 @@ Por favor introduza um nome: TabServer - + Server Servidor + + TabUserLists + + + User lists + + + UserInfoBox @@ -2785,25 +2934,71 @@ Por favor introduza um nome: UserList - + Users online: %1 Utilizadores online: %1 - + Users in this room: %1 Utilizadores nesta sala:%1 - + + Buddies online: %1 / %2 + + + + + Ignored users online: %1 / %2 + + + + User &details Detalhes do &utilizador - + Direct &chat Conversação &directa + + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Ban from &server + + + + + Duration + + + + + Please enter the duration of the ban (in minutes). +Enter 0 for an indefinite ban. + + WndDeckEditor diff --git a/cockatrice/translations/cockatrice_ru.ts b/cockatrice/translations/cockatrice_ru.ts index b5044d2f..4fd138ac 100644 --- a/cockatrice/translations/cockatrice_ru.ts +++ b/cockatrice/translations/cockatrice_ru.ts @@ -124,27 +124,27 @@ CardDatabaseModel - + Name Название - + Sets Издания - + Mana cost Манакост - + Card type Тип - + P/T P/T @@ -152,22 +152,22 @@ CardInfoWidget - + Name: Название: - + Mana cost: Манакост: - + Card type: Тип: - + P / T: Сила/Защита: @@ -677,67 +677,82 @@ &Подпись: - + &Password: &Пароль: - + P&layers: &Количество игроков: - + Game type Формат игры + Only &buddies can join + + + + + Only &registered users can join + + + + + Joining restrictions + + + + &Spectators allowed &Разрешить зрителей - + Spectators &need a password to join Требовать &пароль у зрителей - + Spectators can &chat Позволить зрителям &комментировать - + Spectators see &everything Показывать зрителям &все - + Spectators Зрители - + &OK &Ок - + &Cancel &Отмена - + Create game Создать игру - + Error Ошибка - + Server error. Ошибка сервера. @@ -934,65 +949,83 @@ GameSelector - + + + + Error Ошибка - + Wrong password. Неверный пароль. - + Spectators are not allowed in this game. В эту игру не пускают зрителей. - + The game is already full. Все места заняты! =Ь - + The game does not exist any more. Эта игра была удалена. - + + This game is only open to registered users. + + + + + This game is only open to its creator's buddies. + + + + + You are being ignored by the creator of this game. + + + + Join game Присоединиться - + Password: Пароль: - + Games Игры - + Show &full games Показывать &текущие - + C&reate С&оздать - + &Join &Присоединиться - + J&oin as spectator П&рисоединиться как зритель @@ -1023,37 +1056,52 @@ нет - + + buddies only + + + + + reg. users only + + + + not allowed Не допускаются - + Description Подпись - + Creator Создал - + Game type Формат игры - + Password Пароль - + + Restrictions + + + + Players Количество игроков - + Spectators Зрители @@ -1112,186 +1160,219 @@ MainWindow - + + There are too many concurrent connections from your address. + + + + + Banned by moderator. + + + + + Unknown reason. + + + + + Connection closed + + + + + The server has terminated your connection. +Reason: %1 + + + + Number of players Количество игроков - + Please enter the number of players. Введите количество игроков. - - + + Player %1 Игрок %1 - + About Cockatrice О программе - + Version %1 Версия %1 - + Authors: Разработчики: - + Translators: Переводчики: - + Spanish: Испанский: - + Portugese (Portugal): Португальский: - + Portugese (Brazil): Португальский (Brazil): - + French: Французский: - + Japanese: Японский: - + Russian: Русский: - - - - + + + + + Error Ошибка - + Server timeout Временная ошибка - + Invalid login data. Неверный логин/пароль. - + + There is already an active session using this user name. +Please close that session first and re-login. + + + + Socket error: %1 Ошибка сокета: %1 - + You are trying to connect to an obsolete server. Please downgrade your Cockatrice version or connect to a suitable server. Local version is %1, remote version is %2. Вы пытаетесь подключиться к несуществующему серверу. Пожалуйста, обновите Cockatrice или выберите другой сервер. Локальная версия %1, удаленная версия %2. - + Your Cockatrice client is obsolete. Please update your Cockatrice version. Local version is %1, remote version is %2. Ваш клиент Cockatrice устарел. Пожалуйста, обновите Cockatrice. Локальная версия %1, удаленная версия %2. - + Connecting to %1... Подключение к %1... - + Disconnected Подключение прервано - + Logged in at %1 Подключено к %1 - + &Connect... &Подключение... - + &Disconnect П&рервать подключение - + Start &local game... &Начать локальную игру... - + &Deck editor Редактор &колод - + &Full screen П&олный экран - + Ctrl+F - + &Settings... Н&астройки - + &Exit &Выход - + &Cockatrice - + &About Cockatrice О про&грамме - + &Help &Справка - + Are you sure? Вы уверены? - + There are still open games. Are you sure you want to quit? Вы подключены к игре. Выйти? @@ -2210,29 +2291,61 @@ Local version is %1, remote version is %2. PlayerListWidget - Player name - Имя игрока + Имя игрока - Deck - Колода + Колода - - --- - - - - local - локальная + локальная - - #%1 - + + local deck + + + + + deck #%1 + + + + + User &details + &Данные о пользователе + + + + Direct &chat + Обратиться &лично + + + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Kick from &game + @@ -2284,32 +2397,32 @@ Local version is %1, remote version is %2. RoomSelector - + Rooms Комнаты - + Joi&n &Присоединиться - + Room Комната - + Description Пометка - + Players Игроки - + Games Игры @@ -2360,7 +2473,7 @@ Local version is %1, remote version is %2. Вы действительно хотите разблокировать административные права? - + Administration Администрирование @@ -2436,122 +2549,132 @@ Please enter a name: TabGame - + F5 - + F6 - + F7 - + F8 - + F9 - + F10 - + &Phases &Фазы - + &Game &Игра - + Next &phase Следующая &фаза - + Ctrl+Space - + Next &turn Следующий &ход - + Ctrl+Return - + Ctrl+Enter - + &Remove all local arrows &Удалить все указатели - + Ctrl+R - + &Concede Сда&юсь! - + F2 - + &Leave game Покинуть и&гру - + &Say: Ска&зать: - + Concede Сдаться - + Are you sure you want to concede this game? Испугался? - + Leave game Покинуть игру - + Are you sure you want to leave this game? Вы уверены, что хотите уйти? - + + Kicked + + + + + You have been kicked out of the game. + + + + Game %1: %2 Игра %1: %2 @@ -2569,17 +2692,22 @@ Please enter a name: &Покинуть - + + This user is ignoring you. + + + + %1 has left the server. %1 отключился. - + %1 has joined the server. %1 зашел на сервер. - + Talking to %1 Беседует с %1 @@ -2587,34 +2715,47 @@ Please enter a name: TabRoom - + &Say: &Сказать: - + Chat Чат - + &Room &Комната - + &Leave room &Покинуть комнату + + + You are flooding the chat. Please wait a couple of seconds. + + TabServer - + Server Сервер + + TabUserLists + + + User lists + + + UserInfoBox @@ -2684,25 +2825,71 @@ Please enter a name: UserList - + Users online: %1 Пользователей в сети: %1 - + Users in this room: %1 Пользователей в этой комнате: %1 - + + Buddies online: %1 / %2 + + + + + Ignored users online: %1 / %2 + + + + User &details &Данные о пользователе - + Direct &chat Обратиться &лично + + + Add to &buddy list + + + + + Remove from &buddy list + + + + + Add to &ignore list + + + + + Remove from &ignore list + + + + + Ban from &server + + + + + Duration + + + + + Please enter the duration of the ban (in minutes). +Enter 0 for an indefinite ban. + + WndDeckEditor