├── .meteor
├── cordova-plugins
├── release
├── .gitignore
├── platforms
├── .id
└── .finished-upgraders
├── packages.json
├── packages
├── custom
│ ├── .gitignore
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── da.i18n.json
│ │ ├── de.i18n.json
│ │ ├── el.i18n.json
│ │ ├── es.i18n.json
│ │ ├── fr.i18n.json
│ │ ├── id.i18n.json
│ │ ├── it.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── en.i18n.json
│ │ ├── et.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── cs.i18n.json
│ │ ├── sv.i18n.json
│ │ └── sl.i18n.json
│ ├── lib
│ │ ├── client
│ │ │ ├── stylesheets
│ │ │ │ └── custom.scss
│ │ │ ├── custom_templates.js
│ │ │ └── templates
│ │ │ │ ├── hello.html
│ │ │ │ ├── custom_post_title.html
│ │ │ │ ├── hello.js
│ │ │ │ └── custom_post_title.js
│ │ ├── template_modules.js
│ │ └── callbacks.js
│ └── package-tap.i18n
├── screenings
│ ├── i18n
│ │ └── en.i18n.json
│ ├── .npm
│ │ └── package
│ │ │ └── .gitignore
│ ├── assets
│ │ ├── bg.jpg
│ │ ├── favicon.ico
│ │ ├── screenings.png
│ │ ├── screeningsb.png
│ │ └── screeningsc.png
│ ├── package-tap.i18n
│ ├── lib
│ │ ├── client
│ │ │ └── templates
│ │ │ │ ├── placeholder.html
│ │ │ │ ├── tagline.html
│ │ │ │ ├── typekit.html
│ │ │ │ ├── intro.html
│ │ │ │ ├── views_menu.html
│ │ │ │ ├── views_menu_item.html
│ │ │ │ ├── categories_menu_item.html
│ │ │ │ ├── categories_menu.html
│ │ │ │ ├── categories_menu.js
│ │ │ │ └── main_posts_list.html
│ │ └── server
│ │ │ └── prerender.js
│ └── scss.json
├── telescope-api
│ ├── .gitignore
│ ├── README.md
│ ├── TESTS.md
│ ├── lib
│ │ └── server
│ │ │ └── routes.js
│ └── package.js
├── telescope-core
│ ├── i18n
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ └── th.i18n.json
│ ├── README.md
│ ├── public
│ │ └── img
│ │ │ └── favicon.ico
│ ├── lib
│ │ ├── client
│ │ │ ├── main.html
│ │ │ └── templates
│ │ │ │ ├── errors
│ │ │ │ ├── loading.html
│ │ │ │ ├── loading.js
│ │ │ │ ├── no_invite.js
│ │ │ │ ├── already_logged_in.html
│ │ │ │ ├── no_rights.js
│ │ │ │ ├── not_found.html
│ │ │ │ ├── no_rights.html
│ │ │ │ ├── no_invite.html
│ │ │ │ ├── no_account.js
│ │ │ │ └── no_account.html
│ │ │ │ ├── common
│ │ │ │ ├── footer_code.js
│ │ │ │ ├── checker.js
│ │ │ │ ├── loader.html
│ │ │ │ ├── checker.html
│ │ │ │ └── footer_code.html
│ │ │ │ ├── forms
│ │ │ │ └── urlCustomType.html
│ │ │ │ ├── admin
│ │ │ │ ├── admin_menu.js
│ │ │ │ ├── admin_menu.html
│ │ │ │ └── admin_wrapper.html
│ │ │ │ └── nav
│ │ │ │ ├── mobile_nav.js
│ │ │ │ ├── submit_button.html
│ │ │ │ ├── logo.js
│ │ │ │ ├── mobile_nav.html
│ │ │ │ └── logo.html
│ │ ├── server
│ │ │ ├── start.js
│ │ │ └── fastrender.js
│ │ └── modules.js
│ └── scss.json
├── telescope-daily
│ ├── .gitignore
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── da.i18n.json
│ │ ├── el.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── de.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── cs.i18n.json
│ │ ├── en.i18n.json
│ │ ├── et.i18n.json
│ │ ├── es.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ ├── sl.i18n.json
│ │ ├── sv.i18n.json
│ │ ├── it.i18n.json
│ │ ├── ro.i18n.json
│ │ └── fr.i18n.json
│ ├── README.md
│ ├── lib
│ │ ├── client
│ │ │ └── templates
│ │ │ │ ├── after_day.html
│ │ │ │ ├── before_day.html
│ │ │ │ ├── day_heading.html
│ │ │ │ ├── load_more_days.html
│ │ │ │ └── posts_daily.html
│ │ └── daily.js
│ └── package-tap.i18n
├── telescope-email
│ ├── .gitignore
│ ├── i18n
│ │ ├── da.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── th.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── ar.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── de.i18n.json
│ │ ├── el.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── es.i18n.json
│ │ ├── et.i18n.json
│ │ ├── en.i18n.json
│ │ ├── it.i18n.json
│ │ ├── fr.i18n.json
│ │ ├── sl.i18n.json
│ │ ├── sv.i18n.json
│ │ └── cs.i18n.json
│ ├── .npm
│ │ └── package
│ │ │ └── .gitignore
│ ├── README.md
│ ├── package-tap.i18n
│ └── lib
│ │ └── server
│ │ └── templates
│ │ ├── emailTest.handlebars
│ │ └── emailInvite.handlebars
├── telescope-i18n
│ ├── .gitignore
│ └── README.md
├── telescope-kadira
│ ├── .gitignore
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── da.i18n.json
│ │ ├── de.i18n.json
│ │ ├── el.i18n.json
│ │ ├── es.i18n.json
│ │ ├── fr.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── cs.i18n.json
│ │ ├── en.i18n.json
│ │ ├── et.i18n.json
│ │ ├── it.i18n.json
│ │ ├── sl.i18n.json
│ │ └── sv.i18n.json
│ ├── README.md
│ ├── package-tap.i18n
│ └── lib
│ │ └── server
│ │ └── kadira.js
├── telescope-rss
│ ├── .gitignore
│ ├── .npm
│ │ └── package
│ │ │ └── .gitignore
│ ├── README.md
│ └── package.js
├── telescope-search
│ ├── .gitignore
│ ├── i18n
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── th.i18n.json
│ │ ├── da.i18n.json
│ │ ├── ar.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── el.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── de.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── it.i18n.json
│ │ ├── sv.i18n.json
│ │ ├── et.i18n.json
│ │ ├── en.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── cs.i18n.json
│ │ ├── sl.i18n.json
│ │ ├── es.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ └── fr.i18n.json
│ ├── README.md
│ ├── package-tap.i18n
│ ├── scss.json
│ └── lib
│ │ ├── client
│ │ └── templates
│ │ │ └── search.html
│ │ └── search.js
├── telescope-share
│ ├── .gitignore
│ ├── README.md
│ └── lib
│ │ └── share.js
├── telescope-tags
│ ├── .gitignore
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── el.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── da.i18n.json
│ │ ├── de.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ ├── cs.i18n.json
│ │ ├── sl.i18n.json
│ │ ├── et.i18n.json
│ │ ├── fr.i18n.json
│ │ ├── sv.i18n.json
│ │ ├── es.i18n.json
│ │ └── it.i18n.json
│ ├── README.md
│ ├── package-tap.i18n
│ ├── lib
│ │ ├── client
│ │ │ └── templates
│ │ │ │ ├── posts_category.html
│ │ │ │ ├── post_categories.html
│ │ │ │ ├── category_item.html
│ │ │ │ ├── categories_menu.html
│ │ │ │ └── post_categories.js
│ │ └── routes.js
│ └── scss.json
├── telescope-comments
│ ├── i18n
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── da.i18n.json
│ │ ├── th.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── ko.i18n.json
│ │ └── vi.i18n.json
│ ├── README.md
│ ├── lib
│ │ └── client
│ │ │ └── templates
│ │ │ ├── comments_list
│ │ │ ├── comments_list.html
│ │ │ ├── comments_list.js
│ │ │ └── comments_list_controller.html
│ │ │ ├── comment_reply.js
│ │ │ ├── comment_controller
│ │ │ └── comment_controller.html
│ │ │ └── comment_list.html
│ └── TESTS.md
├── telescope-embedly
│ ├── .gitignore
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── da.i18n.json
│ │ ├── de.i18n.json
│ │ ├── el.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ └── ko.i18n.json
│ ├── README.md
│ ├── package-tap.i18n
│ └── History.md
├── telescope-invites
│ ├── .gitignore
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── da.i18n.json
│ │ ├── el.i18n.json
│ │ ├── es.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── sl.i18n.json
│ │ ├── cs.i18n.json
│ │ ├── de.i18n.json
│ │ ├── en.i18n.json
│ │ ├── et.i18n.json
│ │ ├── fr.i18n.json
│ │ ├── it.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── sv.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ └── zh-CN.i18n.json
│ ├── README.md
│ ├── package-tap.i18n
│ └── lib
│ │ └── server
│ │ └── publications.js
├── telescope-newsletter
│ ├── .gitignore
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── da.i18n.json
│ │ ├── el.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── de.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ └── es.i18n.json
│ ├── .npm
│ │ └── package
│ │ │ └── .gitignore
│ ├── package-tap.i18n
│ ├── scss.json
│ ├── lib
│ │ └── server
│ │ │ └── templates
│ │ │ └── emailDigestConfirmation.handlebars
│ └── History.md
├── telescope-pages
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── da.i18n.json
│ │ ├── de.i18n.json
│ │ ├── el.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── en.i18n.json
│ │ ├── cs.i18n.json
│ │ ├── et.i18n.json
│ │ ├── fr.i18n.json
│ │ ├── it.i18n.json
│ │ ├── sv.i18n.json
│ │ ├── es.i18n.json
│ │ └── sl.i18n.json
│ ├── README.md
│ ├── lib
│ │ ├── server
│ │ │ └── publications.js
│ │ └── client
│ │ │ └── templates
│ │ │ ├── pages.js
│ │ │ ├── pages_menu.js
│ │ │ ├── page.js
│ │ │ ├── page_item.html
│ │ │ ├── page.html
│ │ │ ├── pages_menu.html
│ │ │ ├── pages.html
│ │ │ └── page_item.js
│ ├── package-tap.i18n
│ └── scss.json
├── telescope-posts
│ ├── i18n
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── th.i18n.json
│ │ └── da.i18n.json
│ ├── lib
│ │ ├── client
│ │ │ └── templates
│ │ │ │ ├── modules
│ │ │ │ ├── post_content.js
│ │ │ │ ├── post_domain.html
│ │ │ │ ├── post_info.js
│ │ │ │ ├── post_rank.js
│ │ │ │ ├── post_domain.js
│ │ │ │ ├── post_author.html
│ │ │ │ ├── post_title.html
│ │ │ │ ├── post_rank.html
│ │ │ │ ├── post_actions.html
│ │ │ │ ├── post_author.js
│ │ │ │ ├── post_info.html
│ │ │ │ ├── post_comments_link.html
│ │ │ │ ├── post_avatars.js
│ │ │ │ ├── post_vote.html
│ │ │ │ ├── post_discuss.html
│ │ │ │ └── post_content.html
│ │ │ │ ├── after_post_item.html
│ │ │ │ ├── before_post_item.html
│ │ │ │ ├── post_body.html
│ │ │ │ ├── posts_list
│ │ │ │ └── posts_list_controller.html
│ │ │ │ ├── post_item.html
│ │ │ │ ├── views_menu.html
│ │ │ │ ├── post_submit.html
│ │ │ │ ├── main_posts_list.html
│ │ │ │ └── post_item.js
│ │ └── namespace.js
│ └── README.md
├── telescope-releases
│ ├── .gitignore
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── da.i18n.json
│ │ ├── de.i18n.json
│ │ ├── el.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── fr.i18n.json
│ │ ├── et.i18n.json
│ │ ├── sv.i18n.json
│ │ ├── cs.i18n.json
│ │ ├── en.i18n.json
│ │ ├── es.i18n.json
│ │ ├── it.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ └── sl.i18n.json
│ ├── README.md
│ ├── package-tap.i18n
│ ├── releases
│ │ ├── 0.20.4.md
│ │ ├── 0.20.6.md
│ │ ├── 0.22.2.md
│ │ ├── 0.15.1.md
│ │ └── 0.11.1.md
│ └── lib
│ │ ├── server
│ │ └── publications.js
│ │ └── releases.js
├── telescope-settings
│ ├── i18n
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── de.i18n.json
│ │ ├── th.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── da.i18n.json
│ │ └── ko.i18n.json
│ ├── README.md
│ ├── package-tap.i18n
│ └── lib
│ │ ├── menus.js
│ │ ├── routes.js
│ │ └── client
│ │ └── language_changer.js
├── telescope-singleday
│ ├── .gitignore
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── el.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── da.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── de.i18n.json
│ │ └── pl.i18n.json
│ ├── README.md
│ ├── package-tap.i18n
│ └── lib
│ │ ├── client
│ │ └── templates
│ │ │ └── single_day.html
│ │ └── singleday.js
├── telescope-sitemap
│ ├── .gitignore
│ └── README.md
├── telescope-theme-base
│ ├── .gitignore
│ ├── README.md
│ ├── lib
│ │ └── client
│ │ │ └── scss
│ │ │ ├── specific
│ │ │ ├── _loading.scss
│ │ │ ├── _menus.scss
│ │ │ ├── _posts.scss
│ │ │ ├── _notifications.scss
│ │ │ └── _errors.scss
│ │ │ └── global
│ │ │ ├── _links.scss
│ │ │ ├── _icons.scss
│ │ │ └── _tables.scss
│ ├── scss.json
│ └── .versions
├── telescope-users
│ ├── i18n
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ └── th.i18n.json
│ ├── TESTS.md
│ ├── README.md
│ ├── lib
│ │ ├── client
│ │ │ └── templates
│ │ │ │ ├── profile
│ │ │ │ ├── user_profile_bio.html
│ │ │ │ ├── user_profile_twitter.html
│ │ │ │ ├── user_comments.html
│ │ │ │ ├── user_posts.html
│ │ │ │ ├── user_upvoted_posts.html
│ │ │ │ └── user_downvoted_posts.html
│ │ │ │ ├── nav
│ │ │ │ └── user_menu_label.js
│ │ │ │ ├── account
│ │ │ │ ├── user_password.js
│ │ │ │ └── user_password.html
│ │ │ │ ├── dashboard
│ │ │ │ ├── users_list_email.html
│ │ │ │ ├── users_list_username.html
│ │ │ │ ├── users_list_display_name.html
│ │ │ │ ├── users_list_avatar.html
│ │ │ │ ├── users_list_created_at.html
│ │ │ │ └── users-dashboard.html
│ │ │ │ ├── user_profile.js
│ │ │ │ ├── user_profile.html
│ │ │ │ ├── sign_out.html
│ │ │ │ ├── user_controller
│ │ │ │ └── user_controller.html
│ │ │ │ └── user_edit.html
│ │ ├── avatars.js
│ │ └── server
│ │ │ └── create_user.js
│ └── package-tap.i18n
├── telescope-datetimepicker
│ ├── .gitignore
│ ├── README.md
│ ├── autoform-bs-datetimepicker.html
│ └── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
├── telescope-debug
│ ├── lib
│ │ └── debug.js
│ └── README.md
├── telescope-getting-started
│ ├── .gitignore
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── da.i18n.json
│ │ ├── de.i18n.json
│ │ ├── el.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── fr.i18n.json
│ │ ├── et.i18n.json
│ │ ├── sl.i18n.json
│ │ ├── cs.i18n.json
│ │ ├── en.i18n.json
│ │ ├── es.i18n.json
│ │ ├── it.i18n.json
│ │ └── sv.i18n.json
│ ├── README.md
│ ├── package-tap.i18n
│ └── content
│ │ └── images
│ │ ├── telescope.png
│ │ └── stackoverflow.png
├── telescope-notifications
│ ├── .gitignore
│ ├── i18n
│ │ ├── da.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ └── th.i18n.json
│ ├── README.md
│ ├── package-tap.i18n
│ └── lib
│ │ ├── server
│ │ └── templates
│ │ │ ├── emailNewUser.handlebars
│ │ │ ├── emailAccountApproved.handlebars
│ │ │ ├── emailPostApproved.handlebars
│ │ │ ├── emailNewComment.handlebars
│ │ │ └── emailNewReply.handlebars
│ │ ├── client
│ │ └── templates
│ │ │ ├── unsubscribe.html
│ │ │ ├── notifications_mark_as_read.html
│ │ │ ├── notification_post_approved.html
│ │ │ ├── notification_new_comment.html
│ │ │ ├── notification_new_reply.html
│ │ │ ├── notification_item.html
│ │ │ ├── notifications_menu.html
│ │ │ └── notifications_mark_as_read.js
│ │ ├── modules.js
│ │ └── routes.js
├── telescope-post-by-feed
│ ├── .gitignore
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── da.i18n.json
│ │ ├── de.i18n.json
│ │ ├── el.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── en.i18n.json
│ │ ├── et.i18n.json
│ │ ├── cs.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── it.i18n.json
│ │ ├── sl.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ ├── sv.i18n.json
│ │ ├── es.i18n.json
│ │ └── fr.i18n.json
│ ├── .npm
│ │ └── package
│ │ │ └── .gitignore
│ ├── README.md
│ ├── package-tap.i18n
│ └── lib
│ │ ├── server
│ │ └── publications.js
│ │ └── client
│ │ ├── templates
│ │ ├── feeds.js
│ │ ├── feed_item.html
│ │ └── feed_item.js
│ │ └── routes.js
├── telescope-tagline-banner
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── da.i18n.json
│ │ ├── de.i18n.json
│ │ ├── el.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── it.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── sl.i18n.json
│ │ ├── cs.i18n.json
│ │ ├── en.i18n.json
│ │ ├── fr.i18n.json
│ │ ├── sv.i18n.json
│ │ ├── es.i18n.json
│ │ └── et.i18n.json
│ ├── README.md
│ ├── package-tap.i18n
│ └── lib
│ │ └── client
│ │ └── templates
│ │ ├── tagline_banner.js
│ │ └── tagline_banner.html
├── telescope-update-prompt
│ ├── .gitignore
│ ├── README.md
│ └── lib
│ │ └── client
│ │ └── templates
│ │ └── update_banner.js
├── .gitignore
├── telescope-subscribe-to-posts
│ ├── .gitignore
│ ├── i18n
│ │ ├── ar.i18n.json
│ │ ├── bg.i18n.json
│ │ ├── da.i18n.json
│ │ ├── de.i18n.json
│ │ ├── el.i18n.json
│ │ ├── hu.i18n.json
│ │ ├── id.i18n.json
│ │ ├── it.i18n.json
│ │ ├── ja.i18n.json
│ │ ├── kk.i18n.json
│ │ ├── nl.i18n.json
│ │ ├── ro.i18n.json
│ │ ├── ru.i18n.json
│ │ ├── th.i18n.json
│ │ ├── tr.i18n.json
│ │ ├── vi.i18n.json
│ │ ├── zh-CN.i18n.json
│ │ ├── ko.i18n.json
│ │ ├── pl.i18n.json
│ │ ├── cs.i18n.json
│ │ ├── en.i18n.json
│ │ ├── et.i18n.json
│ │ ├── pt-BR.i18n.json
│ │ ├── sv.i18n.json
│ │ ├── sl.i18n.json
│ │ ├── es.i18n.json
│ │ └── fr.i18n.json
│ ├── README.md
│ ├── package-tap.i18n
│ └── lib
│ │ ├── client
│ │ └── templates
│ │ │ └── user_subscribed_posts.html
│ │ └── server
│ │ └── publications.js
├── telescope-events
│ └── README.md
├── telescope-lib
│ ├── README.md
│ ├── lib
│ │ ├── client
│ │ │ └── jquery.exists.js
│ │ ├── core.js
│ │ ├── templates.js
│ │ └── custom_template_prefix.js
│ └── .versions
├── telescope-messages
│ ├── README.md
│ └── lib
│ │ ├── modules.js
│ │ └── client
│ │ └── templates
│ │ ├── messages.js
│ │ ├── messages.html
│ │ ├── message_item.js
│ │ └── message_item.html
├── telescope-scoring
│ └── README.md
├── telescope-migrations
│ └── README.md
├── telescope-spiderable
│ ├── README.md
│ └── package.js
└── telescope-theme-hubble
│ ├── README.md
│ ├── .gitignore
│ ├── lib
│ ├── client
│ │ └── scss
│ │ │ ├── modules
│ │ │ ├── _banners.scss
│ │ │ ├── _user-profile.scss
│ │ │ └── _dialogs.scss
│ │ │ └── screen.scss
│ └── hubble.js
│ ├── scss.json
│ └── .versions
├── Dockerfile
├── project-tap.i18n
├── get_file_list.sh
├── publish_packages.sh
├── .travis.yml
├── .editorconfig
└── .tx
└── config
/.meteor/cordova-plugins:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/.meteor/release:
--------------------------------------------------------------------------------
1 | METEOR@1.2.0.2
2 |
--------------------------------------------------------------------------------
/packages/custom/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/.meteor/.gitignore:
--------------------------------------------------------------------------------
1 | local
2 | meteorite
3 |
--------------------------------------------------------------------------------
/.meteor/platforms:
--------------------------------------------------------------------------------
1 | server
2 | browser
3 |
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM meteorhacks/meteord:onbuild
--------------------------------------------------------------------------------
/packages/custom/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/es.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/fr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/it.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/pl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/pt-BR.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/custom/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/screenings/i18n/en.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-api/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-core/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-core/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-core/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-email/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-i18n/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-kadira/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-rss/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-search/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-share/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-tags/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-comments/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-comments/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-comments/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/ko.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/es.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/es.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/fr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/ko.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/pl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/pt-BR.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/ko.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/pl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/pt-BR.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-posts/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-posts/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-posts/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-posts/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/ko.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/pl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-settings/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-settings/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-settings/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-settings/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-singleday/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-singleday/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-singleday/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-singleday/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-singleday/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-singleday/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-singleday/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-singleday/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-singleday/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-singleday/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-singleday/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-sitemap/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-theme-base/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-users/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-users/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-users/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-users/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/README.md:
--------------------------------------------------------------------------------
1 | Telescope daily package.
--------------------------------------------------------------------------------
/packages/telescope-datetimepicker/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-debug/lib/debug.js:
--------------------------------------------------------------------------------
1 | Telescope.debug = {};
--------------------------------------------------------------------------------
/packages/telescope-embedly/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-notifications/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-notifications/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-notifications/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-notifications/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-notifications/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-notifications/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-notifications/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/it.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/ko.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/pl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-update-prompt/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-users/TESTS.md:
--------------------------------------------------------------------------------
1 | ### Creating An Account
--------------------------------------------------------------------------------
/project-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "helper_name": "_"
3 | }
4 |
--------------------------------------------------------------------------------
/packages/.gitignore:
--------------------------------------------------------------------------------
1 | /bootstrap3-datepicker
2 | /npm-container
--------------------------------------------------------------------------------
/packages/screenings/.npm/package/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/ko.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/pl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/pt-BR.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-rss/.npm/package/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/hu.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/id.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/it.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/ja.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/kk.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/pt-BR.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/get_file_list.sh:
--------------------------------------------------------------------------------
1 | for f in $(find $1); do
2 | echo \'$f\',
3 | done
--------------------------------------------------------------------------------
/packages/telescope-email/.npm/package/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/packages/telescope-singleday/README.md:
--------------------------------------------------------------------------------
1 | Telescope single day package.
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/packages/telescope-api/README.md:
--------------------------------------------------------------------------------
1 | Telescope API package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "daily" : "Daily"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/.npm/package/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/.npm/package/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/packages/telescope-posts/lib/client/templates/modules/post_content.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/telescope-rss/README.md:
--------------------------------------------------------------------------------
1 | Telescope RSS package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "search" : "Søg"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-core/README.md:
--------------------------------------------------------------------------------
1 | Telescope core package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "daily" : "Daily"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-debug/README.md:
--------------------------------------------------------------------------------
1 | Telescope debug package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-email/README.md:
--------------------------------------------------------------------------------
1 | Telescope email package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-events/README.md:
--------------------------------------------------------------------------------
1 | Telescope events package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-i18n/README.md:
--------------------------------------------------------------------------------
1 | Telescope i18n package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-kadira/README.md:
--------------------------------------------------------------------------------
1 | Telescope Kadira package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-lib/README.md:
--------------------------------------------------------------------------------
1 | Telescope libraries package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-pages/README.md:
--------------------------------------------------------------------------------
1 | Telescope pages package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-posts/README.md:
--------------------------------------------------------------------------------
1 | Telescope posts package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-search/README.md:
--------------------------------------------------------------------------------
1 | Telescope search package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-settings/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "title" : "Titel"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/README.md:
--------------------------------------------------------------------------------
1 | Telescope tags package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "categories" : "分类"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-users/README.md:
--------------------------------------------------------------------------------
1 | Telescope users package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-comments/README.md:
--------------------------------------------------------------------------------
1 | Telescope comments package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-comments/lib/client/templates/comments_list/comments_list.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/telescope-comments/lib/client/templates/comments_list/comments_list.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/telescope-embedly/README.md:
--------------------------------------------------------------------------------
1 | Telescope Embedly package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-invites/README.md:
--------------------------------------------------------------------------------
1 | Telescope invites package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-messages/README.md:
--------------------------------------------------------------------------------
1 | Telescope messages package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-releases/README.md:
--------------------------------------------------------------------------------
1 | Telescope releases package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-scoring/README.md:
--------------------------------------------------------------------------------
1 | Telescope scoring package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "load_more" : "تحميل أكثر"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "load_more" : "Meer laden"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "load_more" : "Xem thêm"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-settings/README.md:
--------------------------------------------------------------------------------
1 | Telescope settings package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-settings/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "title" : "ชื่อเรื่อง"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-share/README.md:
--------------------------------------------------------------------------------
1 | Telescope share module package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-sitemap/README.md:
--------------------------------------------------------------------------------
1 | Telescope sitemap package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "all_categories" : "Alle"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "categories" : "Kategorien"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-users/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "comments_" : "ความเห็น"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "start_posting" : "Начать пост."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "start_posting" : "开始发布."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/ko.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "translation_key" : "번역 문자열"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-migrations/README.md:
--------------------------------------------------------------------------------
1 | Telescope migrations package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "load_more" : "Περισσότερα"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/ru.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "load_more" : "Загрузить ещё"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-spiderable/README.md:
--------------------------------------------------------------------------------
1 | Telescope spiderable package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/README.md:
--------------------------------------------------------------------------------
1 | Telescope tagline package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-theme-base/README.md:
--------------------------------------------------------------------------------
1 | Telescope base theme package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/ar.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "start_posting" : "قم باضافة جديدة"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/pl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "start_posting" : "Zacznij pisać."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "start_posting" : "Bắt đầu đăng bài."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/sl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "translation_key" : "preveden niz"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-notifications/README.md:
--------------------------------------------------------------------------------
1 | Telescope notifications package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/README.md:
--------------------------------------------------------------------------------
1 | Telescope post by feed package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "load_more" : "Afișează noutăți"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-theme-hubble/README.md:
--------------------------------------------------------------------------------
1 | Telescope Hubble theme package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-datetimepicker/README.md:
--------------------------------------------------------------------------------
1 | Telescope datetime picker package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/nl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "start_posting" : "Begin met plaatsen."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/pt-BR.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "start_posting" : "Comece a postar."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "start_posting" : "Paylaşıma başlayın"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/README.md:
--------------------------------------------------------------------------------
1 | Telescope getting started package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/cs.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "translation_key" : "Proměnná překladu"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "translation_key" : "translation string"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/en.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "translation_key" : "translation string"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/et.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "translation_key" : "tõlkimise string"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/fr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "translation_key" : "translation string"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/it.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "translation_key" : "translation string"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/pl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "translation_key" : "translation string"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/sv.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "translation_key" : "översättningstext"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/fr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "telescope_has_been_updated" : "Tele"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "start_posting" : "Започнете да публикувате."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "start_posting" : "Fang an Links einzutragen."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/el.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "start_posting" : "Ξεκινήστε να δημοσιεύετε."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "start_posting" : "Poți începe să publici."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/fr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "what_an_awesome_app" : "Super app!"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/pt-BR.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "translation_key" : "chave de tradução"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "translation_key" : "translation string"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/en.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "manage_static_pages" : "Manage static pages"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-settings/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "title" : "标题",
3 | "invites" : "邀请"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-subscribe-to-posts/README.md:
--------------------------------------------------------------------------------
1 | Telescope subscribe to posts package, used internally.
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/sl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "showTaglineBanner" : "Prikaži slogan"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-theme-hubble/.gitignore:
--------------------------------------------------------------------------------
1 | .build*
2 |
3 | config.codekit
4 | lib/client/config.codekit
--------------------------------------------------------------------------------
/packages/telescope-daily/lib/client/templates/after_day.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/et.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "what_an_awesome_app" : "Mis vinge app!"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/sl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "what_an_awesome_app" : "Kak carski app!"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/i18n/ko.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "thanks_for_subscribing" : "구독 해주셔서 감사합니다!"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/cs.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "manage_static_pages" : "Správa statických stránek"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/et.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "manage_static_pages" : "Muuda staatilisi lehekülgi"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/fr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "manage_static_pages" : "Gérer les pages statiques"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/it.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "manage_static_pages" : "Gestire le pagine statiche"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/sv.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "manage_static_pages" : "Hantera statiska sidor"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/i18n/ko.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "feed_already_exists" : "같은 게시물(URL)이 존재합니다."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/zh-CN.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "load_more" : "加载更多",
3 | "search" : "Search"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-settings/i18n/bg.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "title" : "Заглавие",
3 | "invites" : "Покани"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/cs.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "showTaglineBanner" : "Zobrazit claim webu"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/en.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "showTaglineBanner" : "Show Tagline Banner"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/fr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "showTaglineBanner" : "Afficher le slogan"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/sv.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "showTaglineBanner" : "Visa tagline banner"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/lib/client/templates/before_day.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/cs.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "what_an_awesome_app" : "Jaká skvělá aplikace!"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/en.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "what_an_awesome_app" : "What an awesome app!"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/es.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "what_an_awesome_app" : "¡Que App tan genial!"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/es.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "manage_static_pages" : "Administrar páginas estáticas"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/i18n/sl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "manage_static_pages" : "Upravljajte statične strani"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/de.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "load_more" : "Mehr Laden",
3 | "search" : "Suchen"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-settings/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "title" : "Başlık",
3 | "invites" : "Davetiyeler"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/es.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "showTaglineBanner" : "Mostrar Banner con Lema"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-email/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/it.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "what_an_awesome_app" : "Che applicazione stupenda!"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-getting-started/i18n/sv.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "what_an_awesome_app" : "Vilken fantastisk app!"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-lib/lib/client/jquery.exists.js:
--------------------------------------------------------------------------------
1 | $.fn.exists = function () {
2 | return this.length !== 0;
3 | }
--------------------------------------------------------------------------------
/packages/telescope-posts/lib/client/templates/after_post_item.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/packages/telescope-posts/lib/client/templates/before_post_item.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/et.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "telescope_has_been_updated" : "Teleskoop on uuenenud."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/sv.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "telescope_has_been_updated" : "Telescope har uppdaterats."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/tr.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "load_more" : "Daha Fazla yükle",
3 | "search" : "Search"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-settings/i18n/ro.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "title" : "Titlu",
3 | "invites" : "Invitații trimise"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/i18n/et.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "showTaglineBanner" : "Näita Märksõnade Bännerit"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-theme-hubble/lib/client/scss/modules/_banners.scss:
--------------------------------------------------------------------------------
1 | .banner.banner{
2 | border-radius: 3px;
3 | }
--------------------------------------------------------------------------------
/publish_packages.sh:
--------------------------------------------------------------------------------
1 | for d in packages/* ; do
2 | echo "$d"
3 | cd $d
4 | meteor publish
5 | cd ../../
6 | done
--------------------------------------------------------------------------------
/packages/custom/i18n/ko.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "customViewLink" : "커스텀 View 링크",
3 | "customAdminLink" : "커스텀 어드민 링크"
4 | }
--------------------------------------------------------------------------------
/packages/custom/lib/client/stylesheets/custom.scss:
--------------------------------------------------------------------------------
1 | .custom-hero-banner{
2 | text-align: center;
3 | color: purple;
4 | }
--------------------------------------------------------------------------------
/packages/screenings/assets/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/screenings/assets/bg.jpg
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/cs.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "telescope_has_been_updated" : "Aplikace byla aktualizována."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/en.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "telescope_has_been_updated" : "Telescope has been updated."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/es.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "telescope_has_been_updated" : "Telescope ha sido actualizado."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/it.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "telescope_has_been_updated" : "Telescope è stato aggiornato."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/pt-BR.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "telescope_has_been_updated" : "Telescope foi atualizado."
3 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/i18n/sl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "telescope_has_been_updated" : "Telescope je bil posodobljen"
3 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/ko.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "categories" : "카테고리",
3 | "add_and_remove_categories" : "카테고리 추가/삭제"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-update-prompt/README.md:
--------------------------------------------------------------------------------
1 | Telescope update prompt package, used internally. Also phones home with a few stats.
--------------------------------------------------------------------------------
/packages/screenings/assets/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/screenings/assets/favicon.ico
--------------------------------------------------------------------------------
/packages/telescope-messages/lib/modules.js:
--------------------------------------------------------------------------------
1 | Telescope.modules.add("contentTop", {
2 | template: "messages",
3 | order: 1
4 | });
--------------------------------------------------------------------------------
/packages/telescope-pages/lib/server/publications.js:
--------------------------------------------------------------------------------
1 | Meteor.publish('pages', function() {
2 | return Pages.find({});
3 | });
4 |
--------------------------------------------------------------------------------
/packages/telescope-search/i18n/ko.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "load_more" : "더 보기",
3 | "search" : "검색",
4 | "search_logs" : "검색 로그"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-share/lib/share.js:
--------------------------------------------------------------------------------
1 | Telescope.modules.add("postComponents", {
2 | template: 'post_share',
3 | order: 25
4 | });
--------------------------------------------------------------------------------
/packages/custom/lib/client/custom_templates.js:
--------------------------------------------------------------------------------
1 | // Override "post_title" template
2 | Template.custom_post_title.replaces("post_title");
--------------------------------------------------------------------------------
/packages/custom/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/screenings/assets/screenings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/screenings/assets/screenings.png
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/cs.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "kadiraAppId" : "Kadira App ID",
3 | "kadiraAppSecret" : "Kadira App Secret"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/en.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "kadiraAppId" : "Kadira App ID",
3 | "kadiraAppSecret" : "Kadira App Secret"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/et.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "kadiraAppId" : "Kadira App ID",
3 | "kadiraAppSecret" : "Kadira App Secret"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/it.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "kadiraAppId" : "Kadira App ID",
3 | "kadiraAppSecret" : "Kadira App Secret"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/sl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "kadiraAppId" : "Kadira App ID",
3 | "kadiraAppSecret" : "Kadira App Skrivnost"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/i18n/sv.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "kadiraAppId" : "Kadira App-ID",
3 | "kadiraAppSecret" : "Kadira App-hemlighet"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-posts/i18n/th.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "postedAt" : "โพสต์เมื่อ",
3 | "createdAt" : "สร้างเมื่อ",
4 | "url" : "URL"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-settings/i18n/vi.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "title" : "Tiêu đề",
3 | "siteUrl" : "Địa chỉ URL",
4 | "invites" : "Mời"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-theme-base/lib/client/scss/specific/_loading.scss:
--------------------------------------------------------------------------------
1 | .loading-module{
2 | height: 70px;
3 | position: relative;
4 | }
--------------------------------------------------------------------------------
/packages/telescope-theme-base/lib/client/scss/specific/_menus.scss:
--------------------------------------------------------------------------------
1 | .menu-dropdown{
2 | .menu-items{
3 | color: #333;
4 | }
5 | }
--------------------------------------------------------------------------------
/packages/screenings/assets/screeningsb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/screenings/assets/screeningsb.png
--------------------------------------------------------------------------------
/packages/screenings/assets/screeningsc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/screenings/assets/screeningsc.png
--------------------------------------------------------------------------------
/packages/screenings/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-api/TESTS.md:
--------------------------------------------------------------------------------
1 | - Test that `/api/` returns the 20 latest approved posts.
2 | - Test that `/api/:limit` returns `:limit` items.
--------------------------------------------------------------------------------
/packages/telescope-comments/i18n/da.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "add_comment" : "Tilføj kommentar",
3 | "link" : "link",
4 | "reply" : "Svar"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/i18n/pl.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "categories" : "Kategorie",
3 | "add_and_remove_categories" : "Dodaj/Usuń kategorie."
4 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-users/lib/client/templates/profile/user_profile_bio.html:
--------------------------------------------------------------------------------
1 |
2 | {{{this}}}
3 |
--------------------------------------------------------------------------------
/packages/custom/lib/client/templates/hello.html:
--------------------------------------------------------------------------------
1 |
2 | Hello {{name}}!
3 |
--------------------------------------------------------------------------------
/packages/telescope-core/public/img/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/telescope-core/public/img/favicon.ico
--------------------------------------------------------------------------------
/packages/telescope-daily/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-embedly/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-invites/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-kadira/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-pages/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-releases/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-search/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-settings/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-singleday/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-tags/lib/client/templates/posts_category.html:
--------------------------------------------------------------------------------
1 |
2 | {{> posts_list_controller}}
3 |
--------------------------------------------------------------------------------
/packages/telescope-users/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-daily/i18n/ko.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "daily" : "데일리",
3 | "day_by_day_view" : "매일 가장 인기있는 게시물.",
4 | "load_next_days" : "다음날 보기"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/es.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "you_ve_just_been_invited" : "Has sido invitado.",
3 | "start_posting" : "¡Empezar a publicar!"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-email/i18n/et.i18n.json:
--------------------------------------------------------------------------------
1 | {
2 | "you_ve_just_been_invited" : "Sa oled kutsutud.",
3 | "start_posting" : "Alusta postitamist!"
4 | }
--------------------------------------------------------------------------------
/packages/telescope-newsletter/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-notifications/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-post-by-feed/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-tagline-banner/package-tap.i18n:
--------------------------------------------------------------------------------
1 | {
2 | "translation_function_name": "__",
3 | "helper_name": "_",
4 | "namespace": "project"
5 | }
--------------------------------------------------------------------------------
/packages/telescope-users/lib/avatars.js:
--------------------------------------------------------------------------------
1 | Avatar.setOptions({
2 | fallbackType: 'initials',
3 | emailHashProperty: 'telescope.emailHash'
4 | });
5 |
--------------------------------------------------------------------------------
/packages/screenings/lib/client/templates/placeholder.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/packages/screenings/lib/client/templates/tagline.html:
--------------------------------------------------------------------------------
1 |
2 | Discover the best design videos
3 |
--------------------------------------------------------------------------------
/packages/telescope-core/lib/client/main.html:
--------------------------------------------------------------------------------
1 |
{{_ "you_ve_been_signed_out"}}
4 |{{unsubscribed}}
4 |{{_ "you_are_already_logged_in"}}
4 |{{_ "were_sorry_whatever_you_were_looking_for_isnt_here"}}
5 |3 | {{_ "your_post"}} 4 | {{postTitle}} 5 | {{_ "has_been_approved"}} 6 |
7 | 8 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/user_edit.html: -------------------------------------------------------------------------------- 1 | 2 | {{#with user}} 3 | {{#if canEdit this}} 4 | {{> modules zone="profileEdit" moduleData=this}} 5 | {{else}} 6 | {{> no_rights}} 7 | {{/if}} 8 | {{/with}} 9 | 10 | -------------------------------------------------------------------------------- /packages/screenings/lib/client/templates/views_menu_item.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/no_rights.html: -------------------------------------------------------------------------------- 1 | 2 |3 | {{authorName}} 4 | {{_ "left_a_new_comment_on"}} 5 | {{postTitle}} 6 |
7 | 8 | -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "Un feed con lo stesso URL esiste già.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Devi accedere ed essere un amministratore per aggiungere un nuovo feed.", 4 | "import_new_posts_from_feeds" : "Importa nuovi post dai feed." 5 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "Pregled objav z istim URL že obstaja.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Morate se prijaviti in biti admin, da dodate nov pregled objav.", 4 | "import_new_posts_from_feeds" : "Uvozi nove objave iz pregleda objav." 5 | } -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_author.js: -------------------------------------------------------------------------------- 1 | Template.post_author.helpers({ 2 | displayName: function () { 3 | var user = Meteor.users.findOne(this.userId); 4 | if (user) { 5 | return Users.getDisplayName(user); 6 | } else { 7 | return this.author; 8 | } 9 | } 10 | }); -------------------------------------------------------------------------------- /packages/telescope-theme-base/lib/client/scss/specific/_errors.scss: -------------------------------------------------------------------------------- 1 | .error, .at-error{ 2 | background: $red; 3 | @extend .grid-block; 4 | margin-bottom:$grid-margin; 5 | text-align:center; 6 | color:white; 7 | padding: 20px; 8 | a{ 9 | &:link, &:hover{ 10 | color: white; 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/client/templates/notification_new_reply.html: -------------------------------------------------------------------------------- 1 | 2 |3 | {{authorName}} 4 | {{_ "has_replied_to_your_comment_on"}} 5 | {{postTitle}} 6 |
7 | 8 | -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "Um feed com a mesma URL já existe.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Você precisa se logar e ser um admin para adicionar um novo feed.", 4 | "import_new_posts_from_feeds" : "Importar novas postagens dos feeds." 5 | } -------------------------------------------------------------------------------- /packages/telescope-search/lib/client/templates/search.html: -------------------------------------------------------------------------------- 1 | 2 | {{#if canSearch}} 3 |{{_ "the_site_is_currently_invite_only_but_we_will_let_you_know_as_soon_as_a_spot_opens_up"}}
6 |{{_ "sorry_this_is_a_private_site_please_sign_up_first"}}
4 | {{landingPageText}} 5 | 8 |
{{_ "comments"}}
4 | {{> commentsListController arguments}} 5 |