Skip to content

Commit

Permalink
Updating captions and localizations.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Krulis committed Sep 28, 2019
1 parent b207818 commit ac7b6b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Groups/ResultsTable/ResultsTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class ResultsTable extends Component {
* User Name (First Column)
*/
const columns = [
new SortableTableColumnDescriptor('user', <FormattedMessage id="generic.name" defaultMessage="Name" />, {
new SortableTableColumnDescriptor('user', <FormattedMessage id="generic.nameOfPerson" defaultMessage="Name" />, {
headerSuffix: <FormattedMessage id="app.groupResultsTable.maxPointsRow" defaultMessage="Max points:" />,
headerSuffixClassName: styles.maxPointsRow,
className: 'text-left',
Expand Down
2 changes: 1 addition & 1 deletion src/locales/cs.json
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@
"app.homepage.description": "ReCodEx — úvodní stránka",
"app.homepage.githubWebappRepository": "Repozitář ReCodEx Webapp",
"app.homepage.help": "Nápověda",
"app.homepage.helpContent": "Pokud máte s používáním ReCodExu nějaké problémy, prosíme přečtěte si nejprve <a href=\"https://github.com/ReCodEx/wiki/wiki/User-documentation\">uživatelskou dokumentaci</a> (nyní pouze v angličtině).",
"app.homepage.helpContent": "Pokud máte s používáním ReCodExu nějaké problémy, prosíme přečtěte si nejprve <a href=\"https://github.com/ReCodEx/wiki/wiki/User-documentation\">uživatelskou dokumentaci</a>.",
"app.homepage.howToGiveFeedback": "Pokud máte jakoukoliv zpětnou vazbu, ať už pozitivní nebo negativní, neváhejte založit issue na GitHubu. Pokud zakládáte zpětnou vazbu, dejte jí prosím tag 'feedback', ať můžeme rozlišit zpětnou vazbu od chyb. Budeme se snažit odpovědět a případně vyhovět potencionálním požadavkům. Dopředu děkujeme za jakoukoliv formu zpětné vazby!",
"app.homepage.title": "ReCodEx — ReCodEx Code Examiner",
"app.homepage.whatIsRecodex": "Co je ReCodEx?",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/AssignmentStats/AssignmentStats.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const prepareTableColumnDescriptors = defaultMemoize((loggedUserId, assignmentId
}
),

new SortableTableColumnDescriptor('user', <FormattedMessage id="generic.name" defaultMessage="Name" />, {
new SortableTableColumnDescriptor('user', <FormattedMessage id="generic.nameOfPerson" defaultMessage="Name" />, {
className: 'text-left',
comparator: ({ user: u1, date: d1 }, { user: u2, date: d2 }) => nameComparator(u1, u2) || d2 - d1, // dates are implicitly in reversed order
cellRenderer: user =>
Expand Down

0 comments on commit ac7b6b2

Please sign in to comment.