Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BudgetMaster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Robert Goldmann
BudgetMaster
Commits
c740feaf
Commit
c740feaf
authored
7 years ago
by
Robert Goldmann
Browse files
Options
Downloads
Patches
Plain Diff
Fixed
#153
- Report change date format in initial export path
parent
1fc78a4a
No related branches found
No related tags found
1 merge request
!160
merge v1_4_0 into master
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/de/deadlocker8/budgetmaster/resources/_de.properties
+1
-1
1 addition, 1 deletion
src/de/deadlocker8/budgetmaster/resources/_de.properties
src/de/deadlocker8/budgetmaster/ui/controller/ReportController.java
+2
-2
2 additions, 2 deletions
...dlocker8/budgetmaster/ui/controller/ReportController.java
with
3 additions
and
3 deletions
src/de/deadlocker8/budgetmaster/resources/_de.properties
+
1
−
1
View file @
c740feaf
...
...
@@ -73,7 +73,7 @@ report.footer.left=BudgetMaster Monatsbericht
report.footer.center
=
Seite {0}
report.repeating.yes
=
Ja
report.repeating.no
=
Nein
report.initial.filename
=
BudgetMaster Monatsbericht - {0}
{1}.pdf
report.initial.filename
=
BudgetMaster Monatsbericht - {0}
_
{1}.pdf
# MONTH
month.january
=
Januar
...
...
This diff is collapsed.
Click to expand it.
src/de/deadlocker8/budgetmaster/ui/controller/ReportController.java
+
2
−
2
View file @
c740feaf
...
...
@@ -529,10 +529,10 @@ public class ReportController implements Refreshable
else
{
DateTime
currentDate
=
controller
.
getCurrentDate
();
String
currentMonth
=
currentDate
.
toString
(
"MM
MM
"
);
String
currentMonth
=
currentDate
.
toString
(
"MM"
);
String
currentYear
=
currentDate
.
toString
(
"YYYY"
);
fileChooser
.
setInitialFileName
(
Localization
.
getString
(
Strings
.
REPORT_INITIAL_FILENAME
,
current
Month
,
current
Year
));
fileChooser
.
setInitialFileName
(
Localization
.
getString
(
Strings
.
REPORT_INITIAL_FILENAME
,
current
Year
,
current
Month
));
}
fileChooser
.
getExtensionFilters
().
add
(
extFilter
);
File
file
=
fileChooser
.
showSaveDialog
(
controller
.
getStage
());
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment