Skip to content

Supporting copywriters, more streamlined translation edit. #133

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 11 commits into
base: v2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions examples/flow-example/.meteor/.finished-upgraders
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file contains information which helps Meteor properly upgrade your
# app when you run 'meteor update'. You should check it into version control
# with your project.

notices-for-0.9.0
notices-for-0.9.1
0.9.4-platform-file
notices-for-facebook-graph-api-2
1 change: 1 addition & 0 deletions examples/flow-example/.meteor/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
local
7 changes: 7 additions & 0 deletions examples/flow-example/.meteor/.id
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file contains a token that is unique to your project.
# Check it into your repository along with the rest of this directory.
# It can be used for purposes such as:
# - ensuring you don't accidentally deploy one app on top of another
# - providing package authors with aggregated statistics

1nina3n1bv46e61rs3xrt
14 changes: 14 additions & 0 deletions examples/flow-example/.meteor/packages
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Meteor packages used by this project, one per line.
# Check this file (and the other files in this directory) into your repository.
#
# 'meteor add' and 'meteor remove' will edit this file for you,
# but you can also edit it by hand.

meteor-platform
msgfmt:core
msgfmt:extract
msgfmt:ui
meteorhacks:flow-router
meteorhacks:flow-layout
accounts-password
accounts-ui
2 changes: 2 additions & 0 deletions examples/flow-example/.meteor/platforms
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
server
browser
1 change: 1 addition & 0 deletions examples/flow-example/.meteor/release
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[email protected]
68 changes: 68 additions & 0 deletions examples/flow-example/.meteor/versions
1 change: 1 addition & 0 deletions examples/flow-example/client/FlowTest.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* CSS declarations go here */
10 changes: 10 additions & 0 deletions examples/flow-example/client/FlowTest.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<template name="header">
<h1>{{ mf 'welcome'}} </h1>
</template>

<template name="hello">
{{> loginButtons}}

<button>{{ mf 'click me' }}</button>
<p>{{ mf 'pressed'}} {{counter}} {{ mf 'times' }}</p>
</template>
23 changes: 23 additions & 0 deletions examples/flow-example/client/FlowTest.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// if (Meteor.isClient) {
// // counter starts at 0
// Session.setDefault('counter', 0);
//
// Template.hello.helpers({
// counter: function () {
// return Session.get('counter');
// }
// });
//
// Template.hello.events({
// 'click button': function () {
// // increment the counter when button is clicked
// Session.set('counter', Session.get('counter') + 1);
// }
// });
// }
//
// if (Meteor.isServer) {
// Meteor.startup(function () {
// // code to run on server at startup
// });
// }
4 changes: 4 additions & 0 deletions examples/flow-example/client/layout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<template name="layout">
{{> Template.dynamic template=top}}
{{> Template.dynamic template=main}}
</template>
5 changes: 5 additions & 0 deletions examples/flow-example/client/router.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FlowRouter.route('/', {
action: function(params) {
FlowLayout.render('layout', { top: "header", main: "hello" });
}
});
1 change: 1 addition & 0 deletions examples/flow-example/packages/msgfmt:core
1 change: 1 addition & 0 deletions examples/flow-example/packages/msgfmt:extract
1 change: 1 addition & 0 deletions examples/flow-example/packages/msgfmt:ui
1 change: 1 addition & 0 deletions examples/flow-example/server/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
msgfmt.init('en');
1 change: 1 addition & 0 deletions examples/flow-example/server/extracts.msgfmt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Used by server/extracts.msgfmt~, do not delete.
8 changes: 8 additions & 0 deletions examples/iron-example/.meteor/.finished-upgraders
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file contains information which helps Meteor properly upgrade your
# app when you run 'meteor update'. You should check it into version control
# with your project.

notices-for-0.9.0
notices-for-0.9.1
0.9.4-platform-file
notices-for-facebook-graph-api-2
1 change: 1 addition & 0 deletions examples/iron-example/.meteor/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
local
7 changes: 7 additions & 0 deletions examples/iron-example/.meteor/.id
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file contains a token that is unique to your project.
# Check it into your repository along with the rest of this directory.
# It can be used for purposes such as:
# - ensuring you don't accidentally deploy one app on top of another
# - providing package authors with aggregated statistics

1nina3n1bv46e61rs3xrt
13 changes: 13 additions & 0 deletions examples/iron-example/.meteor/packages
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Meteor packages used by this project, one per line.
# Check this file (and the other files in this directory) into your repository.
#
# 'meteor add' and 'meteor remove' will edit this file for you,
# but you can also edit it by hand.

meteor-platform
msgfmt:core
msgfmt:extract
msgfmt:ui
iron:router
accounts-password
accounts-ui
2 changes: 2 additions & 0 deletions examples/iron-example/.meteor/platforms
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
server
browser
1 change: 1 addition & 0 deletions examples/iron-example/.meteor/release
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[email protected]
73 changes: 73 additions & 0 deletions examples/iron-example/.meteor/versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
iron:[email protected]
iron:[email protected]
iron:[email protected]
iron:[email protected]
iron:[email protected]
iron:[email protected]
iron:[email protected]
iron:[email protected]
jag:[email protected]
[email protected]_2
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
meteorhacks:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
msgfmt:[email protected]
msgfmt:[email protected]
msgfmt:[email protected]
[email protected]_2
[email protected]
[email protected]
raix:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
1 change: 1 addition & 0 deletions examples/iron-example/client/FlowTest.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* CSS declarations go here */
10 changes: 10 additions & 0 deletions examples/iron-example/client/FlowTest.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<template name="header">
<h1>{{ mf 'welcome'}} </h1>
</template>

<template name="hello">
{{> loginButtons}}

<button>{{ mf 'click me' }}</button>
<p>{{ mf 'pressed'}} {{counter}} {{ mf 'times' }}</p>
</template>
23 changes: 23 additions & 0 deletions examples/iron-example/client/FlowTest.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// if (Meteor.isClient) {
// // counter starts at 0
// Session.setDefault('counter', 0);
//
// Template.hello.helpers({
// counter: function () {
// return Session.get('counter');
// }
// });
//
// Template.hello.events({
// 'click button': function () {
// // increment the counter when button is clicked
// Session.set('counter', Session.get('counter') + 1);
// }
// });
// }
//
// if (Meteor.isServer) {
// Meteor.startup(function () {
// // code to run on server at startup
// });
// }
4 changes: 4 additions & 0 deletions examples/iron-example/client/layout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<template name="layout">
{{> Template.dynamic template=top}}
{{> Template.dynamic template=main}}
</template>
3 changes: 3 additions & 0 deletions examples/iron-example/client/router.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Router.route('/', function () {
this.render('hello');
});
1 change: 1 addition & 0 deletions examples/iron-example/packages/msgfmt:core
1 change: 1 addition & 0 deletions examples/iron-example/packages/msgfmt:extract
1 change: 1 addition & 0 deletions examples/iron-example/packages/msgfmt:ui
1 change: 1 addition & 0 deletions examples/iron-example/server/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
msgfmt.init('en');
1 change: 1 addition & 0 deletions examples/iron-example/server/extracts.msgfmt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Used by server/extracts.msgfmt~, do not delete.
Loading