Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
flask-admin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
flask-admin
Commits
882cdf0e
Commit
882cdf0e
authored
Mar 28, 2016
by
Paul Brown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change 'Edit row' and 'View row' to match existing translations
parent
34364cc3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
template.py
flask_admin/model/template.py
+5
-5
No files found.
flask_admin/model/template.py
View file @
882cdf0e
...
@@ -78,35 +78,35 @@ class ViewRowAction(TemplateLinkRowAction):
...
@@ -78,35 +78,35 @@ class ViewRowAction(TemplateLinkRowAction):
def
__init__
(
self
):
def
__init__
(
self
):
super
(
ViewRowAction
,
self
)
.
__init__
(
super
(
ViewRowAction
,
self
)
.
__init__
(
'row_actions.view_row'
,
'row_actions.view_row'
,
gettext
(
'View
row
'
))
gettext
(
'View
Record
'
))
class
ViewPopupRowAction
(
TemplateLinkRowAction
):
class
ViewPopupRowAction
(
TemplateLinkRowAction
):
def
__init__
(
self
):
def
__init__
(
self
):
super
(
ViewPopupRowAction
,
self
)
.
__init__
(
super
(
ViewPopupRowAction
,
self
)
.
__init__
(
'row_actions.view_row_popup'
,
'row_actions.view_row_popup'
,
gettext
(
'View
row
'
))
gettext
(
'View
Record
'
))
class
EditRowAction
(
TemplateLinkRowAction
):
class
EditRowAction
(
TemplateLinkRowAction
):
def
__init__
(
self
):
def
__init__
(
self
):
super
(
EditRowAction
,
self
)
.
__init__
(
super
(
EditRowAction
,
self
)
.
__init__
(
'row_actions.edit_row'
,
'row_actions.edit_row'
,
gettext
(
'Edit
row
'
))
gettext
(
'Edit
Record
'
))
class
EditPopupRowAction
(
TemplateLinkRowAction
):
class
EditPopupRowAction
(
TemplateLinkRowAction
):
def
__init__
(
self
):
def
__init__
(
self
):
super
(
EditPopupRowAction
,
self
)
.
__init__
(
super
(
EditPopupRowAction
,
self
)
.
__init__
(
'row_actions.edit_row_popup'
,
'row_actions.edit_row_popup'
,
gettext
(
'Edit
row
'
))
gettext
(
'Edit
Record
'
))
class
DeleteRowAction
(
TemplateLinkRowAction
):
class
DeleteRowAction
(
TemplateLinkRowAction
):
def
__init__
(
self
):
def
__init__
(
self
):
super
(
DeleteRowAction
,
self
)
.
__init__
(
super
(
DeleteRowAction
,
self
)
.
__init__
(
'row_actions.delete_row'
,
'row_actions.delete_row'
,
gettext
(
'Edit
row
'
))
gettext
(
'Edit
Record
'
))
# Macro helper
# Macro helper
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment