X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;ds=sidebyside;f=properties%2Fev-properties-view.c;h=e9cdfc401512b6f87cab1aecf59f382556578b01;hb=df408ff0086984d7c067ea31f298c0aad002b2e6;hp=0b73100212b659dd6b9d0f522b1108c1a89458f1;hpb=42571afbe2aec7d71798be11a8febb2768fc130c;p=evince.git diff --git a/properties/ev-properties-view.c b/properties/ev-properties-view.c index 0b731002..e9cdfc40 100644 --- a/properties/ev-properties-view.c +++ b/properties/ev-properties-view.c @@ -15,7 +15,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "config.h" @@ -281,11 +281,11 @@ ev_regular_paper_size (const EvDocumentInfo *info) units = get_default_user_units (); if (units == GTK_UNIT_MM) { - exact_size = g_strdup_printf(_("%.0f x %.0f mm"), + exact_size = g_strdup_printf(_("%.0f × %.0f mm"), info->paper_width, info->paper_height); } else { - exact_size = g_strdup_printf (_("%.2f x %.2f inch"), + exact_size = g_strdup_printf (_("%.2f × %.2f inch"), info->paper_width / 25.4f, info->paper_height / 25.4f); }