-
Notifications
You must be signed in to change notification settings - Fork 46
/
teams.en.yml
109 lines (109 loc) · 3.42 KB
/
teams.en.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
en:
teams: &teams
label: &label Teams
singular: Team
breadcrumbs:
label: *label
team_settings: Team Settings
dashboard: Dashboard
navigation:
label: Team
buttons: &buttons
new: Add New Team
create: Create Team
edit: Edit Team
update: Update Team
destroy: Delete Team
confirmations:
destroy: Are you sure you want to delete this team?
index:
section: Teams
header: Your Teams
create: Create New Team
buttons: *buttons
show:
header: '%{teams_possessive} Dashboard'
new:
header: Create a New Team
former_user_header: Join a Team
default_team_name: Your Team
buttons: *buttons
you_can: "You can either:"
invitation_header: Accept an invitation
logout_header: Log out of this account
new_team_header: Create a new team
alert: The account <b>%{user_email}</b> is not currently a member of any teams.
invitation: If you have received an email inviting you to join a new team, click the link in that email to accept the invitation.
log_out: You can log out of this account and log in with a different account that is a member of a team.
new_team: You can use the form below to create a new team of your own.
edit:
section: '%{team_name}'
header: Edit Team Details
description: You can update the details of and settings for this team below.
notifications:
created: Team was successfully created.
updated: Team was successfully updated.
destroyed: Team was successfully destroyed.
invitation_only: Creating new teams is currently limited to users who have been invited for early access. If you've received an early access URL, please visit it before trying again.
cannot_delete_last_team: You cannot delete the last team you belong to.
form:
buttons: *buttons
fields: &fields
id:
_: &id Team ID
label: *id
heading: *id
api_title: *id
api_description: *id
name:
_: &name Team Name
label: *name
heading: Team
api_title: *name
api_description: *name
time_zone:
_: &time_zone Primary Time Zone
label: "Primary Time Zone"
heading: *time_zone
api_title: *time_zone
api_description: *time_zone
locale:
_: &locale Language
label: "Primary Language"
heading: *locale
api_title: *locale
api_description: *locale
# 🚅 super scaffolding will insert new fields above this line.
created_at:
_: &created_at Signed Up At
heading: *created_at
api_title: *created_at
api_description: *created_at
updated_at:
_: &updated_at Updated At
heading: *updated_at
api_title: *updated_at
api_description: *updated_at
_: &self
name:
label: Your Team Name
self:
<<: [*self, *fields]
api:
actions: "Actions for Teams"
index: "List Teams"
create: "Add a New Team"
show: "Retrieve a Team"
update: "Update a Team"
fields: *fields
account:
teams: *teams
activerecord:
attributes:
team:
name: *name
time_zone: *time_zone
locale: *locale
# 🚅 super scaffolding will insert new activerecord attributes above this line.
created_at: *created_at
updated_at: *updated_at