mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Co-authored-by: Jeremy Bowman <jmbowman@alum.mit.edu> Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
22 lines
646 B
Django/Jinja
22 lines
646 B
Django/Jinja
# EVEN MORE DESCRIPTIVE TITLE.
|
|
# Copyright (C) {{ copyright }}
|
|
# This file is distributed under the same license as the {{ project }} package.
|
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
#
|
|
#, fuzzy
|
|
msgid ""
|
|
msgstr ""
|
|
"Project-Id-Version: {{ project|e }} {{ version|e }}\n"
|
|
"Report-Msgid-Bugs-To: \n"
|
|
"POT-Creation-Date: {{ ctime|e }}\n"
|
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
"Last-Translator: {{ last_translator|e }}\n"
|
|
"Language-Team: {{ language_team|e }}\n"
|
|
"MIME-Version: 1.0\n"
|
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
"Content-Transfer-Encoding: 8bit\n"
|
|
{% for message in messages %}
|
|
msgid "{{ message.text|e }}"
|
|
msgstr ""
|
|
{% endfor -%}
|